Browse Source

新增记录本仓所有库位码, 根据是否为库位码更换扫描接口

test
qb 1 year ago
parent
commit
7f5ac0e242
  1. 2151
      api/user.js
  2. 16
      pages/index/index.vue
  3. 4
      pages/login/login.vue
  4. 5
      pagesHome/pages/DownGoods/DownGoods.vue
  5. 14
      pagesHome/pages/PeopleScanUp/PeopleScanUp.vue
  6. 86
      pagesHome/pages/Relocation/Relocation.vue
  7. 221
      pagesHome/pages/ScanUp/ScanUp.vue
  8. 60
      store/useStorageStore.js
  9. 1437
      unpackage/dist/dev/app-plus/app-service.js
  10. 190
      unpackage/dist/dev/app-plus/pagesHome/pages/Relocation/Relocation.css

2151
api/user.js

File diff suppressed because it is too large Load Diff

16
pages/index/index.vue

@ -32,7 +32,16 @@
import { listtype } from '@/interfaces/home/index' import { listtype } from '@/interfaces/home/index'
// import Tabber from '@/compoment/Tabber/Tabber.vue' // import Tabber from '@/compoment/Tabber/Tabber.vue'
import { inject, reactive, toRefs, watchEffect, ref } from "vue"; import { inject, reactive, toRefs, watchEffect, ref } from "vue";
import utils from '../../utils/utils'; import utils from '@/utils/utils';
import useStorageStore from '@/store/useStorageStore';
import { storeToRefs } from 'pinia';
const storageStore = useStorageStore()
const { HANDLE_GETSTORAGEINFO } = storageStore
const { storageArr } = storeToRefs(storageStore)
//
HANDLE_GETSTORAGEINFO()
const tip = ref(null) const tip = ref(null)
// let details = reactive<listtype>({ tablist: [] }); // let details = reactive<listtype>({ tablist: [] });
let details = reactive<listtype>({ let details = reactive<listtype>({
@ -340,9 +349,12 @@
// #endif // #endif
init() init()
//
initbuts() initbuts()
// print() //
if (storageArr.value.length === 0) HANDLE_GETSTORAGEINFO()
}) })
onLoad(() => { onLoad(() => {

4
pages/login/login.vue

@ -72,6 +72,8 @@
// pinia // pinia
import { useUserStore } from '@/store/uaeUserStore'; import { useUserStore } from '@/store/uaeUserStore';
import useBluetoothStore from '@/store/useBluetoothStore.js'; import useBluetoothStore from '@/store/useBluetoothStore.js';
import useStorageStore from '@/store/useStorageStore';
const { HANDLE_CLEARSTORAGE } = useStorageStore()
const { HANDLE_INITBLUETOOTH } = useBluetoothStore() const { HANDLE_INITBLUETOOTH } = useBluetoothStore()
// import { storeToRefs } from 'pinia'; // import { storeToRefs } from 'pinia';
const userStore = useUserStore() const userStore = useUserStore()
@ -105,6 +107,8 @@
}) })
onShow(() => { onShow(() => {
const timer = setTimeout(() => { const timer = setTimeout(() => {
// Pinia
HANDLE_CLEARSTORAGE()
settips() settips()
clearTimeout(timer) clearTimeout(timer)
}, 2000) }, 2000)

5
pagesHome/pages/DownGoods/DownGoods.vue

@ -294,9 +294,12 @@
import utils from '@/utils/utils'; import utils from '@/utils/utils';
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore()) const { scanState } = storeToRefs(useSystemSettingsStore())
const tiplists = ref(null) const tiplists = ref(null)
const tip = ref(null) const tip = ref(null)
const details = reactive({ const details = reactive({
scantype: 1, scantype: 1,
scancode: '', scancode: '',
@ -423,7 +426,7 @@
details.scandataList.push(_scancode) details.scandataList.push(_scancode)
try { try {
uni.showLoading({ uni.showLoading({
mask:true mask: true
}) })
let res = null let res = null
let data = null; let data = null;

14
pagesHome/pages/PeopleScanUp/PeopleScanUp.vue

@ -358,12 +358,18 @@
onPullDownRefresh onPullDownRefresh
} from '@dcloudio/uni-app' } from '@dcloudio/uni-app'
import { reactive, ref, toRefs, watchEffect } from "vue"; import { reactive, ref, toRefs, watchEffect } from "vue";
import utils from '../../../utils/utils'; import utils from '@/utils/utils';
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import useStorageStore from '@/store/useStorageStore.js';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
const { scanState } = storeToRefs(useSystemSettingsStore()) const { scanState } = storeToRefs(useSystemSettingsStore())
const { HANDLE_ISSTORAGECODE } = useStorageStore()
//
const tip = ref(null) const tip = ref(null)
const tiplists = ref(null) const tiplists = ref(null)
let details = reactive({ let details = reactive({
checkstate: 1, checkstate: 1,
upshelfScanType: '', upshelfScanType: '',
@ -562,7 +568,8 @@
// if (Number(details.upshelfScanType) == 1 || Number(details.upshelfScanType) == 2) { // if (Number(details.upshelfScanType) == 1 || Number(details.upshelfScanType) == 2) {
// } // }
if (details.scancode[0] === 'T') { const { scancode } = details
if (!HANDLE_ISSTORAGECODE(scancode)) {
uni.showToast({ uni.showToast({
title: '请扫描库位码', title: '请扫描库位码',
icon: 'none' icon: 'none'
@ -572,8 +579,9 @@
// #endif // #endif
return return
} }
let data = { let data = {
allocationId: details.scancode, allocationId: scancode,
} }
let res = await warehouseUpdownTypeupShelfScanAllocation(data) let res = await warehouseUpdownTypeupShelfScanAllocation(data)
console.log(res); console.log(res);

86
pagesHome/pages/Relocation/Relocation.vue

@ -272,8 +272,15 @@
import utils from '@/utils/utils'; import utils from '@/utils/utils';
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import useStorageStore from '@/store/useStorageStore';
const { HANDLE_ISSTORAGECODE } = useStorageStore()
const { scanState } = storeToRefs(useSystemSettingsStore()) const { scanState } = storeToRefs(useSystemSettingsStore())
//
const tip = ref(null) const tip = ref(null)
let details = reactive({ let details = reactive({
scancode: '', scancode: '',
pagetype: '', pagetype: '',
@ -287,11 +294,13 @@
// //
scancodeList: [] scancodeList: []
}) })
onLoad((op) => { onLoad((op) => {
details.pagetype = op.type details.pagetype = op.type
utils.ttsspke(`当前移库方式为${op.pageName}, 请先扫描库位码`) utils.ttsspke(`当前移库方式为${op.pageName}, 请先扫描库位码`)
}) })
onShow(() => { onShow(() => {
// #ifdef APP // #ifdef APP
uni.$off('scancodedate') uni.$off('scancodedate')
@ -347,44 +356,37 @@
}) })
console.log(details.codenumer); console.log(details.codenumer);
}) })
async function scandata() {
let res = null
// ,
if (!details.allocationId) {
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
let data = {
allocationId: details.scancode
}
res = await warehouseUpdownTypemoveAllocationScanTarget(data)
console.log('res1 :>> ', res);
if (res.code == 200) {
details.dtilobj = res.data
details.allocationId = res.data.allocationId
details.scancode = ''
if (details.pagetype === '1') {
if (details.dtilobj.trayCode) {
utils.ttsspke('该库位已绑托盘')
//
return uni.startPullDownRefresh({})
}
utils.ttsspke('扫描成功, 请扫描需要移动的托盘') /** 扫描库位 */
const scanStorage = async (scancode : string) => {
let data = {
allocationId: scancode
}
const res = await warehouseUpdownTypemoveAllocationScanTarget(data)
console.log('res1 :>> ', res);
if (res.code == 200) {
details.dtilobj = res.data
details.allocationId = res.data.allocationId
details.scancode = ''
if (details.pagetype === '1') {
if (details.dtilobj.trayCode) {
utils.ttsspke('该库位已绑托盘')
//
return uni.startPullDownRefresh({})
} }
else if (details.pagetype === '2') utils.ttsspke('扫描成功, 请扫描需要移动的包条')
utils.ttsspke('扫描成功, 请扫描需要移动的托盘')
} }
return else if (details.pagetype === '2') utils.ttsspke('扫描成功, 请扫描需要移动的包条')
} }
}
/** 扫描库位 */
const scanOther = async (scancode : string) => {
let res = null
// //
if (details.scancodeList.includes(details.scancode)) { if (details.scancodeList.includes(scancode)) {
// #ifdef APP // #ifdef APP
utils.ttsspke('重复扫描') utils.ttsspke('重复扫描')
// #endif // #endif
@ -394,17 +396,16 @@
}) })
return return
} }
details.scancodeList.push(details.scancode)
try { try {
if (details.pagetype == '1') { if (details.pagetype == '1') {
let data = { let data = {
trayCode: details.scancode, trayCode: scancode,
} }
res = await warehouseUpdownTypemoveAllocationScanTrayCode(data) res = await warehouseUpdownTypemoveAllocationScanTrayCode(data)
console.log('res :>> ', res); console.log('res :>> ', res);
if (res.code !== 200) return if (res.code !== 200) return
details.trayCode = details.scancode details.trayCode = scancode
details.scanlist = res.data.list details.scanlist = res.data.list
// #ifdef APP // #ifdef APP
utils.ttsspke('当前托盘' + details.scanlist.reduce((curr, item) => curr + item.shelfNum, 0) + '件') utils.ttsspke('当前托盘' + details.scanlist.reduce((curr, item) => curr + item.shelfNum, 0) + '件')
@ -413,7 +414,7 @@
} else if (details.pagetype == '2') { } else if (details.pagetype == '2') {
let data = { let data = {
allocationId: details.allocationId, allocationId: details.allocationId,
orderPackageCode: details.scancode, orderPackageCode: scancode,
} }
res = await warehouseUpdownTypemoveAllocationScanPackage(data) res = await warehouseUpdownTypemoveAllocationScanPackage(data)
console.log('res :>> ', res); console.log('res :>> ', res);
@ -425,11 +426,20 @@
// #endif // #endif
} }
} }
details.scancodeList.push(scancode)
} catch (err) { } catch (err) {
//TODO handle the exception //TODO handle the exception
console.log('err :>> ', err); console.log('err :>> ', err);
} }
} }
async function scandata() {
const { scancode } = details
if (HANDLE_ISSTORAGECODE(scancode)) return scanStorage(scancode)
else scanOther(scancode)
}
async function uplist() { async function uplist() {
let res = null let res = null
uni.showLoading({ uni.showLoading({
@ -506,7 +516,7 @@
} = toRefs(details) } = toRefs(details)
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.bgtps { .bgtps {
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;

221
pagesHome/pages/ScanUp/ScanUp.vue

@ -204,7 +204,9 @@
} from '@dcloudio/uni-app' } from '@dcloudio/uni-app'
import { inject, reactive, ref, toRefs, watchEffect } from "vue"; import { inject, reactive, ref, toRefs, watchEffect } from "vue";
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import useStorageStore from '@/store/useStorageStore';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
const { HANDLE_ISSTORAGECODE } = useStorageStore()
const { scanState } = storeToRefs(useSystemSettingsStore()) const { scanState } = storeToRefs(useSystemSettingsStore())
const utils = inject('utils') as any const utils = inject('utils') as any
const tip = ref(null) const tip = ref(null)
@ -230,6 +232,7 @@
details.uplistarr = fn2(details.uplistarr, 'orderCode') details.uplistarr = fn2(details.uplistarr, 'orderCode')
} }
}) })
onLoad((op) => { onLoad((op) => {
details.upshelfScanType = op.type details.upshelfScanType = op.type
@ -265,6 +268,7 @@
details.renderList = [] details.renderList = []
details.datalist = [] details.datalist = []
details.uplistarr = [] details.uplistarr = []
details.orderCodeArr = []
// //
uni.stopPullDownRefresh() uni.stopPullDownRefresh()
@ -272,106 +276,124 @@
}, 500) }, 500)
}) })
async function scandata() { /** 扫描库位 */
try{ const scanStorage = async (code) => {
uni.showLoading({
mask: true try {
}) let data = {
// idID allocationId: code,
if (!details.allocationId) { }
console.log('details.scancode[0] :>> ', details.scancode[0]);
if (details.scancode[0] === 'T') { let res = await warehouseUpdownTypeupShelfScanAllocation(data)
uni.showToast({
title: '请扫描库位码', if (res.code == 200) {
icon: 'none' details.reqobj = res.data
}) const _positionArr = details.reqobj.allocationTitle.split('-')
// #ifdef APP details.reqobj.positionInfo = _positionArr[0] + '层' + _positionArr[1] + '列'
utils.ttsspke('请扫描库位码') details.allocationId = res.data.allocationId
// #endif details.datalist = (res.data?.list) || []
return if (details.checkstate === 2) return details.renderList = details.datalist
} // if (details.upshelfScanType === '4') return utils.ttsspke('')
console.log('111 :>> ', 111); // utils.ttsspke('')
let data = { }
allocationId: details.scancode,
} } catch (err) {
let res = await warehouseUpdownTypeupShelfScanAllocation(data) console.log('err :>> ', err);
console.log(res); //TODO handle the exception
if (res.code == 200) { }
details.reqobj = res.data
const _positionArr = details.reqobj.allocationTitle.split('-') }
details.reqobj.positionInfo = _positionArr[0] + '层' + _positionArr[1] + '列'
details.allocationId = res.data.allocationId /** 扫描 - 包条 - 托盘 */
details.datalist = (res.data?.list) || [] const scanOther = async (_code : string) => {
if (details.checkstate === 2) return details.renderList = details.datalist try {
// if (details.upshelfScanType === '4') return utils.ttsspke('') if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) {
// utils.ttsspke('') // #ifdef APP
} utils.ttsspke('该库位已绑托盘')
} else { // #endif
if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) { return
}
if (details.upshelfScanType === '3') {
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === _code)
if (flag !== -1) {
// #ifdef APP // #ifdef APP
utils.ttsspke('该库位已绑托盘') utils.ttsspke('包件重复扫描')
// #endif // #endif
return return
} }
if (details.upshelfScanType === '3') { }
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === details.scancode)
if (flag !== -1) { let data = {
// #ifdef APP upshelfScanType: details.upshelfScanType,
utils.ttsspke('包件重复扫描') code: _code,
// #endif }
return
} let res = await warehouseUpdownTypeupShelfScanGoods(data)
}
if (res.code == 200) {
let data = { if (Number(details.upshelfScanType) !== 4) {
upshelfScanType: details.upshelfScanType, const _uplistarr = [...details.uplistarr]
code: details.scancode, const _orderCodeArr = [...details.orderCodeArr]
const _flag = res.data.every(val => {
if (details.orderCodeArr.includes(val.orderCode)) {
uni.showToast({
title: '订单已存在, 勿重复扫码',
icon: 'none'
})
return false
}
_uplistarr.push(val)
_orderCodeArr.push(val.orderCode)
return true
})
if (!_flag) return
details.uplistarr = _uplistarr
details.orderCodeArr = _orderCodeArr
} }
let res = await warehouseUpdownTypeupShelfScanGoods(data)
console.log('res>>>>>', res); else {
if (res.code == 200) { details.uplistarr = res.data
if (Number(details.upshelfScanType) !== 3) {
const _uplistarr = details.uplistarr
const _orderCodeArr = details.orderCodeArr
const _flag = res.data.every(val => {
if (details.orderCodeArr.includes(val.orderCode)) {
uni.showToast({
title: '订单已存在, 勿重复扫码',
icon: 'none'
})
return false
}
_uplistarr.push(val)
_orderCodeArr.push(val.orderCode)
return true
})
if (!_flag) return
details.uplistarr = _uplistarr
details.orderCodeArr = _orderCodeArr
}
else {
details.uplistarr = details.uplistarr.concat(res.data)
}
//
let _content = ''
if (details.upshelfScanType !== '3') _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + '件'
else _content = details.uplistarr.length + '件'
utils.ttsspke(_content)
if (details.checkstate === 1) return details.renderList = details.uplistarr
} else if (res.code === 3001 && res.audio) {
utils.ttsspke(res.audio)
} }
//
let _content = ''
if (details.upshelfScanType !== '3') _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + '件'
else _content = details.uplistarr.length + '件'
utils.ttsspke(_content)
if (details.checkstate === 1) return details.renderList = details.uplistarr
} else if (res.code === 3001 && res.audio) {
utils.ttsspke(res.audio)
} }
}catch(err){ } catch (err) {
console.log('err :>> ', err); console.log('err :>> ', err);
//TODO handle the exception //TODO handle the exception
}finally{
uni.hideLoading()
} }
} }
async function scandata() {
uni.showLoading({
mask: true
})
const code = details.scancode
/** 判断扫描是否为库位码 */
const isStorageCode = HANDLE_ISSTORAGECODE(code)
uni.hideLoading()
if (isStorageCode) return scanStorage(code)
else scanOther(code)
}
function goorderdetail(item, type) { function goorderdetail(item, type) {
// type // type
if (type !== 1) return if (type !== 1) return
@ -380,25 +402,24 @@
}) })
} }
function uplist() { function uplist() {
if (details.uplistarr.length == 0) { let content = ''
let content = '' if (details.allocationId === '') {
let msg = '' content = '请先扫描库位'
if (details.allocationId === '') { }
content = '请先扫描库位' else if (details.uplistarr.length === 0) {
msg = '请先扫描库位' if (Number(details.upshelfScanType) == 4) {
}
else if (Number(details.upshelfScanType) == 4) {
content = '请先扫描托盘码' content = '请先扫描托盘码'
msg = '请先扫描托盘码'
} else { } else {
content = '请先扫描包件数据' content = '请先扫描包件数据'
msg = '请先扫描包件'
} }
}
if (content) {
uni.showToast({ uni.showToast({
title: content, title: content,
icon: "none" icon: "none"
}) })
utils.ttsspke(msg) utils.ttsspke(content)
return return
} }
let _totalShelfNum = 0 let _totalShelfNum = 0

60
store/useStorageStore.js

@ -0,0 +1,60 @@
import {
defineStore
} from 'pinia';
import {
ref
} from 'vue';
import {
postFindAllAllocationId
} from '@/api/user.js';
const useStorageStore = defineStore('useStorageStore', () => {
/** 存储本仓库位信息 */
const storageArr = ref([])
/** 请求本仓库位信息 */
const HANDLE_GETSTORAGEINFO = async () => {
const response = await postFindAllAllocationId()
const {
code,
data
} = response
if (code !== 200) return
storageArr.value = data
}
/** 清空库位信息 */
const HANDLE_CLEARSTORAGE = () => {
storageArr.value.splice(0)
}
/**
* 检测是否为库位码
* @param {string} code 扫描的code码
* @return {boolean} 是否为库位码的判断
* */
const HANDLE_ISSTORAGECODE = (code) => {
let _flag = false
for (let item of storageArr.value) {
if ((item + '') === (code + '')) {
_flag = true
// 退出循环
break
}
}
return _flag
}
return {
storageArr,
HANDLE_GETSTORAGEINFO,
HANDLE_CLEARSTORAGE,
HANDLE_ISSTORAGECODE
}
})
export default useStorageStore

1437
unpackage/dist/dev/app-plus/app-service.js vendored

File diff suppressed because it is too large Load Diff

190
unpackage/dist/dev/app-plus/pagesHome/pages/Relocation/Relocation.css vendored

@ -225,7 +225,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
/* 垂直间距 */ /* 垂直间距 */
/* 透明度 */ /* 透明度 */
/* 文章场景相关 */ /* 文章场景相关 */
.bgtps { .bgtps[data-v-6e763ec5] {
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
position: fixed; position: fixed;
@ -237,7 +237,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.bgtps > .anjian { .bgtps > .anjian[data-v-6e763ec5] {
width: 20rem; width: 20rem;
background: #FFFFFF; background: #FFFFFF;
border-radius: 0.25rem; border-radius: 0.25rem;
@ -247,20 +247,20 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box; box-sizing: border-box;
padding: 0.78125rem 0.625rem; padding: 0.78125rem 0.625rem;
} }
.bgtps > .anjian > .titqr { .bgtps > .anjian > .titqr[data-v-6e763ec5] {
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
color: #092C4D; color: #092C4D;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.bgtps > .anjian > .contenbx { .bgtps > .anjian > .contenbx[data-v-6e763ec5] {
width: 18.125rem; width: 18.125rem;
display: flex; display: flex;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
margin-bottom: 0.625rem; margin-bottom: 0.625rem;
} }
.bgtps > .anjian > .contenbx .titypo { .bgtps > .anjian > .contenbx .titypo[data-v-6e763ec5] {
font-size: 0.9375rem; font-size: 0.9375rem;
width: 100%; width: 100%;
display: flex; display: flex;
@ -268,53 +268,53 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
justify-content: flex-start; justify-content: flex-start;
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
.bgtps > .anjian > .contenbx > .topbs1 { .bgtps > .anjian > .contenbx > .topbs1[data-v-6e763ec5] {
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.bgtps > .anjian > .contenbx > .topbs1:nth-last-child(1) { .bgtps > .anjian > .contenbx > .topbs1[data-v-6e763ec5]:nth-last-child(1) {
margin-bottom: 0; margin-bottom: 0;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(1) { .bgtps > .anjian > .contenbx > .topbs1 > uni-view[data-v-6e763ec5]:nth-of-type(1) {
width: 4.375rem; width: 4.375rem;
font-size: 0.9375rem; font-size: 0.9375rem;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) { .bgtps > .anjian > .contenbx > .topbs1 > uni-view[data-v-6e763ec5]:nth-of-type(2) {
display: flex; display: flex;
align-items: center; align-items: center;
flex: 1; flex: 1;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) { .bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view[data-v-6e763ec5]:nth-of-type(1) {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin-right: 0.625rem; margin-right: 0.625rem;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-image { .bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-image[data-v-6e763ec5] {
width: 2.25rem; width: 2.25rem;
height: 2.25rem; height: 2.25rem;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-view { .bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-view[data-v-6e763ec5] {
font-size: 0.75rem; font-size: 0.75rem;
font-weight: 400; font-weight: 400;
color: #90A0AF; color: #90A0AF;
} }
.bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(2) { .bgtps > .anjian > .contenbx > .topbs1 > uni-view:nth-of-type(2) > uni-view[data-v-6e763ec5]:nth-of-type(2) {
flex: 1; flex: 1;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.bgtps > .anjian .btbox { .bgtps > .anjian .btbox[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-top: 0.625rem; margin-top: 0.625rem;
} }
.bgtps > .anjian .btbox > uni-view { .bgtps > .anjian .btbox > uni-view[data-v-6e763ec5] {
width: 8.125rem; width: 8.125rem;
height: 2.75rem; height: 2.75rem;
border-radius: 0.25rem; border-radius: 0.25rem;
@ -324,16 +324,16 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box; box-sizing: border-box;
font-size: 1rem; font-size: 1rem;
} }
.bgtps > .anjian .btbox > uni-view:nth-of-type(1) { .bgtps > .anjian .btbox > uni-view[data-v-6e763ec5]:nth-of-type(1) {
background-color: #F5F5F6; background-color: #F5F5F6;
color: #5A6875; color: #5A6875;
} }
.bgtps > .anjian .btbox > uni-view:nth-of-type(2) { .bgtps > .anjian .btbox > uni-view[data-v-6e763ec5]:nth-of-type(2) {
background-color: #D3832A; background-color: #D3832A;
color: #FFFFFF; color: #FFFFFF;
margin-left: 0.625rem; margin-left: 0.625rem;
} }
.bgtps > .trary { .bgtps > .trary[data-v-6e763ec5] {
width: 20rem; width: 20rem;
background: #FFFFFF; background: #FFFFFF;
border-radius: 0.25rem; border-radius: 0.25rem;
@ -343,65 +343,65 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center; align-items: center;
box-sizing: border-box; box-sizing: border-box;
} }
.bgtps > .trary > .titqr { .bgtps > .trary > .titqr[data-v-6e763ec5] {
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
color: #092C4D; color: #092C4D;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.bgtps > .trary .contenbox { .bgtps > .trary .contenbox[data-v-6e763ec5] {
width: 18.125rem; width: 18.125rem;
display: flex; display: flex;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
margin-bottom: 0.625rem; margin-bottom: 0.625rem;
} }
.bgtps > .trary .contenbox > .topbs1 { .bgtps > .trary .contenbox > .topbs1[data-v-6e763ec5] {
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.bgtps > .trary .contenbox > .topbs1:nth-last-child(1) { .bgtps > .trary .contenbox > .topbs1[data-v-6e763ec5]:nth-last-child(1) {
margin-bottom: 0; margin-bottom: 0;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(1) { .bgtps > .trary .contenbox > .topbs1 > uni-view[data-v-6e763ec5]:nth-of-type(1) {
width: 4.375rem; width: 4.375rem;
font-size: 0.9375rem; font-size: 0.9375rem;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) { .bgtps > .trary .contenbox > .topbs1 > uni-view[data-v-6e763ec5]:nth-of-type(2) {
display: flex; display: flex;
align-items: center; align-items: center;
flex: 1; flex: 1;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) { .bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view[data-v-6e763ec5]:nth-of-type(1) {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin-right: 0.625rem; margin-right: 0.625rem;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-image { .bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-image[data-v-6e763ec5] {
width: 2.25rem; width: 2.25rem;
height: 2.25rem; height: 2.25rem;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-view { .bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(1) > uni-view[data-v-6e763ec5] {
font-size: 0.75rem; font-size: 0.75rem;
font-weight: 400; font-weight: 400;
color: #90A0AF; color: #90A0AF;
} }
.bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view:nth-of-type(2) { .bgtps > .trary .contenbox > .topbs1 > uni-view:nth-of-type(2) > uni-view[data-v-6e763ec5]:nth-of-type(2) {
flex: 1; flex: 1;
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.bgtps > .trary .btbox { .bgtps > .trary .btbox[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-top: 0.625rem; margin-top: 0.625rem;
} }
.bgtps > .trary .btbox > uni-view { .bgtps > .trary .btbox > uni-view[data-v-6e763ec5] {
width: 8.125rem; width: 8.125rem;
height: 2.75rem; height: 2.75rem;
border-radius: 0.25rem; border-radius: 0.25rem;
@ -411,16 +411,16 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box; box-sizing: border-box;
font-size: 1rem; font-size: 1rem;
} }
.bgtps > .trary .btbox > uni-view:nth-of-type(1) { .bgtps > .trary .btbox > uni-view[data-v-6e763ec5]:nth-of-type(1) {
background-color: #F5F5F6; background-color: #F5F5F6;
color: #5A6875; color: #5A6875;
} }
.bgtps > .trary .btbox > uni-view:nth-of-type(2) { .bgtps > .trary .btbox > uni-view[data-v-6e763ec5]:nth-of-type(2) {
background-color: #D3832A; background-color: #D3832A;
color: #FFFFFF; color: #FFFFFF;
margin-left: 0.625rem; margin-left: 0.625rem;
} }
.tuopanview { .tuopanview[data-v-6e763ec5] {
position: relative; position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -432,27 +432,27 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
padding: 0.9375rem 0.75rem; padding: 0.9375rem 0.75rem;
box-sizing: border-box; box-sizing: border-box;
} }
.tuopanview > uni-view { .tuopanview > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.tuopanview > uni-view:nth-of-type(1) { .tuopanview > uni-view[data-v-6e763ec5]:nth-of-type(1) {
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.tuopanview > uni-view:nth-of-type(2) { .tuopanview > uni-view[data-v-6e763ec5]:nth-of-type(2) {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
} }
.butbox { .butbox[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-top: 0.46875rem; margin-top: 0.46875rem;
font-size: 1rem; font-size: 1rem;
} }
.butbox > uni-view:nth-of-type(1) { .butbox > uni-view[data-v-6e763ec5]:nth-of-type(1) {
width: 10rem; width: 10rem;
height: 3.125rem; height: 3.125rem;
background: #FFFFFF; background: #FFFFFF;
@ -464,7 +464,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
} }
.butbox > uni-view:nth-of-type(2) { .butbox > uni-view[data-v-6e763ec5]:nth-of-type(2) {
width: 10rem; width: 10rem;
height: 3.125rem; height: 3.125rem;
background: #D3832A; background: #D3832A;
@ -478,19 +478,19 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #FFFFFF; color: #FFFFFF;
margin-left: 0.625rem; margin-left: 0.625rem;
} }
.sclcs { .sclcs[data-v-6e763ec5] {
width: 21.4375rem; width: 21.4375rem;
height: 40vh; height: 40vh;
margin: auto; margin: auto;
margin-top: 0.625rem; margin-top: 0.625rem;
} }
.sclcs .visc { .sclcs .visc[data-v-6e763ec5] {
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.sclcs .visc .item1 { .sclcs .visc .item1[data-v-6e763ec5] {
width: 21.4375rem; width: 21.4375rem;
padding: 0 0.75rem; padding: 0 0.75rem;
box-sizing: border-box; box-sizing: border-box;
@ -499,21 +499,21 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
position: relative; position: relative;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.sclcs .visc .item1:nth-last-child(1) { .sclcs .visc .item1[data-v-6e763ec5]:nth-last-child(1) {
margin-bottom: 0; margin-bottom: 0;
} }
.sclcs .visc .item1 .removeicons { .sclcs .visc .item1 .removeicons[data-v-6e763ec5] {
position: absolute; position: absolute;
right: 0; right: 0;
} }
.sclcs .visc .item1 .qtimgzt { .sclcs .visc .item1 .qtimgzt[data-v-6e763ec5] {
width: 3rem; width: 3rem;
height: 3rem; height: 3rem;
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
} }
.sclcs .visc .item1 > uni-view { .sclcs .visc .item1 > uni-view[data-v-6e763ec5] {
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
@ -521,26 +521,26 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box; box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE; border-bottom: 0.125rem solid #EEEEEE;
} }
.sclcs .visc .item1 > uni-view:nth-last-child(1) { .sclcs .visc .item1 > uni-view[data-v-6e763ec5]:nth-last-child(1) {
border-bottom: 0 solid #EEEEEE00 !important; border-bottom: 0 solid #EEEEEE00 !important;
} }
.sclcs .visc .item1 > uni-view > uni-image { .sclcs .visc .item1 > uni-view > uni-image[data-v-6e763ec5] {
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-right: 0.46875rem; margin-right: 0.46875rem;
} }
.sclcs .visc .item1 > uni-view > uni-view { .sclcs .visc .item1 > uni-view > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
word-wrap: break-word; word-wrap: break-word;
word-break: break-all; word-break: break-all;
} }
.sclcs .visc .item1 > uni-view > uni-view .numb { .sclcs .visc .item1 > uni-view > uni-view .numb[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
color: #178AF2; color: #178AF2;
} }
.sclcs .visc .item2 { .sclcs .visc .item2[data-v-6e763ec5] {
width: 21.4375rem; width: 21.4375rem;
margin: auto; margin: auto;
padding: 0 0.75rem; padding: 0 0.75rem;
@ -550,25 +550,25 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
position: relative; position: relative;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.sclcs .visc .item2 .qtimgzt { .sclcs .visc .item2 .qtimgzt[data-v-6e763ec5] {
width: 3rem; width: 3rem;
height: 3rem; height: 3rem;
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
} }
.sclcs .visc .item2 > .viewnum { .sclcs .visc .item2 > .viewnum[data-v-6e763ec5] {
height: 3.125rem; height: 3.125rem;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
} }
.sclcs .visc .item2 > .viewnum > uni-view { .sclcs .visc .item2 > .viewnum > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.sclcs .visc .item2 { .sclcs .visc .item2[data-v-6e763ec5] {
width: 21.4375rem; width: 21.4375rem;
padding: 0 0.75rem; padding: 0 0.75rem;
box-sizing: border-box; box-sizing: border-box;
@ -577,61 +577,61 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
position: relative; position: relative;
margin-bottom: 0.9375rem; margin-bottom: 0.9375rem;
} }
.sclcs .visc .item2 > .tpbx { .sclcs .visc .item2 > .tpbx[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0.5625rem 0.75rem; padding: 0.5625rem 0.75rem;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE; border-bottom: 0.125rem solid #EEEEEE;
} }
.sclcs .visc .item2 > .tpbx > uni-image { .sclcs .visc .item2 > .tpbx > uni-image[data-v-6e763ec5] {
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-right: 0.46875rem; margin-right: 0.46875rem;
} }
.sclcs .visc .item2 > .tpbx > uni-view { .sclcs .visc .item2 > .tpbx > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.sclcs .visc .item2 > .tpbx > uni-view .numb { .sclcs .visc .item2 > .tpbx > uni-view .numb[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
color: #178AF2; color: #178AF2;
} }
.sclcs .visc .item2 > .viewnum { .sclcs .visc .item2 > .viewnum[data-v-6e763ec5] {
height: 3.125rem; height: 3.125rem;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
} }
.sclcs .visc .item2 > .viewnum > uni-view { .sclcs .visc .item2 > .viewnum > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.sclcs .visc .tpbx { .sclcs .visc .tpbx[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0.5625rem 0.75rem; padding: 0.5625rem 0.75rem;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE; border-bottom: 0.125rem solid #EEEEEE;
} }
.sclcs .visc .tpbx > uni-image { .sclcs .visc .tpbx > uni-image[data-v-6e763ec5] {
flex: none; flex: none;
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-right: 0.46875rem; margin-right: 0.46875rem;
} }
.sclcs .visc .tpbx > uni-view { .sclcs .visc .tpbx > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.sclcs .visc .tpbx > uni-view .numb { .sclcs .visc .tpbx > uni-view .numb[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
color: #178AF2; color: #178AF2;
} }
.tabchecklist { .tabchecklist[data-v-6e763ec5] {
width: 21.375rem; width: 21.375rem;
height: 3.125rem; height: 3.125rem;
margin: auto; margin: auto;
@ -642,32 +642,32 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
} }
.tabchecklist .xz > uni-view:nth-of-type(1) { .tabchecklist .xz > uni-view[data-v-6e763ec5]:nth-of-type(1) {
color: #D3832A !important; color: #D3832A !important;
} }
.tabchecklist .xz > uni-view:nth-of-type(2) { .tabchecklist .xz > uni-view[data-v-6e763ec5]:nth-of-type(2) {
background-color: #D3832A !important; background-color: #D3832A !important;
} }
.tabchecklist > uni-view { .tabchecklist > uni-view[data-v-6e763ec5] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.tabchecklist > uni-view > uni-view:nth-of-type(1) { .tabchecklist > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(1) {
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
margin-bottom: 0.625rem; margin-bottom: 0.625rem;
color: #020B18; color: #020B18;
transition: all 0.2s; transition: all 0.2s;
} }
.tabchecklist > uni-view > uni-view:nth-of-type(2) { .tabchecklist > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(2) {
width: 3rem; width: 3rem;
height: 0.25rem; height: 0.25rem;
background-color: #D3832A00; background-color: #D3832A00;
border-radius: 0.125rem; border-radius: 0.125rem;
transition: all 0.2s; transition: all 0.2s;
} }
.topviewbox { .topviewbox[data-v-6e763ec5] {
width: 21.4375rem; width: 21.4375rem;
background: #FFFFFF; background: #FFFFFF;
border-radius: 0.625rem 0.625rem 0.625rem 0.625rem; border-radius: 0.625rem 0.625rem 0.625rem 0.625rem;
@ -677,7 +677,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
margin: auto; margin: auto;
margin-top: 0.625rem; margin-top: 0.625rem;
} }
.topviewbox > .oebox { .topviewbox > .oebox[data-v-6e763ec5] {
padding: 0.625rem 0.78125rem; padding: 0.625rem 0.78125rem;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE; border-bottom: 0.125rem solid #EEEEEE;
@ -685,22 +685,22 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
} }
.topviewbox > .oebox > uni-view { .topviewbox > .oebox > uni-view[data-v-6e763ec5] {
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.topviewbox > .oebox > uni-image { .topviewbox > .oebox > uni-image[data-v-6e763ec5] {
width: 1rem; width: 1rem;
height: 1rem; height: 1rem;
margin-right: 0.4375rem; margin-right: 0.4375rem;
} }
.topviewbox .numbox { .topviewbox .numbox[data-v-6e763ec5] {
width: 100%; width: 100%;
padding: 0.625rem; padding: 0.625rem;
box-sizing: border-box; box-sizing: border-box;
} }
.topviewbox .numbox > uni-view { .topviewbox .numbox > uni-view[data-v-6e763ec5] {
width: 20rem; width: 20rem;
height: 5rem; height: 5rem;
background: #F5F7FB; background: #F5F7FB;
@ -710,44 +710,44 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
} }
.topviewbox .numbox > uni-view > uni-view { .topviewbox .numbox > uni-view > uni-view[data-v-6e763ec5] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.topviewbox .numbox > uni-view > uni-view:nth-of-type(1) > uni-view:nth-of-type(2) { .topviewbox .numbox > uni-view > uni-view:nth-of-type(1) > uni-view[data-v-6e763ec5]:nth-of-type(2) {
color: #FF9545 !important; color: #FF9545 !important;
} }
.topviewbox .numbox > uni-view > uni-view:nth-of-type(2) > uni-view:nth-of-type(2) { .topviewbox .numbox > uni-view > uni-view:nth-of-type(2) > uni-view[data-v-6e763ec5]:nth-of-type(2) {
color: #178AF2 !important; color: #178AF2 !important;
} }
.topviewbox .numbox > uni-view > uni-view > uni-view:nth-of-type(1) { .topviewbox .numbox > uni-view > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(1) {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
margin-bottom: 0.5625rem; margin-bottom: 0.5625rem;
} }
.topviewbox .numbox > uni-view > uni-view > uni-view:nth-of-type(2) { .topviewbox .numbox > uni-view > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(2) {
font-size: 1.125rem; font-size: 1.125rem;
font-weight: 400; font-weight: 400;
} }
.topviewbox > .contview { .topviewbox > .contview[data-v-6e763ec5] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 100%; width: 100%;
padding: 0.625rem; padding: 0.625rem;
box-sizing: border-box; box-sizing: border-box;
} }
.topviewbox > .contview > uni-view { .topviewbox > .contview > uni-view[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
margin-bottom: 0.625rem; margin-bottom: 0.625rem;
} }
.topviewbox > .contview > uni-view:nth-last-child(1) { .topviewbox > .contview > uni-view[data-v-6e763ec5]:nth-last-child(1) {
margin-bottom: 0; margin-bottom: 0;
} }
.topviewbox > .contview > uni-view > uni-view:nth-of-type(1) { .topviewbox > .contview > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(1) {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
@ -758,25 +758,25 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
} }
.topviewbox > .contview > uni-view > uni-view:nth-of-type(1) > uni-view { .topviewbox > .contview > uni-view > uni-view:nth-of-type(1) > uni-view[data-v-6e763ec5] {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.topviewbox > .contview > uni-view > uni-view:nth-of-type(2) { .topviewbox > .contview > uni-view > uni-view[data-v-6e763ec5]:nth-of-type(2) {
font-size: 0.875rem; font-size: 0.875rem;
font-weight: 400; font-weight: 400;
color: #020B18; color: #020B18;
} }
.topviewbox > .contview > uni-view > uni-view:nth-of-type(2) > uni-input { .topviewbox > .contview > uni-view > uni-view:nth-of-type(2) > uni-input[data-v-6e763ec5] {
flex: 1; flex: 1;
} }
.topviewbox > .contview > uni-view .btm { .topviewbox > .contview > uni-view .btm[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
} }
.topviewbox > .contview > uni-view .btm > uni-view { .topviewbox > .contview > uni-view .btm > uni-view[data-v-6e763ec5] {
width: 3.75rem; width: 3.75rem;
height: 1.875rem; height: 1.875rem;
background: #D3832A; background: #D3832A;
@ -790,25 +790,25 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #FFFFFF; color: #FFFFFF;
margin-left: 0.625rem; margin-left: 0.625rem;
} }
.bgimg { .bgimg[data-v-6e763ec5] {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
width: 100%; width: 100%;
} }
.scanqcview { .scanqcview[data-v-6e763ec5] {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
position: relative; position: relative;
margin-top: 0.3125rem; margin-top: 0.3125rem;
} }
.scanqcview > uni-image { .scanqcview > uni-image[data-v-6e763ec5] {
width: 2.25rem; width: 2.25rem;
height: 2.25rem; height: 2.25rem;
margin-right: 0.5rem; margin-right: 0.5rem;
} }
.scanqcview > uni-view { .scanqcview > uni-view[data-v-6e763ec5] {
font-size: 1rem; font-size: 1rem;
font-weight: 400; font-weight: 400;
color: #FFFFFF; color: #FFFFFF;

Loading…
Cancel
Save