|
@@ -1,29 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
<view class="container">
|
|
<view class="container">
|
|
|
- <view class="top_bg" @click="permission = !permission"></view>
|
|
|
|
|
|
|
+ <view class="top_bg"></view>
|
|
|
|
|
|
|
|
- <!-- 状态统计区域 -->
|
|
|
|
|
- <view class="top_types" v-if="!permission">
|
|
|
|
|
- <view class="types_box">
|
|
|
|
|
- <view class="box_num">100</view>
|
|
|
|
|
- <view class="box_info">待接单</view>
|
|
|
|
|
- </view>
|
|
|
|
|
-
|
|
|
|
|
- <view class="types_box">
|
|
|
|
|
- <view class="box_num">10</view>
|
|
|
|
|
- <view class="box_info">维修中</view>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="types_box">
|
|
|
|
|
- <view class="box_num">50</view>
|
|
|
|
|
- <view class="box_info">已超时</view>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="types_box">
|
|
|
|
|
- <view class="box_num">60</view>
|
|
|
|
|
- <view class="box_info">待审核</view>
|
|
|
|
|
- </view>
|
|
|
|
|
- </view>
|
|
|
|
|
-
|
|
|
|
|
- <view class="top_types2" v-else>
|
|
|
|
|
|
|
+ <!-- 状态统计区域 后勤管理端 -->
|
|
|
|
|
+ <view class="top_types2" v-if="btns.includes('工单管理分段器')">
|
|
|
<view class="top">
|
|
<view class="top">
|
|
|
<uni-segmented-control :current="current" :values="items" @clickItem="onClickItem" styleType="text" activeColor="#6FB6B8"></uni-segmented-control>
|
|
<uni-segmented-control :current="current" :values="items" @clickItem="onClickItem" styleType="text" activeColor="#6FB6B8"></uni-segmented-control>
|
|
|
</view>
|
|
</view>
|
|
@@ -56,6 +36,36 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
+ <!-- 状态统计区域 维修师傅端 -->
|
|
|
|
|
+ <view class="top_types" v-else>
|
|
|
|
|
+ <view class="types_box">
|
|
|
|
|
+ <view class="box_num">100</view>
|
|
|
|
|
+ <view class="box_info">待接单</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="types_box">
|
|
|
|
|
+ <view class="box_num">10</view>
|
|
|
|
|
+ <view class="box_info">维修中</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="types_box">
|
|
|
|
|
+ <view class="box_num">50</view>
|
|
|
|
|
+ <view class="box_info">已超时</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="types_box">
|
|
|
|
|
+ <view class="box_num">60</view>
|
|
|
|
|
+ <view class="box_info">待审核</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="types_box" v-if="btns.includes('分段器按钮')">
|
|
|
|
|
+ <view class="box_num">50</view>
|
|
|
|
|
+ <view class="box_info">已完成</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="types_box" v-if="btns.includes('分段器按钮')">
|
|
|
|
|
+ <view class="box_num">60</view>
|
|
|
|
|
+ <view class="box_info">已关单</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
<!-- 订单列表区域 -->
|
|
<!-- 订单列表区域 -->
|
|
|
<view class="body">
|
|
<view class="body">
|
|
|
<!-- 每一个订单区域 -->
|
|
<!-- 每一个订单区域 -->
|
|
@@ -64,8 +74,8 @@
|
|
|
<view class="item_title">
|
|
<view class="item_title">
|
|
|
<img src="../../static/images/repairsImg/order.png" />
|
|
<img src="../../static/images/repairsImg/order.png" />
|
|
|
<view class="title_info">工单编号:{{ item.order }}</view>
|
|
<view class="title_info">工单编号:{{ item.order }}</view>
|
|
|
- <view class="title_type" v-if="item.overtime">超时未接</view>
|
|
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
<!-- 报修时间 -->
|
|
<!-- 报修时间 -->
|
|
|
<view class="item_time">
|
|
<view class="item_time">
|
|
|
<view class="time_msg">
|
|
<view class="time_msg">
|
|
@@ -85,6 +95,7 @@
|
|
|
<view class="item_box">
|
|
<view class="item_box">
|
|
|
<view class="box_key">报修姓名:</view>
|
|
<view class="box_key">报修姓名:</view>
|
|
|
<view class="box_value">{{ item.name }}</view>
|
|
<view class="box_value">{{ item.name }}</view>
|
|
|
|
|
+ <view class="box_type" v-if="item.overtime">超时未接</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 报修电话 -->
|
|
<!-- 报修电话 -->
|
|
@@ -155,16 +166,16 @@
|
|
|
<!-- 按钮区域 -->
|
|
<!-- 按钮区域 -->
|
|
|
<view class="item_btn">
|
|
<view class="item_btn">
|
|
|
<img v-if="item.type < 3" src="../../static/images/repairsImg/close.png" @click="handleClose" />
|
|
<img v-if="item.type < 3" src="../../static/images/repairsImg/close.png" @click="handleClose" />
|
|
|
- <img class="img" src="../../static/images/repairsImg/help.png" v-if="item.type === 1 && !permission" @click="handleHelp" />
|
|
|
|
|
- <view class="btn_box type" v-if="item.type < 3 && permission" @click="handleDelay">延时</view>
|
|
|
|
|
- <view class="btn_box type" v-if="item.type === 1" @click="handleOrderReceiving">接单</view>
|
|
|
|
|
- <view class="btn_box type2" v-if="item.type === 1 && !permission" @click="handleTransferOrder">转单</view>
|
|
|
|
|
- <view class="btn_box type2" v-if="item.type === 1 && permission" @click="handleSendOrder">派单</view>
|
|
|
|
|
- <view class="btn_box type" v-if="item.type === 2" @click="handleOffer">报价</view>
|
|
|
|
|
- <view class="btn_box type2" v-if="item.type === 2" @click="handleFinish">维修完成</view>
|
|
|
|
|
-
|
|
|
|
|
- <view class="btn_box type" v-if="item.type === 3 && permission" @click="handleAudit(item.status)">审核</view>
|
|
|
|
|
- <view class="btn_box type" v-if="item.type === 5">改价</view>
|
|
|
|
|
|
|
+ <img class="img" src="../../static/images/repairsImg/help.png" v-if="item.type === 1 && btns.includes('协作')" @click="handleHelp" />
|
|
|
|
|
+ <view class="btn_box type" v-if="item.type < 3 && btns.includes('延时')" @click="handleDelay">延时</view>
|
|
|
|
|
+ <view class="btn_box type" v-if="item.type === 1 && btns.includes('接单')" @click="handleOrderReceiving">接单</view>
|
|
|
|
|
+ <view class="btn_box type2" v-if="item.type === 1 && btns.includes('转单')" @click="handleTransferOrder">转单</view>
|
|
|
|
|
+ <view class="btn_box type2" v-if="item.type === 1 && btns.includes('派单')" @click="handleSendOrder">派单</view>
|
|
|
|
|
+ <view class="btn_box type" v-if="item.type === 2 && btns.includes('报价')" @click="handleOffer">报价</view>
|
|
|
|
|
+ <view class="btn_box type2" v-if="item.type === 2 && btns.includes('维修完成')" @click="handleFinish">维修完成</view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="btn_box type" v-if="item.type === 3 && btns.includes('审核')" @click="handleAudit(item.status)">审核</view>
|
|
|
|
|
+ <view class="btn_box type" v-if="item.type === 5" @click="handleChangeOffer">改价</view>
|
|
|
<view class="btn_box type2" v-if="item.type === 5" @click="handleLeaveWords">留言</view>
|
|
<view class="btn_box type2" v-if="item.type === 5" @click="handleLeaveWords">留言</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -235,7 +246,8 @@
|
|
|
export default {
|
|
export default {
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
- permission: true,
|
|
|
|
|
|
|
+ // 按钮权限
|
|
|
|
|
+ btns: [],
|
|
|
// 留言弹窗输入框绑定数据
|
|
// 留言弹窗输入框绑定数据
|
|
|
leaveWords: '',
|
|
leaveWords: '',
|
|
|
// 顶部分段器数组
|
|
// 顶部分段器数组
|
|
@@ -249,7 +261,92 @@ export default {
|
|
|
// type为 1 是 待接单,type为 2 是维修中,
|
|
// type为 1 是 待接单,type为 2 是维修中,
|
|
|
// type为 3 是 待审核,type为 4 是已完成,
|
|
// type为 3 是 待审核,type为 4 是已完成,
|
|
|
// type为 5 是 待确认,type为 6 是已关单,
|
|
// type为 5 是 待确认,type为 6 是已关单,
|
|
|
- dataList: [
|
|
|
|
|
|
|
+ dataList: [],
|
|
|
|
|
+ temList: [
|
|
|
|
|
+ {
|
|
|
|
|
+ id: 1,
|
|
|
|
|
+ order: '656262219626262',
|
|
|
|
|
+ overtime: true,
|
|
|
|
|
+ time: '2023.07.05 09:25:26',
|
|
|
|
|
+ type: 1,
|
|
|
|
|
+ name: '张三',
|
|
|
|
|
+ phone: '13659585689',
|
|
|
|
|
+ area: '行政楼',
|
|
|
|
|
+ address: '3楼309',
|
|
|
|
|
+ goods: '电脑',
|
|
|
|
|
+ description: '水龙头坏了',
|
|
|
|
|
+ img: [
|
|
|
|
|
+ 'https://img1.baidu.com/it/u=920310517,1559263161&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500',
|
|
|
|
|
+ 'https://13lz.cn/d/file/2021-06-12/f54cce5a0208c756c112407ec6ca1ac0.jpg',
|
|
|
|
|
+ 'https://inews.gtimg.com/newsapp_bt/0/12555654161/1000'
|
|
|
|
|
+ ]
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ id: 2,
|
|
|
|
|
+ order: '956262219626262',
|
|
|
|
|
+ overtime: false,
|
|
|
|
|
+ time: '2023.07.05 09:25:26',
|
|
|
|
|
+ type: 2,
|
|
|
|
|
+ name: '李四',
|
|
|
|
|
+ phone: '13659585689',
|
|
|
|
|
+ area: '行政楼',
|
|
|
|
|
+ address: '3楼309',
|
|
|
|
|
+ goods: '电脑',
|
|
|
|
|
+ description: '电脑坏了',
|
|
|
|
|
+ img: [
|
|
|
|
|
+ 'https://img1.baidu.com/it/u=920310517,1559263161&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500',
|
|
|
|
|
+ 'https://13lz.cn/d/file/2021-06-12/f54cce5a0208c756c112407ec6ca1ac0.jpg',
|
|
|
|
|
+ 'https://inews.gtimg.com/newsapp_bt/0/12555654161/1000'
|
|
|
|
|
+ ],
|
|
|
|
|
+ workerName: '老张',
|
|
|
|
|
+ workerPhone: '13659585689'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ id: 3,
|
|
|
|
|
+ order: '956262219626262',
|
|
|
|
|
+ overtime: false,
|
|
|
|
|
+ time: '2023.07.05 09:25:26',
|
|
|
|
|
+ type: 3,
|
|
|
|
|
+ name: '李四',
|
|
|
|
|
+ phone: '13659585689',
|
|
|
|
|
+ area: '行政楼',
|
|
|
|
|
+ address: '3楼309',
|
|
|
|
|
+ goods: '电脑',
|
|
|
|
|
+ description: '电脑坏了',
|
|
|
|
|
+ img: [
|
|
|
|
|
+ 'https://img1.baidu.com/it/u=920310517,1559263161&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500',
|
|
|
|
|
+ 'https://13lz.cn/d/file/2021-06-12/f54cce5a0208c756c112407ec6ca1ac0.jpg',
|
|
|
|
|
+ 'https://inews.gtimg.com/newsapp_bt/0/12555654161/1000'
|
|
|
|
|
+ ],
|
|
|
|
|
+ workerName: '老张',
|
|
|
|
|
+ workerPhone: '13659585689',
|
|
|
|
|
+ money: 50,
|
|
|
|
|
+ status: 1
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ id: 369,
|
|
|
|
|
+ order: '956262219626262',
|
|
|
|
|
+ overtime: false,
|
|
|
|
|
+ time: '2023.07.05 09:25:26',
|
|
|
|
|
+ type: 3,
|
|
|
|
|
+ name: '李四',
|
|
|
|
|
+ phone: '13659585689',
|
|
|
|
|
+ area: '行政楼',
|
|
|
|
|
+ address: '3楼309',
|
|
|
|
|
+ goods: '电脑',
|
|
|
|
|
+ description: '电脑坏了',
|
|
|
|
|
+ img: [
|
|
|
|
|
+ 'https://img1.baidu.com/it/u=920310517,1559263161&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500',
|
|
|
|
|
+ 'https://13lz.cn/d/file/2021-06-12/f54cce5a0208c756c112407ec6ca1ac0.jpg',
|
|
|
|
|
+ 'https://inews.gtimg.com/newsapp_bt/0/12555654161/1000'
|
|
|
|
|
+ ],
|
|
|
|
|
+ workerName: '老张',
|
|
|
|
|
+ workerPhone: '13659585689',
|
|
|
|
|
+ money: 50,
|
|
|
|
|
+ status: 2
|
|
|
|
|
+ }
|
|
|
|
|
+ ],
|
|
|
|
|
+ temList2: [
|
|
|
{
|
|
{
|
|
|
id: 1,
|
|
id: 1,
|
|
|
order: '656262219626262',
|
|
order: '656262219626262',
|
|
@@ -398,6 +495,17 @@ export default {
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ mounted() {
|
|
|
|
|
+ console.log('工单管理页面加载')
|
|
|
|
|
+ const repairsUserInfo = uni.getStorageSync('repairsUserInfo')
|
|
|
|
|
+ this.btns = repairsUserInfo.btns
|
|
|
|
|
+ console.log(this.btns)
|
|
|
|
|
+ if (this.btns.includes('工单管理分段器')) {
|
|
|
|
|
+ this.dataList = this.temList2
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.dataList = this.temList
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
// 留言弹窗确定按钮回调
|
|
// 留言弹窗确定按钮回调
|
|
|
handleLeaveWordsConfirm() {
|
|
handleLeaveWordsConfirm() {
|
|
@@ -423,7 +531,7 @@ export default {
|
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
|
uni.showToast({
|
|
uni.showToast({
|
|
|
title: '关单成功',
|
|
title: '关单成功',
|
|
|
- icon: 'none'
|
|
|
|
|
|
|
+ icon: 'success'
|
|
|
})
|
|
})
|
|
|
console.log(this.closeList[this.activeIndex])
|
|
console.log(this.closeList[this.activeIndex])
|
|
|
this.$refs.popup_close[0].close()
|
|
this.$refs.popup_close[0].close()
|
|
@@ -440,7 +548,7 @@ export default {
|
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
|
uni.showToast({
|
|
uni.showToast({
|
|
|
title: '接单成功',
|
|
title: '接单成功',
|
|
|
- icon: 'none'
|
|
|
|
|
|
|
+ icon: 'success'
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -461,6 +569,12 @@ export default {
|
|
|
url: '/pagesRepairs/offer/offer'
|
|
url: '/pagesRepairs/offer/offer'
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
|
|
+ // 改价按钮回调
|
|
|
|
|
+ handleChangeOffer() {
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: '/pagesRepairs/offer/offer?type=1'
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
// 维修完成按钮回调
|
|
// 维修完成按钮回调
|
|
|
handleFinish() {
|
|
handleFinish() {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
@@ -541,6 +655,7 @@ export default {
|
|
|
.container {
|
|
.container {
|
|
|
width: 100vw;
|
|
width: 100vw;
|
|
|
height: calc(100vh - 152rpx);
|
|
height: calc(100vh - 152rpx);
|
|
|
|
|
+ font-size: 32rpx;
|
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
.top_bg {
|
|
.top_bg {
|
|
@@ -550,17 +665,18 @@ export default {
|
|
|
|
|
|
|
|
.top_types {
|
|
.top_types {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
justify-content: space-evenly;
|
|
justify-content: space-evenly;
|
|
|
margin: auto;
|
|
margin: auto;
|
|
|
margin-top: -100rpx;
|
|
margin-top: -100rpx;
|
|
|
width: 690rpx;
|
|
width: 690rpx;
|
|
|
- height: 188rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
border-radius: 10rpx;
|
|
|
box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
|
|
box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
|
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
.types_box {
|
|
.types_box {
|
|
|
- flex: 1;
|
|
|
|
|
|
|
+ width: 25%;
|
|
|
|
|
+ height: 188rpx;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
@@ -638,19 +754,9 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.title_info {
|
|
.title_info {
|
|
|
- margin: 0 21rpx 0 13rpx;
|
|
|
|
|
- font-size: 28rpx;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .title_type {
|
|
|
|
|
- width: 137rpx;
|
|
|
|
|
- height: 47rpx;
|
|
|
|
|
- line-height: 47rpx;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
- border-radius: 136rpx;
|
|
|
|
|
- color: #ff5733;
|
|
|
|
|
- font-size: 24rpx;
|
|
|
|
|
- border: 1rpx solid #ff5733;
|
|
|
|
|
|
|
+ margin-left: 16rpx;
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
|
|
+ font-size: 32rpx;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -662,7 +768,7 @@ export default {
|
|
|
height: 79rpx;
|
|
height: 79rpx;
|
|
|
|
|
|
|
|
.time_msg {
|
|
.time_msg {
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
color: #808080;
|
|
color: #808080;
|
|
|
|
|
|
|
|
text {
|
|
text {
|
|
@@ -693,7 +799,7 @@ export default {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
padding: 0 30rpx;
|
|
padding: 0 30rpx;
|
|
|
height: 60rpx;
|
|
height: 60rpx;
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
|
|
|
|
|
.box_key {
|
|
.box_key {
|
|
|
color: #808080;
|
|
color: #808080;
|
|
@@ -703,13 +809,25 @@ export default {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|
|
|
|
img {
|
|
img {
|
|
|
- margin-top: 5rpx;
|
|
|
|
|
margin-left: 10rpx;
|
|
margin-left: 10rpx;
|
|
|
- width: 28rpx;
|
|
|
|
|
- height: 28rpx;
|
|
|
|
|
|
|
+ width: 45rpx;
|
|
|
|
|
+ height: 45rpx;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ .box_type {
|
|
|
|
|
+ margin-left: auto;
|
|
|
|
|
+ width: 137rpx;
|
|
|
|
|
+ height: 47rpx;
|
|
|
|
|
+ line-height: 47rpx;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ border-radius: 136rpx;
|
|
|
|
|
+ color: #ff5733;
|
|
|
|
|
+ // font-size: 24rpx;
|
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
|
+ border: 1rpx solid #ff5733;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
.box_value2 {
|
|
.box_value2 {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
|
|
|
|
@@ -732,7 +850,7 @@ export default {
|
|
|
padding: 0 30rpx;
|
|
padding: 0 30rpx;
|
|
|
height: 120rpx;
|
|
height: 120rpx;
|
|
|
color: #808080;
|
|
color: #808080;
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
|
|
|
|
|
.img_key {
|
|
.img_key {
|
|
|
}
|
|
}
|
|
@@ -777,7 +895,7 @@ export default {
|
|
|
margin-bottom: 40rpx;
|
|
margin-bottom: 40rpx;
|
|
|
width: 174rpx;
|
|
width: 174rpx;
|
|
|
height: 68rpx;
|
|
height: 68rpx;
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
border-radius: 11rpx;
|
|
border-radius: 11rpx;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -869,7 +987,7 @@ export default {
|
|
|
padding: 20rpx;
|
|
padding: 20rpx;
|
|
|
width: 610rpx;
|
|
width: 610rpx;
|
|
|
height: 312rpx;
|
|
height: 312rpx;
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
border-radius: 14rpx;
|
|
border-radius: 14rpx;
|
|
|
border: 1rpx solid #e6e6e6;
|
|
border: 1rpx solid #e6e6e6;
|
|
|
}
|
|
}
|
|
@@ -933,7 +1051,7 @@ export default {
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
padding-left: 42rpx;
|
|
padding-left: 42rpx;
|
|
|
height: 80rpx;
|
|
height: 80rpx;
|
|
|
- font-size: 28rpx;
|
|
|
|
|
|
|
+ // font-size: 28rpx;
|
|
|
color: #808080;
|
|
color: #808080;
|
|
|
|
|
|
|
|
text {
|
|
text {
|