1.订单部分页面 2.会议部分页面
This commit is contained in:
471
pages/sys/workbench/meet/createMeet.vue
Normal file
471
pages/sys/workbench/meet/createMeet.vue
Normal file
@@ -0,0 +1,471 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<!-- 日期导航 -->
|
||||
<view class="date-nav">
|
||||
<scroll-view scroll-x class="date-scroll">
|
||||
<view class="date-item" :class="currentDate === '07-07' ? 'active' : ''" data-date="07-07">今天 07-07 周六
|
||||
</view>
|
||||
<view class="date-item" :class="currentDate === '07-07' ? 'active' : ''" data-date="07-07">
|
||||
<text class="highlight">07-07</text> 周一
|
||||
</view>
|
||||
<view class="date-item" data-date="07-08">07-08 周二</view>
|
||||
<view class="date-item" data-date="07-09">07-09 周三</view>
|
||||
<view class="date-item" data-date="07-10">07-10 周四</view>
|
||||
<view class="date-item" data-date="07-11">07-11 周五</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 选择时段 -->
|
||||
<text class="label">选择时段</text>
|
||||
<view class="time-tabs">
|
||||
<view class="time-tab" :class="timeTab === 'morning' ? '' : 'inactive'">
|
||||
<image src="/static/ic_meet_02.png" class="time-img1" />上午
|
||||
</view>
|
||||
<view class="time-tab" :class="timeTab === 'afternoon' ? 'active' : ''">
|
||||
<image src="/static/ic_meet_03.png" class="time-img2" />下午
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 会议人数 -->
|
||||
<text class="label">会议人数</text>
|
||||
<input type="number" v-model="formData.peopleNum" placeholder="请输入会议人数" class="meet-num" />
|
||||
|
||||
|
||||
<!-- 选择会议室 -->
|
||||
<text class="label">选择会议室</text>
|
||||
<picker :value="meetingRoomIndex" :range="meetingRooms">
|
||||
<view class="picker-content">
|
||||
<text>{{formData.meetingRoom || '请选择会议室'}}</text>
|
||||
<text v-if="formData.meetingRoom" class="room-info">{{meetingRooms[meetingRoomIndex]}}</text>
|
||||
</view>
|
||||
</picker>
|
||||
|
||||
|
||||
<!-- 会议主题 -->
|
||||
<text class="label">会议主题</text>
|
||||
<input type="text" v-model="formData.theme" placeholder="请输入会议名称" class="meet-input" />
|
||||
|
||||
|
||||
<!-- 会议时间 -->
|
||||
|
||||
<text class="label">会议时间</text>
|
||||
<input type="text" v-model="meetingTime" placeholder="请选择会议时间" class="meet-input" />
|
||||
|
||||
|
||||
<!-- 是否需要签到 -->
|
||||
<view class="sgin-in-row">
|
||||
<view class="label">是否需要签到</view>
|
||||
<view class="radio-label" @click="formData.checkIn = true">
|
||||
<view :class="['radio-custom', {checked: formData.checkIn === true}]" />
|
||||
<text>是</text>
|
||||
</view>
|
||||
<view class="radio-label" @click="formData.checkIn = false">
|
||||
<view :class="['radio-custom', {checked: formData.checkIn === false}]" />
|
||||
<text>否</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<text class="label">增值服务</text>
|
||||
<view class="meet-text">会议物品</view>
|
||||
|
||||
<view class="service-list">
|
||||
<view v-for="(data,index) in itemList">
|
||||
<view class="label">{{data.type}}</view>
|
||||
<view class="service-item" v-for="(item, index) in data.data" :key="index">
|
||||
<view class="service-info">
|
||||
<text>{{item.name}}</text>
|
||||
<text class="price">¥{{item.price}}/{{item.unit}}</text>
|
||||
</view>
|
||||
<view class="quantity-selector">
|
||||
<view class="minus" @tap="decreaseQuantity(index, 'tea')">-</view>
|
||||
<input type="number" v-model="item.quantity" disabled class="quantity-input" />
|
||||
<view class="plus" @tap="increaseQuantity(index, 'tea')">+</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="list-line" v-if="index<itemList.length-1"></view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 备注 -->
|
||||
<view class="remark-section">
|
||||
<textarea v-model="formData.remark" placeholder="若您还有其他需求,请在这里进行备注~"></textarea>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 底部按钮 -->
|
||||
<view class="footer">
|
||||
<view class="total-price">
|
||||
<text>¥</text>
|
||||
<text>{{totalPrice}}</text>
|
||||
</view>
|
||||
<button class="submit-btn" @tap="submitForm">发起会议并支付</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
currentDate: '07-07',
|
||||
timeTab: 'afternoon',
|
||||
formData: {
|
||||
peopleNum: '',
|
||||
meetingRoom: '',
|
||||
theme: '',
|
||||
checkIn: false,
|
||||
remark: ''
|
||||
},
|
||||
meetingRoomIndex: 1, // 默认选中第二个会议室(3栋2号)
|
||||
meetingRooms: [
|
||||
'3栋1号会议室 (3078) 可容纳20人 带电视',
|
||||
'3栋2号会议室 (5124) 可容纳50人 带投影仪',
|
||||
'1栋3号会议室 (1247) 可容纳100人'
|
||||
],
|
||||
meetingTime: '2025-07-07 14:00-18:00',
|
||||
itemList: [{
|
||||
type: '茶水',
|
||||
data: [{
|
||||
id: 1,
|
||||
name: '清茶',
|
||||
price: 5,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: '碧螺春',
|
||||
price: 8,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: '红茶',
|
||||
price: 10,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
}
|
||||
]
|
||||
}, {
|
||||
type: '会议物品',
|
||||
data: [{
|
||||
id: 4,
|
||||
name: '清茶',
|
||||
price: 5,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: '碧螺春',
|
||||
price: 8,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: '红茶',
|
||||
price: 10,
|
||||
unit: '杯',
|
||||
quantity: 5
|
||||
}
|
||||
]
|
||||
}],
|
||||
|
||||
// 其他物品列表...
|
||||
totalPrice: 256
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
increaseQuantity(index, category) {
|
||||
if (category === 'tea') {
|
||||
this.teaList[index].quantity++;
|
||||
this.calculateTotalPrice();
|
||||
}
|
||||
// 其他类别数量增加逻辑...
|
||||
},
|
||||
decreaseQuantity(index, category) {
|
||||
if (this.teaList[index].quantity > 1) {
|
||||
this.teaList[index].quantity--;
|
||||
this.calculateTotalPrice();
|
||||
}
|
||||
// 其他类别数量减少逻辑...
|
||||
},
|
||||
calculateTotalPrice() {
|
||||
let total = 0;
|
||||
// 计算茶水总价
|
||||
this.teaList.forEach(item => {
|
||||
total += item.price * item.quantity;
|
||||
});
|
||||
// 计算其他类别总价...
|
||||
this.totalPrice = total;
|
||||
},
|
||||
submitForm() {
|
||||
// 表单验证
|
||||
if (!this.formData.peopleNum || !this.formData.meetingRoom) {
|
||||
uni.showToast({
|
||||
title: '请完善必填信息',
|
||||
icon: 'none'
|
||||
});
|
||||
return;
|
||||
}
|
||||
// 提交表单逻辑(实际开发需对接API)
|
||||
uni.showLoading({
|
||||
title: '提交中...'
|
||||
});
|
||||
setTimeout(() => {
|
||||
uni.hideLoading();
|
||||
uni.showToast({
|
||||
title: '预约成功',
|
||||
success: () => {
|
||||
// 跳转支付页面或完成预约
|
||||
}
|
||||
});
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.container {
|
||||
padding-bottom: 120rpx;
|
||||
padding-left: 35rpx;
|
||||
padding-right: 35rpx;
|
||||
}
|
||||
|
||||
/* 日期导航 */
|
||||
.date-nav {
|
||||
padding: 20rpx 30rpx;
|
||||
background: #fff;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.date-scroll {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.date-item {
|
||||
display: inline-block;
|
||||
padding: 10rpx 20rpx;
|
||||
margin-right: 20rpx;
|
||||
border-radius: 8rpx;
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
|
||||
&.active {
|
||||
color: #4a90e2;
|
||||
background: #e8f4ff;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: #4a90e2;
|
||||
margin-right: 5rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 32rpx;
|
||||
color: #000000;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.time-tabs {
|
||||
flex: 1;
|
||||
flex-direction: row;
|
||||
display: flex;
|
||||
margin-top: 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
|
||||
.time-img1 {
|
||||
width: 41rpx;
|
||||
height: 29rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
|
||||
.time-img2 {
|
||||
width: 33rpx;
|
||||
height: 34rpx;
|
||||
margin-right: 17rpx;
|
||||
}
|
||||
|
||||
.time-tab {
|
||||
width: 152rpx;
|
||||
height: 60rpx;
|
||||
font-size: 28rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 10rpx;
|
||||
margin-right: 40rpx;
|
||||
|
||||
&.active {
|
||||
background: #2E93FF;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&.inactive {
|
||||
background: #EBF5FF;
|
||||
color: #808080;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.meet-num {
|
||||
background: #F7F7F7;
|
||||
width: 297rpx;
|
||||
height: 73rpx;
|
||||
font-size: 24rpx;
|
||||
align-items: center;
|
||||
padding-left: 18rpx;
|
||||
margin-top: 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.meet-input {
|
||||
background: #F7F7F7;
|
||||
width: 86vw;
|
||||
height: 73rpx;
|
||||
font-size: 24rpx;
|
||||
align-items: center;
|
||||
padding-left: 18rpx;
|
||||
margin-top: 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.meet-text {
|
||||
background: #F7F7F7;
|
||||
width: 86vw;
|
||||
height: 73rpx;
|
||||
font-size: 24rpx;
|
||||
align-items: center;
|
||||
padding-left: 18rpx;
|
||||
margin-top: 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.sgin-in-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 24rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.radio-label {
|
||||
font-size: 24rpx;
|
||||
color: #0B0B0B;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 30rpx;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.radio-custom {
|
||||
width: 22rpx;
|
||||
height: 22rpx;
|
||||
border-radius: 50%;
|
||||
border: 1rpx solid #007CFF;
|
||||
background: #fff;
|
||||
margin-right: 12rpx;
|
||||
box-sizing: border-box;
|
||||
transition: background 0.2s, border 0.2s;
|
||||
}
|
||||
|
||||
.radio-custom.checked {
|
||||
background: #007CFF;
|
||||
border: 1rpx solid #007CFF;
|
||||
}
|
||||
|
||||
.service-list {
|
||||
background: #F7F7F7;
|
||||
padding: 34rpx 20rpx 20rpx 34rpx;
|
||||
|
||||
.service-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
.service-info {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
|
||||
.price {
|
||||
color: #4a90e2;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.quantity-selector {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.minus,
|
||||
.plus {
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
text-align: center;
|
||||
border: 1rpx solid #eee;
|
||||
font-size: 36rpx;
|
||||
color: #333;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.quantity-input {
|
||||
width: 80rpx;
|
||||
height: 60rpx;
|
||||
text-align: center;
|
||||
margin: 0 10rpx;
|
||||
border-top: 1rpx solid #eee;
|
||||
border-bottom: 1rpx solid #eee;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-line{
|
||||
width: 80vw;
|
||||
margin: 26rpx auto 20rpx auto;
|
||||
background: #fff;
|
||||
height: 1rpx;
|
||||
}
|
||||
/* 底部按钮 */
|
||||
.footer {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 100rpx;
|
||||
background: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 30rpx;
|
||||
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
|
||||
|
||||
.total-price {
|
||||
font-size: 32rpx;
|
||||
color: #ff6b00;
|
||||
font-weight: bold;
|
||||
|
||||
text:first-child {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.submit-btn {
|
||||
flex: 1;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
margin-left: 30rpx;
|
||||
background: #4a90e2;
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
border-radius: 40rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
390
pages/sys/workbench/meet/meet.vue
Normal file
390
pages/sys/workbench/meet/meet.vue
Normal file
@@ -0,0 +1,390 @@
|
||||
<template>
|
||||
<view class="meet-container">
|
||||
<!-- tab栏 -->
|
||||
<view class="meet-tabs">
|
||||
<view v-for="(tab, idx) in tabs" :key="idx" :class="['meet-tab', {active: idx === activeTab}]"
|
||||
@click="changeTab(idx)">
|
||||
{{ tab }}
|
||||
<view v-if="idx === activeTab" class="tab-underline"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="empty-content" v-if="list.length ===0">
|
||||
<image src="/static/ic_meet_01.png" class="empty-img"></image>
|
||||
<view class="empty-txt">暂无预约</view>
|
||||
<button class="empty-btn" @click="createMeet">发起预约</button>
|
||||
</view>
|
||||
<!-- 列表区 -->
|
||||
<view v-else class="meet-list">
|
||||
<view v-for="(item, idx) in list" :key="idx" class="meet-card" @click="showVisitorDetail(item)">
|
||||
<view class="card-row">
|
||||
<view class="card-type">{{ item.visitorUnit }}</view>
|
||||
<view class="card-status" :class="getStatusColor(item.serveStatus)">
|
||||
{{ getStatusLabel(item.serveStatus) }}</view>
|
||||
</view>
|
||||
<view class="card-info">{{ item.visitorName }}
|
||||
<text class="card-phone">{{ item.visitorPhone }}</text>
|
||||
<text class="card-divider"></text>
|
||||
<text class="card-address">{{ item.visitorUnit }}</text>
|
||||
</view>
|
||||
<view class="card-time">{{ item.createTime }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
tabs: ['我发起的', '邀请我的'],
|
||||
activeTab: 0,
|
||||
tabData: [
|
||||
[],
|
||||
[]
|
||||
], // 每个tab的数据
|
||||
tabLoaded: [false, false], // 每个tab是否已加载
|
||||
loading: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
list() {
|
||||
return this.tabData[this.activeTab];
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.loadTabData(this.activeTab); // 初始化加载当前tab数据
|
||||
},
|
||||
methods: {
|
||||
goBack() {
|
||||
uni.navigateBack();
|
||||
},
|
||||
createMeet(){
|
||||
uni.navigateTo({
|
||||
url: '/pages/sys/workbench/meet/createMeet'
|
||||
});
|
||||
},
|
||||
async changeTab(idx) {
|
||||
this.activeTab = idx;
|
||||
if (!this.tabLoaded[idx]) {
|
||||
await this.loadTabData(idx);
|
||||
}
|
||||
},
|
||||
async loadTabData(idx) {
|
||||
this.loading = true;
|
||||
// 模拟接口请求,不同tab返回不同mock数据
|
||||
let params = {}
|
||||
if (idx === 0) {
|
||||
params = {
|
||||
}
|
||||
}
|
||||
|
||||
let data = [];
|
||||
|
||||
let res = await this.$u.api.getMeetings(params);
|
||||
if (res.code == '200') {
|
||||
data = res.rows
|
||||
}
|
||||
|
||||
this.$set(this.tabData, idx, data);
|
||||
this.$set(this.tabLoaded, idx, true);
|
||||
this.loading = false;
|
||||
},
|
||||
|
||||
getStatusLabel(status) {
|
||||
const statusMap = {
|
||||
0: '待确认',
|
||||
1: '已确认',
|
||||
2: '已取消',
|
||||
3: '已完成'
|
||||
};
|
||||
return statusMap[status] || '';
|
||||
},
|
||||
getStatusColor(status) {
|
||||
const statusMap = {
|
||||
0: '待确认',
|
||||
1: 'orange',
|
||||
2: '已取消',
|
||||
3: '已完成'
|
||||
};
|
||||
return statusMap[status] || '';
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.meet-container {
|
||||
height: 100vh;
|
||||
background: #f7f7f7;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.empty-content{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 168rpx;
|
||||
}
|
||||
.empty-img{
|
||||
width: 440rpx;
|
||||
height: 398rpx;
|
||||
}
|
||||
.empty-txt{
|
||||
color: #737373;
|
||||
font-size: 28rpx;
|
||||
margin-top: 64rpx;
|
||||
}
|
||||
|
||||
.empty-btn {
|
||||
width: 70vw;
|
||||
height: 80rpx;
|
||||
background: #0090FF;
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
border: none;
|
||||
border-radius: 40rpx;
|
||||
margin: 140rpx auto 0 auto;
|
||||
display: block;
|
||||
box-shadow: 0 18rpx 24rpx rgba(0, 0, 0, 0.18);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.meet-tabs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
background: #fff;
|
||||
height: 80rpx;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
flex-shrink: 0;
|
||||
/* 防止被压缩 */
|
||||
}
|
||||
|
||||
.meet-tab {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
color: #888;
|
||||
position: relative;
|
||||
font-weight: 500;
|
||||
padding: 0 0 10rpx 0;
|
||||
/* tab点击事件 */
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.meet-tab.active {
|
||||
color: #2186FF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tab-underline {
|
||||
width: 60rpx;
|
||||
height: 6rpx;
|
||||
background: #2186FF;
|
||||
border-radius: 3rpx;
|
||||
margin: 0 auto;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
|
||||
.meet-list {
|
||||
margin: 25rpx 0 0 0;
|
||||
padding: 0 35rpx;
|
||||
flex: 1;
|
||||
/* 占据所有剩余空间 */
|
||||
overflow-y: auto;
|
||||
/* 内容超出时,开启垂直滚动 */
|
||||
padding-bottom: 200rpx;
|
||||
/* 为底部按钮留出空间 */
|
||||
}
|
||||
|
||||
.meet-card {
|
||||
background: #fff;
|
||||
border-radius: 16rpx;
|
||||
margin-bottom: 24rpx;
|
||||
padding: 20rpx 40rpx 70rpx 12rpx;
|
||||
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
|
||||
.card-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.card-type {
|
||||
font-weight: 600;
|
||||
font-size: 26rpx;
|
||||
padding: 10rpx 45rpx 10rpx 12rpx;
|
||||
border-radius: 15rpx;
|
||||
color: #fff;
|
||||
background: linear-gradient(90deg, #007CFF 0%, #FFFFFF 100%);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.card-status {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.card-status.orange {
|
||||
color: #F3831F;
|
||||
}
|
||||
|
||||
.card-status.green {
|
||||
color: #07C78E;
|
||||
}
|
||||
|
||||
.card-status.gray {
|
||||
color: #8F8F8F;
|
||||
}
|
||||
|
||||
.card-info {
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
margin-bottom: 8rpx;
|
||||
margin-left: 8rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.card-phone {
|
||||
margin: 0 8rpx 0 8rpx;
|
||||
}
|
||||
|
||||
.card-divider {
|
||||
width: 1rpx;
|
||||
height: 40rpx;
|
||||
background: #DCDCDC;
|
||||
display: inline-block;
|
||||
margin: 0 12rpx;
|
||||
vertical-align: middle;
|
||||
content: '';
|
||||
}
|
||||
|
||||
.card-address {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.card-time {
|
||||
font-size: 28rpx;
|
||||
color: #626262;
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
|
||||
.meet-btn {
|
||||
width: 90vw;
|
||||
height: 80rpx;
|
||||
background: #0090FF;
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
border: none;
|
||||
border-radius: 40rpx;
|
||||
margin: 60rpx auto 0 auto;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.18);
|
||||
}
|
||||
|
||||
.meet-btn-fixed {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 100rpx;
|
||||
margin: 0 auto;
|
||||
width: 90vw;
|
||||
height: 80rpx;
|
||||
background: #0090FF;
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
border: none;
|
||||
border-radius: 40rpx;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.18);
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.meet-detail-mask {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 9999;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.meet-detail-dialog {
|
||||
width: 80vw;
|
||||
background: #fff;
|
||||
border-radius: 36rpx;
|
||||
box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.12);
|
||||
padding: 48rpx 36rpx 36rpx 36rpx;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.meet-detail-title-row {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
margin-bottom: 52rpx;
|
||||
}
|
||||
|
||||
.meet-detail-title {
|
||||
font-size: 36rpx;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.meet-detail-close {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 22rpx;
|
||||
height: 22rpx;
|
||||
}
|
||||
|
||||
.meet-detail-info {
|
||||
width: 100%;
|
||||
font-size: 28rpx;
|
||||
color: #222;
|
||||
margin-bottom: 80rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 28rpx;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.meet-detail-status-img {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: -40rpx;
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
z-index: 1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.meet-detail-btn {
|
||||
width: 320rpx;
|
||||
height: 80rpx;
|
||||
background: linear-gradient(90deg, #0090FF 0%, #2E9FFF 100%);
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
border: none;
|
||||
border-radius: 40rpx;
|
||||
margin-bottom: 30rpx;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.18);
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user