4.22重庆修改提交
This commit is contained in:
parent
c2136104bb
commit
c8890163c9
14
apis/http.js
14
apis/http.js
|
|
@ -4,23 +4,23 @@ class HttpConfig {
|
|||
// #endif
|
||||
// #ifdef APP-PLUS
|
||||
// baseUrl = "http://112.29.103.165:21624"
|
||||
// baseUrl = "http://192.168.0.14:21624"
|
||||
baseUrl = "http://192.168.0.14:21624"
|
||||
// baseUrl = "http://112.29.103.165:21626"
|
||||
// baseUrl = "http://172.20.10.3:8080"
|
||||
// baseUrl = "http://10.40.92.13:8080"
|
||||
baseUrl = "http://10.40.92.52:28080"
|
||||
// baseUrl = "http://10.40.92.8:8080"
|
||||
// baseUrl = "http://10.40.92.52:28080"
|
||||
// baseUrl = "http://10.40.92.81:8080"
|
||||
// baseUrl = "https://z.csgmall.com.cn/gl"
|
||||
// #endif
|
||||
// 基地址
|
||||
/* authPath = `${this.baseUrl}/dev-api/auth`
|
||||
authPath = `${this.baseUrl}/dev-api/auth`
|
||||
systemPath = `${this.baseUrl}/dev-api/system`
|
||||
basePath = `${this.baseUrl}/dev-api/base`
|
||||
materialPath = `${this.baseUrl}/dev-api/material` */
|
||||
authPath = `${this.baseUrl}/auth`
|
||||
materialPath = `${this.baseUrl}/dev-api/material`
|
||||
/* authPath = `${this.baseUrl}/auth`
|
||||
systemPath = `${this.baseUrl}/system`
|
||||
basePath = `${this.baseUrl}/base`
|
||||
materialPath = `${this.baseUrl}/material`
|
||||
materialPath = `${this.baseUrl}/material` */
|
||||
// 短链
|
||||
serviceUrl = {
|
||||
login: {
|
||||
|
|
|
|||
|
|
@ -282,7 +282,7 @@ import { basePath } from '../../public'
|
|||
}
|
||||
.search-bar{
|
||||
width: 95%;
|
||||
margin: 40rpx auto;
|
||||
margin: 20rpx auto;
|
||||
}
|
||||
.single-fetch{
|
||||
width: 95%;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
<checkbox :checked="fetch.checked" />
|
||||
</checkbox-group> -->
|
||||
<view class="upper-lef">
|
||||
{{ fetch.createBy.slice(0, 1) }}
|
||||
{{ fetch.createBy == null ? '' : fetch.createBy.slice(0, 1) }}
|
||||
</view>
|
||||
<view class="upper-rig">
|
||||
<h4 style="font-size: 16px;">{{ fetch.createBy }}</h4>
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
</view>
|
||||
<view
|
||||
style="background-color: #FCA30D;"
|
||||
v-show="fetch.taskStatus == 33"
|
||||
v-show="fetch.taskStatus == 117"
|
||||
@click="toggleOpenModal(fetch)"
|
||||
>
|
||||
<uni-icons style="color: #fff;" type="auth"></uni-icons>
|
||||
|
|
@ -208,7 +208,7 @@
|
|||
<h4 style="width: 85%; margin: 2vh auto; font-weight: normal; text-align: center;">是否通过审批?</h4>
|
||||
<view class="select-area">
|
||||
<view @click="modalConfirm">通过</view>
|
||||
<view @click="modalReject">驳回</view>
|
||||
<view @click="modalReject" v-show="modalList.taskStatus != 117">驳回</view>
|
||||
<!-- <uni-forms ref="examForm" :modelValue="examFormData" :rules="rules" label-position="top">
|
||||
<uni-forms-item name="ifPass" required label="是否通过" label-width="150">
|
||||
<uni-data-select
|
||||
|
|
@ -329,7 +329,31 @@ import { basePath } from '../../public'
|
|||
},
|
||||
modalConfirm () {
|
||||
let that = this
|
||||
console.log(that.modalList);
|
||||
that.modalList.leaseApplyInfoList[0].examineStatusId = that.modalList.examineStatusId
|
||||
that.examList = {
|
||||
taskId: that.modalList.taskId,
|
||||
leaseApplyInfoList: that.modalList.leaseApplyInfoList,
|
||||
leaseApplyDetails: that.modalList.leaseApplyInfoList[0].leaseApplyDetails
|
||||
}
|
||||
switch (that.modalList.taskStatus) {
|
||||
case 31:
|
||||
that.examList.taskStatus = 32
|
||||
break;
|
||||
case 32:
|
||||
that.examList.taskStatus = 117
|
||||
break;
|
||||
case 117:
|
||||
that.examList.taskStatus = 33
|
||||
break;
|
||||
}
|
||||
/* that.examList = {
|
||||
taskId: that.modalList.taskId,
|
||||
taskStatus: that.modalList.taskStatus + 1,
|
||||
leaseApplyInfoList: that.modalList.leaseApplyInfoList,
|
||||
leaseApplyDetails: that.modalList.leaseApplyInfoList[0].leaseApplyDetails
|
||||
} */
|
||||
console.log(that.modalList, that.examList);
|
||||
that.toggleSubmit(that.examList)
|
||||
/* for (let i = 0; i < that.modalList.leaseApplyInfoList.length; i++) {
|
||||
that.modalList.leaseApplyInfoList[i].companyAuditBy = uni.getStorageSync('userInfo').userid
|
||||
that.modalList.leaseApplyInfoList[i].deptAuditBy = uni.getStorageSync('userInfo').userid
|
||||
|
|
@ -377,6 +401,21 @@ import { basePath } from '../../public'
|
|||
modalReject () {
|
||||
let that = this
|
||||
console.log(that.modalList);
|
||||
that.examList = {
|
||||
taskId: that.modalList.taskId,
|
||||
leaseApplyInfoList: that.modalList.leaseApplyInfoList,
|
||||
leaseApplyDetails: that.modalList.leaseApplyInfoList[0].leaseApplyDetails
|
||||
}
|
||||
switch (that.modalList.taskStatus) {
|
||||
case 31:
|
||||
that.examList.taskStatus = 99
|
||||
break;
|
||||
case 32:
|
||||
that.examList.taskStatus = 100
|
||||
break;
|
||||
}
|
||||
that.modalList.leaseApplyInfoList[0].examineStatusId = that.examList.taskStatus
|
||||
// if (that.modalList.taskStatus == 32) that.modalList.taskStatus = 100
|
||||
/* for (let i = 0; i < that.modalList.leaseApplyInfoList.length; i++) {
|
||||
that.modalList.leaseApplyInfoList[i].companyAuditBy = uni.getStorageSync('userInfo').userid
|
||||
that.modalList.leaseApplyInfoList[i].deptAuditBy = uni.getStorageSync('userInfo').userid
|
||||
|
|
@ -435,8 +474,10 @@ import { basePath } from '../../public'
|
|||
title: '请填写驳回原因!'
|
||||
})
|
||||
} else {
|
||||
for (let i = 0; i < that.examList.leaseApplyInfoList.length; i++) {
|
||||
that.examList.leaseApplyInfoList[i].companyAuditRemark = that.rejectReason
|
||||
if (that.modalList.taskStatus == 31) {
|
||||
that.examList.leaseApplyInfoList[0].deptAuditRemark = that.rejectReason
|
||||
} else if (that.modalList.taskStatus == 32) {
|
||||
that.examList.leaseApplyInfoList[0].directAuditRemark = that.rejectReason
|
||||
}
|
||||
console.log(that.examList);
|
||||
that.rejectSubmit(that.examList)
|
||||
|
|
@ -482,108 +523,6 @@ import { basePath } from '../../public'
|
|||
closePopup1 () {
|
||||
this.$refs.popup1.close()
|
||||
},
|
||||
seeExam (info) {
|
||||
console.log(info);
|
||||
let that = this
|
||||
for (let i = 0; i < info.leaseApplyInfoList.length; i++) {
|
||||
info.leaseApplyInfoList[i].companyAuditBy = uni.getStorageSync('userInfo').userid
|
||||
info.leaseApplyInfoList[i].deptAuditBy = uni.getStorageSync('userInfo').userid
|
||||
info.leaseApplyInfoList[i].directAuditBy = uni.getStorageSync('userInfo').userid
|
||||
for (let k = 0; k < info.leaseApplyInfoList[i].leaseApplyDetails.length; k++) {
|
||||
info.leaseApplyInfoList[i].leaseApplyDetails[k].auditNum = info.leaseApplyInfoList[i].leaseApplyDetails[k].preNum
|
||||
if (info.taskStatus == '34') {
|
||||
info.leaseApplyInfoList[i].leaseApplyDetails[k].alNum = info.leaseApplyInfoList[i].leaseApplyDetails[k].auditNum
|
||||
}
|
||||
}
|
||||
}
|
||||
this.examList = {
|
||||
taskId: info.taskId,
|
||||
taskStatus: info.taskStatus + 1,
|
||||
leaseApplyInfoList: info.leaseApplyInfoList
|
||||
}
|
||||
uni.showModal({
|
||||
title: '确认审核',
|
||||
content: '是否确认通过审核?',
|
||||
confirmText: '通过',
|
||||
cancelText: '驳回',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
if (that.roles.includes('fgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 30
|
||||
}
|
||||
} else if (that.roles.includes('sgb')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 5
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 31
|
||||
}
|
||||
} else if (that.roles.includes('ajb')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 7
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 31
|
||||
}
|
||||
} else if (that.roles.includes('jjfgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 1
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 32
|
||||
}
|
||||
} else if (that.roles.includes('tsfgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 3
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 32
|
||||
}
|
||||
}/* else if (that.roles.includes('admin')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 1
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 32
|
||||
}
|
||||
that.examList.taskStatus = 33
|
||||
} */
|
||||
console.log(that.examList);
|
||||
that.toggleSubmit(that.examList)
|
||||
} else if (res.cancel) {
|
||||
if (that.roles.includes('fgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.taskStatus = 98
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 98
|
||||
}
|
||||
} else if (that.roles.includes('sgb')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 6
|
||||
that.examList.taskStatus = 99
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 99
|
||||
}
|
||||
} else if (that.roles.includes('ajb')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 8
|
||||
that.examList.taskStatus = 99
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 99
|
||||
}
|
||||
} else if (that.roles.includes('jjfgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 2
|
||||
that.examList.taskStatus = 100
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 100
|
||||
}
|
||||
} else if (that.roles.includes('tsfgs')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 4
|
||||
that.examList.taskStatus = 100
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 100
|
||||
}
|
||||
}/* else if (that.roles.includes('admin')) {
|
||||
for (let k = 0; k < that.examList.leaseApplyInfoList.length; k++) {
|
||||
that.examList.leaseApplyInfoList[k].status = 4
|
||||
that.examList.taskStatus = 100
|
||||
that.examList.leaseApplyInfoList[k].examineStatusId = 100
|
||||
}
|
||||
} */
|
||||
console.log(that.examList);
|
||||
that.rejectSubmit(that.examList)
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
/* formSubmit () {
|
||||
let that = this
|
||||
that.$refs.examForm.validate().then(formData => {
|
||||
|
|
@ -660,7 +599,7 @@ import { basePath } from '../../public'
|
|||
title: '未查询到相关数据!'
|
||||
})
|
||||
} else {
|
||||
that.fetchMaterialList = res.data.data
|
||||
that.fetchMaterialList = res.data.data.rows
|
||||
that.showLoading = false
|
||||
console.log(that.fetchMaterialList);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
<template>
|
||||
<view>
|
||||
<view class="ipt-area">
|
||||
<uni-easyinput
|
||||
class="keyword-ipt"
|
||||
suffixIcon="search"
|
||||
v-model="keywordVal"
|
||||
placeholder="右侧图标"
|
||||
placeholder="请输入关键字"
|
||||
@iconClick="searchKeyword"
|
||||
></uni-easyinput>
|
||||
</view>
|
||||
<view
|
||||
class="single-fetch"
|
||||
v-for="(fetch, index) in fetchMaterialList"
|
||||
|
|
@ -264,7 +265,7 @@ import { basePath } from '../../public'
|
|||
box-sizing: border-box;
|
||||
padding-bottom: 10vh;
|
||||
}
|
||||
.keyword-ipt{
|
||||
.ipt-area{
|
||||
width: 95%;
|
||||
margin: 20rpx auto;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,6 +109,7 @@
|
|||
toggleBind () {
|
||||
let that = this
|
||||
that.showLoading = true
|
||||
console.log(that.qrcode);
|
||||
that.$refs.qrForm.validate().then(formData => {
|
||||
console.log(formData);
|
||||
that.$api.qrcodeBinding.bindQrcode({
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ export default {
|
|||
barcode = plus.barcode.create('barcode', [plus.barcode.QR, plus.barcode.EAN13, plus.barcode.EAN8, plus.barcode.CODE128], {
|
||||
top: '10%',
|
||||
left: '0',
|
||||
width: '100%',
|
||||
width: '100vw',
|
||||
height: '90%',
|
||||
scanbarColor: '#46B81E',
|
||||
position: 'static',
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -10320,6 +10320,14 @@ var render = function () {
|
|||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm._$g(42, "v-show"),
|
||||
expression: "_$g(42,'v-show')",
|
||||
},
|
||||
],
|
||||
attrs: { _i: 42 },
|
||||
on: {
|
||||
click: function ($event) {
|
||||
|
|
@ -19200,33 +19208,32 @@ var render = function () {
|
|||
return _c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: 0 } },
|
||||
[
|
||||
_c(
|
||||
"uni-view",
|
||||
{ staticClass: _vm._$g(1, "sc"), attrs: { _i: 1 } },
|
||||
[
|
||||
_c("uni-easyinput", {
|
||||
staticClass: _vm._$g(1, "sc"),
|
||||
attrs: { _i: 1 },
|
||||
attrs: { _i: 2 },
|
||||
on: {
|
||||
iconClick: function ($event) {
|
||||
return _vm.$handleViewEvent($event)
|
||||
},
|
||||
},
|
||||
model: {
|
||||
value: _vm._$g(1, "v-model"),
|
||||
value: _vm._$g(2, "v-model"),
|
||||
callback: function () {},
|
||||
expression: "keywordVal",
|
||||
},
|
||||
}),
|
||||
_vm._l(_vm._$g(2, "f"), function (fetch, index, $20, $30) {
|
||||
],
|
||||
1
|
||||
),
|
||||
_vm._l(_vm._$g(3, "f"), function (fetch, index, $20, $30) {
|
||||
return _c(
|
||||
"uni-view",
|
||||
{
|
||||
key: fetch,
|
||||
staticClass: _vm._$g("2-" + $30, "sc"),
|
||||
attrs: { _i: "2-" + $30 },
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("3-" + $30, "sc"),
|
||||
attrs: { _i: "3-" + $30 },
|
||||
},
|
||||
|
|
@ -19237,30 +19244,37 @@ var render = function () {
|
|||
staticClass: _vm._$g("4-" + $30, "sc"),
|
||||
attrs: { _i: "4-" + $30 },
|
||||
},
|
||||
[_vm._v(_vm._$g("4-" + $30, "t0-0"))]
|
||||
),
|
||||
[
|
||||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("5-" + $30, "sc"),
|
||||
attrs: { _i: "5-" + $30 },
|
||||
},
|
||||
[_vm._v(_vm._$g("5-" + $30, "t0-0"))]
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("6-" + $30, "sc"),
|
||||
attrs: { _i: "6-" + $30 },
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"h4",
|
||||
{
|
||||
staticStyle: { "font-size": "16px" },
|
||||
attrs: { _i: "6-" + $30 },
|
||||
attrs: { _i: "7-" + $30 },
|
||||
},
|
||||
[_vm._v(_vm._$g("6-" + $30, "t0-0"))]
|
||||
[_vm._v(_vm._$g("7-" + $30, "t0-0"))]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
{
|
||||
staticStyle: { color: "#989898" },
|
||||
attrs: { _i: "7-" + $30 },
|
||||
attrs: { _i: "8-" + $30 },
|
||||
},
|
||||
[_vm._v(_vm._$g("7-" + $30, "t0-0"))]
|
||||
[_vm._v(_vm._$g("8-" + $30, "t0-0"))]
|
||||
),
|
||||
],
|
||||
1
|
||||
|
|
@ -19271,8 +19285,8 @@ var render = function () {
|
|||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("8-" + $30, "sc"),
|
||||
attrs: { _i: "8-" + $30 },
|
||||
staticClass: _vm._$g("9-" + $30, "sc"),
|
||||
attrs: { _i: "9-" + $30 },
|
||||
on: {
|
||||
click: function ($event) {
|
||||
return _vm.$handleViewEvent($event)
|
||||
|
|
@ -19282,78 +19296,78 @@ var render = function () {
|
|||
[
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "9-" + $30 } },
|
||||
{ attrs: { _i: "10-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "10-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "11-" + $30 } }, [
|
||||
_vm._v("领料申请单位"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "11-" + $30 } }, [
|
||||
_vm._v(_vm._$g("11-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "12-" + $30 } }, [
|
||||
_vm._v(_vm._$g("12-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "12-" + $30 } },
|
||||
{ attrs: { _i: "13-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "13-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "14-" + $30 } }, [
|
||||
_vm._v("领料申请工程"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "14-" + $30 } }, [
|
||||
_vm._v(_vm._$g("14-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "15-" + $30 } }, [
|
||||
_vm._v(_vm._$g("15-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "15-" + $30 } },
|
||||
{ attrs: { _i: "16-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "16-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "17-" + $30 } }, [
|
||||
_vm._v("领料单号"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "17-" + $30 } }, [
|
||||
_vm._v(_vm._$g("17-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "18-" + $30 } }, [
|
||||
_vm._v(_vm._$g("18-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "18-" + $30 } },
|
||||
{ attrs: { _i: "19-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "19-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "20-" + $30 } }, [
|
||||
_vm._v("申请数量"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "20-" + $30 } }, [
|
||||
_vm._v(_vm._$g("20-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "21-" + $30 } }, [
|
||||
_vm._v(_vm._$g("21-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "21-" + $30 } },
|
||||
{ attrs: { _i: "22-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "22-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "23-" + $30 } }, [
|
||||
_vm._v("申请时间"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "23-" + $30 } }, [
|
||||
_vm._v(_vm._$g("23-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "24-" + $30 } }, [
|
||||
_vm._v(_vm._$g("24-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
),
|
||||
_c(
|
||||
"uni-view",
|
||||
{ attrs: { _i: "24-" + $30 } },
|
||||
{ attrs: { _i: "25-" + $30 } },
|
||||
[
|
||||
_c("span", { attrs: { _i: "25-" + $30 } }, [
|
||||
_c("span", { attrs: { _i: "26-" + $30 } }, [
|
||||
_vm._v("已出库数量"),
|
||||
]),
|
||||
_c("h4", { attrs: { _i: "26-" + $30 } }, [
|
||||
_vm._v(_vm._$g("26-" + $30, "t0-0")),
|
||||
_c("h4", { attrs: { _i: "27-" + $30 } }, [
|
||||
_vm._v(_vm._$g("27-" + $30, "t0-0")),
|
||||
]),
|
||||
],
|
||||
1
|
||||
|
|
@ -19364,25 +19378,10 @@ var render = function () {
|
|||
_c(
|
||||
"uni-view",
|
||||
{
|
||||
staticClass: _vm._$g("27-" + $30, "sc"),
|
||||
attrs: { _i: "27-" + $30 },
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"h4",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm._$g("28-" + $30, "v-show"),
|
||||
expression: "_$g((\"28-\"+$30),'v-show')",
|
||||
},
|
||||
],
|
||||
staticClass: _vm._$g("28-" + $30, "sc"),
|
||||
attrs: { _i: "28-" + $30 },
|
||||
},
|
||||
[_vm._v("待出库")]
|
||||
),
|
||||
[
|
||||
_c(
|
||||
"h4",
|
||||
{
|
||||
|
|
@ -19396,7 +19395,7 @@ var render = function () {
|
|||
],
|
||||
attrs: { _i: "29-" + $30 },
|
||||
},
|
||||
[_vm._v("出库进行中")]
|
||||
[_vm._v("待出库")]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
|
|
@ -19409,13 +19408,9 @@ var render = function () {
|
|||
expression: "_$g((\"30-\"+$30),'v-show')",
|
||||
},
|
||||
],
|
||||
staticStyle: {
|
||||
border: "1px solid #27D870",
|
||||
color: "#27D870",
|
||||
},
|
||||
attrs: { _i: "30-" + $30 },
|
||||
},
|
||||
[_vm._v("出库完成")]
|
||||
[_vm._v("出库进行中")]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
|
|
@ -19429,12 +19424,12 @@ var render = function () {
|
|||
},
|
||||
],
|
||||
staticStyle: {
|
||||
border: "1px solid #EE603D",
|
||||
color: "#EE603D",
|
||||
border: "1px solid #27D870",
|
||||
color: "#27D870",
|
||||
},
|
||||
attrs: { _i: "31-" + $30 },
|
||||
},
|
||||
[_vm._v("分公司审核驳回")]
|
||||
[_vm._v("出库完成")]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
|
|
@ -19453,7 +19448,7 @@ var render = function () {
|
|||
},
|
||||
attrs: { _i: "32-" + $30 },
|
||||
},
|
||||
[_vm._v("分管审核驳回")]
|
||||
[_vm._v("分公司审核驳回")]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
|
|
@ -19472,6 +19467,25 @@ var render = function () {
|
|||
},
|
||||
attrs: { _i: "33-" + $30 },
|
||||
},
|
||||
[_vm._v("分管审核驳回")]
|
||||
),
|
||||
_c(
|
||||
"h4",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm._$g("34-" + $30, "v-show"),
|
||||
expression: "_$g((\"34-\"+$30),'v-show')",
|
||||
},
|
||||
],
|
||||
staticStyle: {
|
||||
border: "1px solid #EE603D",
|
||||
color: "#EE603D",
|
||||
},
|
||||
attrs: { _i: "34-" + $30 },
|
||||
},
|
||||
[_vm._v("内部审核驳回")]
|
||||
),
|
||||
],
|
||||
|
|
@ -19481,7 +19495,7 @@ var render = function () {
|
|||
1
|
||||
)
|
||||
}),
|
||||
_c("u-loading-page", { attrs: { _i: 34 } }),
|
||||
_c("u-loading-page", { attrs: { _i: 35 } }),
|
||||
],
|
||||
2
|
||||
)
|
||||
|
|
@ -19580,7 +19594,7 @@ if(false) {}
|
|||
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);
|
||||
// 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 background-color: #f8f8f8;\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.keyword-ipt {\r\n width: 95%;\r\n margin: 20rpx auto;\n}\n.single-fetch {\r\n width: 95%;\r\n margin: 20rpx auto;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n position: relative;\n}\n.single-fetch .fetch-upper {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n border-bottom: 1px solid #D7D7D7;\r\n display: flex;\r\n align-items: center;\n}\n.single-fetch .fetch-upper .upper-lef {\r\n width: 12%;\r\n height: 5vh;\r\n border-radius: 15rpx;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #3789FD;\r\n color: #fff;\r\n font-size: 24px;\n}\n.single-fetch .fetch-upper .upper-rig {\r\n flex: 1;\r\n box-sizing: border-box;\r\n padding: 10rpx 20rpx;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-around;\n}\n.single-fetch .fetch-upper .upper-rig h4 {\r\n font-weight: normal;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\n}\n.single-fetch .fetch-lower uni-view {\r\n width: 100%;\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower uni-view span {\r\n color: #9D9D9D;\r\n padding-right: 20rpx;\n}\n.single-fetch .fetch-lower uni-view h4 {\r\n color: #000;\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .fetch-lower uni-view:last-child {\r\n margin-bottom: 0;\n}\n.single-fetch .fetch-btns {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n display: flex;\r\n justify-content: flex-end;\n}\n.single-fetch .fetch-btns uni-view {\r\n box-sizing: border-box;\r\n padding: 8rpx 25rpx;\r\n border-radius: 15rpx;\r\n color: #fff;\r\n margin-right: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-btns uni-view:last-child {\r\n margin-right: 0;\n}\n.single-fetch .sticky-area {\r\n position: absolute;\r\n top: 20rpx;\r\n right: 20rpx;\n}\n.single-fetch .sticky-area h4 {\r\n box-sizing: border-box;\r\n padding: 8rpx 20rpx;\r\n border-radius: 15rpx;\r\n font-size: 14px;\r\n font-weight: normal;\r\n background-color: #fff;\r\n border: 1px solid #3788FF;\r\n color: #3788FF;\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 background-color: #f8f8f8;\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.ipt-area {\r\n width: 95%;\r\n margin: 20rpx auto;\n}\n.single-fetch {\r\n width: 95%;\r\n margin: 20rpx auto;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n position: relative;\n}\n.single-fetch .fetch-upper {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n border-bottom: 1px solid #D7D7D7;\r\n display: flex;\r\n align-items: center;\n}\n.single-fetch .fetch-upper .upper-lef {\r\n width: 12%;\r\n height: 5vh;\r\n border-radius: 15rpx;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #3789FD;\r\n color: #fff;\r\n font-size: 24px;\n}\n.single-fetch .fetch-upper .upper-rig {\r\n flex: 1;\r\n box-sizing: border-box;\r\n padding: 10rpx 20rpx;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-around;\n}\n.single-fetch .fetch-upper .upper-rig h4 {\r\n font-weight: normal;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\n}\n.single-fetch .fetch-lower uni-view {\r\n width: 100%;\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower uni-view span {\r\n color: #9D9D9D;\r\n padding-right: 20rpx;\n}\n.single-fetch .fetch-lower uni-view h4 {\r\n color: #000;\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .fetch-lower uni-view:last-child {\r\n margin-bottom: 0;\n}\n.single-fetch .fetch-btns {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n display: flex;\r\n justify-content: flex-end;\n}\n.single-fetch .fetch-btns uni-view {\r\n box-sizing: border-box;\r\n padding: 8rpx 25rpx;\r\n border-radius: 15rpx;\r\n color: #fff;\r\n margin-right: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-btns uni-view:last-child {\r\n margin-right: 0;\n}\n.single-fetch .sticky-area {\r\n position: absolute;\r\n top: 20rpx;\r\n right: 20rpx;\n}\n.single-fetch .sticky-area h4 {\r\n box-sizing: border-box;\r\n padding: 8rpx 20rpx;\r\n border-radius: 15rpx;\r\n font-size: 14px;\r\n font-weight: normal;\r\n background-color: #fff;\r\n border: 1px solid #3788FF;\r\n color: #3788FF;\n}\r\n", ""]);
|
||||
// Exports
|
||||
module.exports = exports;
|
||||
|
||||
|
|
@ -21130,7 +21144,7 @@ if(false) {}
|
|||
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);
|
||||
// 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 background-color: #f8f8f8;\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.search-bar {\r\n width: 95%;\r\n margin: 40rpx auto;\n}\n.single-fetch {\r\n width: 95%;\r\n margin: 20rpx auto;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n box-sizing: border-box;\r\n padding: 5rpx;\r\n position: relative;\n}\n.single-fetch .fetch-upper {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n border-bottom: 1px solid #D7D7D7;\r\n display: flex;\r\n align-items: center;\n}\n.single-fetch .fetch-upper .upper-lef {\r\n width: 12%;\r\n height: 5vh;\r\n border-radius: 15rpx;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #3789FD;\r\n color: #fff;\r\n font-size: 24px;\n}\n.single-fetch .fetch-upper .upper-rig {\r\n flex: 1;\r\n box-sizing: border-box;\r\n padding: 10rpx 20rpx;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-around;\n}\n.single-fetch .fetch-upper .upper-rig h4 {\r\n font-weight: normal;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\n}\n.single-fetch .fetch-lower uni-view {\r\n width: 100%;\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower uni-view span {\r\n color: #9D9D9D;\r\n padding-right: 20rpx;\n}\n.single-fetch .fetch-lower uni-view h4 {\r\n color: #000;\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .fetch-lower uni-view:last-child {\r\n margin-bottom: 0;\n}\n.single-fetch .fetch-btns {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n display: flex;\r\n justify-content: flex-end;\n}\n.single-fetch .fetch-btns uni-view {\r\n box-sizing: border-box;\r\n padding: 8rpx 25rpx;\r\n border-radius: 15rpx;\r\n color: #fff;\r\n margin-right: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-btns uni-view:last-child {\r\n margin-right: 0;\n}\n.single-fetch .sticky-area {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n width: 10vh;\r\n height: 9vh;\n}\n.single-fetch .sticky-area uni-image {\r\n width: 100%;\r\n height: 100%;\n}\r\n/* .btm-sticky{\r\n\tposition: fixed;\r\n\tbottom: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\tbox-sizing: border-box;\r\n\tpadding: 15rpx 30rpx;\r\n\tbackground-color: #fff;\r\n\tdisplay: flex;\r\n\tjustify-content: space-between;\r\n\talign-items: center;\r\n\t.checked{\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t}\r\n\t.exam{\r\n\t\tbox-sizing: border-box;\r\n\t\tpadding: 10rpx 50rpx;\r\n\t\tborder-radius: 30rpx;\r\n\t\tbackground-color: #3788FF;\r\n\t\tfont-size: 14px;\r\n\t\tcolor: #fff;\r\n\t}\r\n}\r\n.popup{\r\n\twidth: 80vw;\r\n\theight: 60vh;\r\n\tbackground-color: #fff;\r\n\tborder-radius: 15rpx;\r\n\toverflow: hidden;\r\n\tbackground: linear-gradient(#D9E7FE, #fff, #fff, #fff);\r\n\t.pop-top{\r\n\t\twidth: 100%;\r\n\t\theight: 5vh;\r\n\t\tbox-sizing: border-box;\r\n\t\tpadding: 0 25rpx;\r\n\t\tdisplay: flex;\r\n\t\tjustify-content: space-between;\r\n\t\talign-items: center;\r\n\t}\r\n\t.select-area{\r\n\t\twidth: 85%;\r\n\t\tmargin: 40rpx auto;\r\n\t\t.submit-btn{\r\n\t\t\tbackground-color: #409EFF;\r\n\t\t\tcolor: #fff;\r\n\t\t}\r\n\t}\r\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 background-color: #f8f8f8;\r\n box-sizing: border-box;\r\n padding-bottom: 10vh;\n}\n.search-bar {\r\n width: 95%;\r\n margin: 20rpx auto;\n}\n.single-fetch {\r\n width: 95%;\r\n margin: 20rpx auto;\r\n background-color: #fff;\r\n border-radius: 15rpx;\r\n box-sizing: border-box;\r\n padding: 5rpx;\r\n position: relative;\n}\n.single-fetch .fetch-upper {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n border-bottom: 1px solid #D7D7D7;\r\n display: flex;\r\n align-items: center;\n}\n.single-fetch .fetch-upper .upper-lef {\r\n width: 12%;\r\n height: 5vh;\r\n border-radius: 15rpx;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n background-color: #3789FD;\r\n color: #fff;\r\n font-size: 24px;\n}\n.single-fetch .fetch-upper .upper-rig {\r\n flex: 1;\r\n box-sizing: border-box;\r\n padding: 10rpx 20rpx;\r\n display: flex;\r\n flex-direction: column;\r\n justify-content: space-around;\n}\n.single-fetch .fetch-upper .upper-rig h4 {\r\n font-weight: normal;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\n}\n.single-fetch .fetch-lower uni-view {\r\n width: 100%;\r\n display: flex;\r\n align-items: center;\r\n margin-bottom: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-lower uni-view span {\r\n color: #9D9D9D;\r\n padding-right: 20rpx;\n}\n.single-fetch .fetch-lower uni-view h4 {\r\n color: #000;\r\n font-size: 14px;\r\n font-weight: normal;\n}\n.single-fetch .fetch-lower uni-view:last-child {\r\n margin-bottom: 0;\n}\n.single-fetch .fetch-btns {\r\n width: 100%;\r\n box-sizing: border-box;\r\n padding: 15rpx;\r\n display: flex;\r\n justify-content: flex-end;\n}\n.single-fetch .fetch-btns uni-view {\r\n box-sizing: border-box;\r\n padding: 8rpx 25rpx;\r\n border-radius: 15rpx;\r\n color: #fff;\r\n margin-right: 15rpx;\r\n font-size: 14px;\n}\n.single-fetch .fetch-btns uni-view:last-child {\r\n margin-right: 0;\n}\n.single-fetch .sticky-area {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n width: 10vh;\r\n height: 9vh;\n}\n.single-fetch .sticky-area uni-image {\r\n width: 100%;\r\n height: 100%;\n}\r\n/* .btm-sticky{\r\n\tposition: fixed;\r\n\tbottom: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\tbox-sizing: border-box;\r\n\tpadding: 15rpx 30rpx;\r\n\tbackground-color: #fff;\r\n\tdisplay: flex;\r\n\tjustify-content: space-between;\r\n\talign-items: center;\r\n\t.checked{\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t}\r\n\t.exam{\r\n\t\tbox-sizing: border-box;\r\n\t\tpadding: 10rpx 50rpx;\r\n\t\tborder-radius: 30rpx;\r\n\t\tbackground-color: #3788FF;\r\n\t\tfont-size: 14px;\r\n\t\tcolor: #fff;\r\n\t}\r\n}\r\n.popup{\r\n\twidth: 80vw;\r\n\theight: 60vh;\r\n\tbackground-color: #fff;\r\n\tborder-radius: 15rpx;\r\n\toverflow: hidden;\r\n\tbackground: linear-gradient(#D9E7FE, #fff, #fff, #fff);\r\n\t.pop-top{\r\n\t\twidth: 100%;\r\n\t\theight: 5vh;\r\n\t\tbox-sizing: border-box;\r\n\t\tpadding: 0 25rpx;\r\n\t\tdisplay: flex;\r\n\t\tjustify-content: space-between;\r\n\t\talign-items: center;\r\n\t}\r\n\t.select-area{\r\n\t\twidth: 85%;\r\n\t\tmargin: 40rpx auto;\r\n\t\t.submit-btn{\r\n\t\t\tbackground-color: #409EFF;\r\n\t\t\tcolor: #fff;\r\n\t\t}\r\n\t}\r\n} */\r\n", ""]);
|
||||
// Exports
|
||||
module.exports = exports;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue