5.31重庆bug部分修改

This commit is contained in:
FrancisHu 2024-05-31 15:47:02 +08:00
parent 6ef31781c1
commit ed9287c9be
7 changed files with 308 additions and 63 deletions

View File

@ -10,8 +10,8 @@ class HttpConfig {
// baseUrl = "http://172.20.10.3:8080" // baseUrl = "http://172.20.10.3:8080"
// baseUrl = "http://10.40.92.9:8080" // baseUrl = "http://10.40.92.9:8080"
// baseUrl = "http://10.40.92.52:28080" // baseUrl = "http://10.40.92.52:28080"
baseUrl = "http://10.40.92.141:28080" baseUrl = "http://10.40.92.78:28080"
// baseUrl = "https://z.csgmall.com.cn/gl" // baseUrl = "https://z.csgmall.com.cn/gl"
// #endif // #endif
// 基地址 // 基地址
/* authPath = `${this.baseUrl}/dev-api/auth` /* authPath = `${this.baseUrl}/dev-api/auth`

View File

@ -84,6 +84,12 @@
> >
退料核查中 退料核查中
</h4> </h4>
<h4
v-show="fetch.taskStatus == '101'"
style="border: 1px solid #EE603D; color: #EE603D;"
>
退料审核驳回
</h4>
<h4 <h4
v-show="fetch.taskStatus == '40'" v-show="fetch.taskStatus == '40'"
style="border: 1px solid #27D870; color: #27D870;" style="border: 1px solid #27D870; color: #27D870;"

View File

@ -474,11 +474,13 @@ import { basePath } from '../../public'
title: '请填写驳回原因!' title: '请填写驳回原因!'
}) })
} else { } else {
if (that.modalList.taskStatus == 31) { console.log(that.modalList);
/* if (that.modalList.taskStatus == 31) {
that.examList.leaseApplyInfoList[0].deptAuditRemark = that.rejectReason that.examList.leaseApplyInfoList[0].deptAuditRemark = that.rejectReason
} else if (that.modalList.taskStatus == 32) { } else if (that.modalList.taskStatus == 32) {
that.examList.leaseApplyInfoList[0].directAuditRemark = that.rejectReason that.examList.leaseApplyInfoList[0].directAuditRemark = that.rejectReason
} } */
that.examList.leaseApplyInfoList[0].companyAuditRemark = that.rejectReason
console.log(that.examList); console.log(that.examList);
that.rejectSubmit(that.examList) that.rejectSubmit(that.examList)
} }
@ -558,7 +560,7 @@ import { basePath } from '../../public'
}, },
rejectSubmit (list) { rejectSubmit (list) {
let that = this let that = this
that.$api.fetchExam.rejectExam(list).then(res => { that.$api.fetchExam.rejectExamCq(list).then(res => {
console.log(res); console.log(res);
if (res.data.code == 200) { if (res.data.code == 200) {
that.closePopup() that.closePopup()
@ -599,7 +601,7 @@ import { basePath } from '../../public'
title: '未查询到相关数据!' title: '未查询到相关数据!'
}) })
} else { } else {
that.fetchMaterialList = res.data.data that.fetchMaterialList = res.data.data.rows
that.showLoading = false that.showLoading = false
console.log(that.fetchMaterialList); console.log(that.fetchMaterialList);
} }

View File

@ -321,13 +321,20 @@
// //
that.$api.testExam.testExamList().then(res => { that.$api.testExam.testExamList().then(res => {
console.log(res); console.log(res);
if (res.data.total != 0) { if (res.data.code == 200) {
for (let i = 0; i < res.data.rows.length; i++) { /* for (let i = 0; i < res.data.data.length; i++) {
if (res.data.rows[i].taskStatus == 46) { if (res.data.data[i].taskStatus == 46) {
res.data.rows[i].checked = false res.data.data[i].checked = false
} }
} */
/* res.data.data.rows.forEach(item => {
if (item.taskStatus == 46) item.checked = false
}) */
for (let item of res.data.data.rows) {
if (item.taskStatus == 46) item.checked = false
} }
that.fetchMaterialList = res.data.rows that.fetchMaterialList = res.data.data.rows
console.log(that.fetchMaterialList);
} else { } else {
uni.showToast({ uni.showToast({
icon: 'none', icon: 'none',

View File

@ -103,6 +103,27 @@
</view> </view>
</view> </view>
</uni-popup> </uni-popup>
<uni-popup
ref="popup1"
type="center"
:mask-click="false"
>
<view class="popup1">
<view class="pop-top">
<h4>驳回原因</h4>
<uni-icons
style="color: #AAAAAA; font-weight: bold;"
type="closeempty"
@click="closePopup1"
>
</uni-icons>
</view>
<view class="select-area">
<uni-easyinput v-model="rejectReason" maxlength="50" placeholder="请填写驳回原因"></uni-easyinput>
<view class="btn" @click="confirmReject">驳回</view>
</view>
</view>
</uni-popup>
</view> </view>
</template> </template>
@ -120,7 +141,8 @@
taskStatus: '', taskStatus: '',
status: '', status: '',
ableNum: '', ableNum: '',
subObj: {} subObj: {},
rejectReason: ''
} }
}, },
methods: { methods: {
@ -232,6 +254,9 @@
closePopup () { closePopup () {
this.$refs.popup.close() this.$refs.popup.close()
}, },
closePopup1 () {
this.$refs.popup1.close()
},
modalConfirm () { modalConfirm () {
let that = this let that = this
that.taskIdList.push(that.taskId) that.taskIdList.push(that.taskId)
@ -251,8 +276,19 @@
taskIdList: that.taskIdList, taskIdList: that.taskIdList,
auditDetailList: that.auditDetailList auditDetailList: that.auditDetailList
} }
console.log(that.subObj); that.$refs.popup1.open()
that.subInStore(that.subObj) // that.subInStore(that.subObj)
},
confirmReject () {
let that = this
if (that.rejectReason == '') {
uni.showToast({
icon: 'none',
title: '请填写驳回原因!'
})
} else {
console.log(that.subObj);
}
} }
}, },
onLoad(params) { onLoad(params) {
@ -441,4 +477,39 @@
border-radius: 20rpx; border-radius: 20rpx;
} }
.popup1{
width: 80vw;
height: 20vh;
background-color: #fff;
border-radius: 15rpx;
overflow: hidden;
background: linear-gradient(#D9E7FE, #fff, #fff, #fff);
.pop-top{
width: 100%;
height: 5vh;
box-sizing: border-box;
padding: 0 25rpx;
display: flex;
justify-content: space-between;
align-items: center;
}
.select-area{
width: 85%;
margin: 40rpx auto;
.btn{
width: 30%;
box-sizing: border-box;
padding: 10rpx 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #3788FF;
color: #fff;
font-size: 14px;
border-radius: 15rpx;
margin: 20rpx auto;
}
}
}
</style> </style>

File diff suppressed because one or more lines are too long

View File

@ -11581,11 +11581,30 @@ var render = function () {
expression: "_$g((\"37-\"+$30),'v-show')", expression: "_$g((\"37-\"+$30),'v-show')",
}, },
], ],
staticStyle: {
border: "1px solid #EE603D",
color: "#EE603D",
},
attrs: { _i: "37-" + $30 },
},
[_vm._v("退料审核驳回")]
),
_c(
"h4",
{
directives: [
{
name: "show",
rawName: "v-show",
value: _vm._$g("38-" + $30, "v-show"),
expression: "_$g((\"38-\"+$30),'v-show')",
},
],
staticStyle: { staticStyle: {
border: "1px solid #27D870", border: "1px solid #27D870",
color: "#27D870", color: "#27D870",
}, },
attrs: { _i: "37-" + $30 }, attrs: { _i: "38-" + $30 },
}, },
[_vm._v("退料完成")] [_vm._v("退料完成")]
), ),
@ -11598,20 +11617,20 @@ var render = function () {
}), }),
_c( _c(
"uni-popup", "uni-popup",
{ ref: "popup", attrs: { _i: 38 } }, { ref: "popup", attrs: { _i: 39 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(39, "sc"), attrs: { _i: 39 } }, { staticClass: _vm._$g(40, "sc"), attrs: { _i: 40 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(40, "sc"), attrs: { _i: 40 } }, { staticClass: _vm._$g(41, "sc"), attrs: { _i: 41 } },
[ [
_c("h4", { attrs: { _i: 41 } }, [_vm._v("审批")]), _c("h4", { attrs: { _i: 42 } }, [_vm._v("审批")]),
_c("uni-icons", { _c("uni-icons", {
staticStyle: { color: "#AAAAAA", "font-weight": "bold" }, staticStyle: { color: "#AAAAAA", "font-weight": "bold" },
attrs: { _i: 42 }, attrs: { _i: 43 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
@ -11630,18 +11649,18 @@ var render = function () {
"font-weight": "normal", "font-weight": "normal",
"text-align": "center", "text-align": "center",
}, },
attrs: { _i: 43 }, attrs: { _i: 44 },
}, },
[_vm._v("是否通过审批?")] [_vm._v("是否通过审批?")]
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(44, "sc"), attrs: { _i: 44 } }, { staticClass: _vm._$g(45, "sc"), attrs: { _i: 45 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ {
attrs: { _i: 45 }, attrs: { _i: 46 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
@ -11653,7 +11672,7 @@ var render = function () {
_c( _c(
"uni-view", "uni-view",
{ {
attrs: { _i: 46 }, attrs: { _i: 47 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
@ -11673,20 +11692,20 @@ var render = function () {
), ),
_c( _c(
"uni-popup", "uni-popup",
{ ref: "popup1", attrs: { _i: 47 } }, { ref: "popup1", attrs: { _i: 48 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(48, "sc"), attrs: { _i: 48 } }, { staticClass: _vm._$g(49, "sc"), attrs: { _i: 49 } },
[ [
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(49, "sc"), attrs: { _i: 49 } }, { staticClass: _vm._$g(50, "sc"), attrs: { _i: 50 } },
[ [
_c("h4", { attrs: { _i: 50 } }, [_vm._v("驳回原因")]), _c("h4", { attrs: { _i: 51 } }, [_vm._v("驳回原因")]),
_c("uni-icons", { _c("uni-icons", {
staticStyle: { color: "#AAAAAA", "font-weight": "bold" }, staticStyle: { color: "#AAAAAA", "font-weight": "bold" },
attrs: { _i: 51 }, attrs: { _i: 52 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
@ -11698,12 +11717,12 @@ var render = function () {
), ),
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(52, "sc"), attrs: { _i: 52 } }, { staticClass: _vm._$g(53, "sc"), attrs: { _i: 53 } },
[ [
_c("uni-easyinput", { _c("uni-easyinput", {
attrs: { _i: 53 }, attrs: { _i: 54 },
model: { model: {
value: _vm._$g(53, "v-model"), value: _vm._$g(54, "v-model"),
callback: function () {}, callback: function () {},
expression: "rejectReason", expression: "rejectReason",
}, },
@ -11711,8 +11730,8 @@ var render = function () {
_c( _c(
"uni-view", "uni-view",
{ {
staticClass: _vm._$g(54, "sc"), staticClass: _vm._$g(55, "sc"),
attrs: { _i: 54 }, attrs: { _i: 55 },
on: { on: {
click: function ($event) { click: function ($event) {
return _vm.$handleViewEvent($event) return _vm.$handleViewEvent($event)
@ -24800,6 +24819,9 @@ try {
uniIcons: uniIcons:
__webpack_require__(/*! @/uni_modules/uni-icons/components/uni-icons/uni-icons.vue */ 47) __webpack_require__(/*! @/uni_modules/uni-icons/components/uni-icons/uni-icons.vue */ 47)
.default, .default,
uniEasyinput:
__webpack_require__(/*! @/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue */ 90)
.default,
} }
} catch (e) { } catch (e) {
if ( if (
@ -25108,6 +25130,65 @@ var render = function () {
], ],
1 1
), ),
_c(
"uni-popup",
{ ref: "popup1", attrs: { _i: 43 } },
[
_c(
"uni-view",
{ staticClass: _vm._$g(44, "sc"), attrs: { _i: 44 } },
[
_c(
"uni-view",
{ staticClass: _vm._$g(45, "sc"), attrs: { _i: 45 } },
[
_c("h4", { attrs: { _i: 46 } }, [_vm._v("驳回原因")]),
_c("uni-icons", {
staticStyle: { color: "#AAAAAA", "font-weight": "bold" },
attrs: { _i: 47 },
on: {
click: function ($event) {
return _vm.$handleViewEvent($event)
},
},
}),
],
1
),
_c(
"uni-view",
{ staticClass: _vm._$g(48, "sc"), attrs: { _i: 48 } },
[
_c("uni-easyinput", {
attrs: { _i: 49 },
model: {
value: _vm._$g(49, "v-model"),
callback: function () {},
expression: "rejectReason",
},
}),
_c(
"uni-view",
{
staticClass: _vm._$g(50, "sc"),
attrs: { _i: 50 },
on: {
click: function ($event) {
return _vm.$handleViewEvent($event)
},
},
},
[_vm._v("驳回")]
),
],
1
),
],
1
),
],
1
),
], ],
2 2
) )
@ -25206,7 +25287,7 @@ if(false) {}
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 16); var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 16);
exports = ___CSS_LOADER_API_IMPORT___(false); exports = ___CSS_LOADER_API_IMPORT___(false);
// Module // Module
exports.push([module.i, "@charset \"UTF-8\";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\nbody {\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.single-fetch {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 20rpx 35rpx;\r\n display: flex;\r\n align-items: center;\r\n border-bottom: 1px solid #DDDDDD;\n}\n.single-fetch .slots {\r\n display: flex;\r\n flex-direction: column;\r\n margin-left: 30rpx;\n}\n.single-fetch .slots uni-view {\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 25rpx;\n}\n.single-fetch .slots uni-view span {\r\n color: #A7A7A7;\r\n padding-right: 20rpx;\n}\n.single-fetch .slots uni-view h4 {\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .slots uni-view:last-child {\r\n margin-bottom: 0;\n}\n.btm-exam {\r\n position: fixed;\r\n left: 0;\r\n bottom: 0;\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 20rpx 40rpx;\r\n display: flex;\r\n justify-content: flex-end;\r\n border-top: 2px solid #F6F8FF;\n}\n.btm-exam .exam {\r\n box-sizing: border-box;\r\n padding: 10rpx 50rpx;\r\n border-radius: 30rpx;\r\n background-color: #3788FF;\r\n font-size: 14px;\r\n color: #fff;\n}\n.buy {\r\n display: flex;\r\n align-items: center;\r\n justify-content: space-between;\r\n position: fixed;\r\n left: 50%;\r\n bottom: 0;\r\n width: 95%;\r\n -webkit-transform: translate(-50%, 0);\r\n transform: translate(-50%, 0);\n}\n.buy .checked {\r\n display: flex;\r\n align-items: center;\n}\n.buy .checked uni-text {\r\n font-size: 25rpx;\r\n color: #000;\r\n padding: 0 12rpx;\n}\n.buy .total {\r\n display: flex;\r\n align-items: center;\r\n justify-content: space-between;\n}\n.buy .total .price {\r\n padding-right: 20rpx;\n}\n.buy .total .price uni-text {\r\n font-size: 27rpx;\r\n color: #C8C7CC;\r\n display: inline-block;\n}\n.buy .total .price uni-text:last-child {\r\n color: red;\r\n font-weight: bold;\n}\n.buy .total .bill uni-text {\r\n font-size: 25rpx;\r\n color: #fff;\r\n display: inline-block;\r\n background-color: red;\r\n line-height: 70rpx;\r\n width: 150rpx;\r\n text-align: center;\n}\n.popup {\r\n width: 80vw;\r\n height: 20vh;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n overflow: hidden;\r\n background: linear-gradient(#D9E7FE, #fff, #fff, #fff);\n}\n.popup > .pop-top {\r\n width: 100%;\r\n height: 5vh;\r\n box-sizing: border-box;\r\n padding: 0 25rpx;\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\n}\n.popup > .select-area {\r\n width: 85%;\r\n margin: 40rpx auto;\r\n display: flex;\r\n justify-content: space-around;\r\n align-items: center;\n}\n.popup > .select-area > uni-view {\r\n box-sizing: border-box;\r\n font-size: 30rpx;\r\n padding: 12rpx 24rpx;\r\n background-color: #3788FF;\r\n color: #fff;\r\n border-radius: 20rpx;\n}\r\n", ""]); exports.push([module.i, "@charset \"UTF-8\";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\nbody {\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.single-fetch {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 20rpx 35rpx;\r\n display: flex;\r\n align-items: center;\r\n border-bottom: 1px solid #DDDDDD;\n}\n.single-fetch .slots {\r\n display: flex;\r\n flex-direction: column;\r\n margin-left: 30rpx;\n}\n.single-fetch .slots uni-view {\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 25rpx;\n}\n.single-fetch .slots uni-view span {\r\n color: #A7A7A7;\r\n padding-right: 20rpx;\n}\n.single-fetch .slots uni-view h4 {\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .slots uni-view:last-child {\r\n margin-bottom: 0;\n}\n.btm-exam {\r\n position: fixed;\r\n left: 0;\r\n bottom: 0;\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 20rpx 40rpx;\r\n display: flex;\r\n justify-content: flex-end;\r\n border-top: 2px solid #F6F8FF;\n}\n.btm-exam .exam {\r\n box-sizing: border-box;\r\n padding: 10rpx 50rpx;\r\n border-radius: 30rpx;\r\n background-color: #3788FF;\r\n font-size: 14px;\r\n color: #fff;\n}\n.buy {\r\n display: flex;\r\n align-items: center;\r\n justify-content: space-between;\r\n position: fixed;\r\n left: 50%;\r\n bottom: 0;\r\n width: 95%;\r\n -webkit-transform: translate(-50%, 0);\r\n transform: translate(-50%, 0);\n}\n.buy .checked {\r\n display: flex;\r\n align-items: center;\n}\n.buy .checked uni-text {\r\n font-size: 25rpx;\r\n color: #000;\r\n padding: 0 12rpx;\n}\n.buy .total {\r\n display: flex;\r\n align-items: center;\r\n justify-content: space-between;\n}\n.buy .total .price {\r\n padding-right: 20rpx;\n}\n.buy .total .price uni-text {\r\n font-size: 27rpx;\r\n color: #C8C7CC;\r\n display: inline-block;\n}\n.buy .total .price uni-text:last-child {\r\n color: red;\r\n font-weight: bold;\n}\n.buy .total .bill uni-text {\r\n font-size: 25rpx;\r\n color: #fff;\r\n display: inline-block;\r\n background-color: red;\r\n line-height: 70rpx;\r\n width: 150rpx;\r\n text-align: center;\n}\n.popup {\r\n width: 80vw;\r\n height: 20vh;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n overflow: hidden;\r\n background: linear-gradient(#D9E7FE, #fff, #fff, #fff);\n}\n.popup > .pop-top {\r\n width: 100%;\r\n height: 5vh;\r\n box-sizing: border-box;\r\n padding: 0 25rpx;\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\n}\n.popup > .select-area {\r\n width: 85%;\r\n margin: 40rpx auto;\r\n display: flex;\r\n justify-content: space-around;\r\n align-items: center;\n}\n.popup > .select-area > uni-view {\r\n box-sizing: border-box;\r\n font-size: 30rpx;\r\n padding: 12rpx 24rpx;\r\n background-color: #3788FF;\r\n color: #fff;\r\n border-radius: 20rpx;\n}\n.popup1 {\r\n width: 80vw;\r\n height: 20vh;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n overflow: hidden;\r\n background: linear-gradient(#D9E7FE, #fff, #fff, #fff);\n}\n.popup1 .pop-top {\r\n width: 100%;\r\n height: 5vh;\r\n box-sizing: border-box;\r\n padding: 0 25rpx;\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\n}\n.popup1 .select-area {\r\n width: 85%;\r\n margin: 40rpx auto;\n}\n.popup1 .select-area .btn {\r\n width: 30%;\r\n box-sizing: border-box;\r\n padding: 10rpx 0;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #3788FF;\r\n color: #fff;\r\n font-size: 14px;\r\n border-radius: 15rpx;\r\n margin: 20rpx auto;\n}\r\n", ""]);
// Exports // Exports
module.exports = exports; module.exports = exports;