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 Tabber from '@/compoment/Tabber/Tabber.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)
// let details = reactive<listtype>({ tablist: [] });
let details = reactive<listtype>({
@ -340,9 +349,12 @@
// #endif
init()
//
initbuts()
// print()
//
if (storageArr.value.length === 0) HANDLE_GETSTORAGEINFO()
})
onLoad(() => {

4
pages/login/login.vue

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

5
pagesHome/pages/DownGoods/DownGoods.vue

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

14
pagesHome/pages/PeopleScanUp/PeopleScanUp.vue

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

86
pagesHome/pages/Relocation/Relocation.vue

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

221
pagesHome/pages/ScanUp/ScanUp.vue

@ -204,7 +204,9 @@
} from '@dcloudio/uni-app'
import { inject, reactive, ref, toRefs, watchEffect } from "vue";
import useSystemSettingsStore from '@/store/useSystemSettingsStore';
import useStorageStore from '@/store/useStorageStore';
import { storeToRefs } from 'pinia';
const { HANDLE_ISSTORAGECODE } = useStorageStore()
const { scanState } = storeToRefs(useSystemSettingsStore())
const utils = inject('utils') as any
const tip = ref(null)
@ -230,6 +232,7 @@
details.uplistarr = fn2(details.uplistarr, 'orderCode')
}
})
onLoad((op) => {
details.upshelfScanType = op.type
@ -265,6 +268,7 @@
details.renderList = []
details.datalist = []
details.uplistarr = []
details.orderCodeArr = []
//
uni.stopPullDownRefresh()
@ -272,106 +276,124 @@
}, 500)
})
async function scandata() {
try{
uni.showLoading({
mask: true
})
// idID
if (!details.allocationId) {
console.log('details.scancode[0] :>> ', details.scancode[0]);
if (details.scancode[0] === 'T') {
uni.showToast({
title: '请扫描库位码',
icon: 'none'
})
// #ifdef APP
utils.ttsspke('请扫描库位码')
// #endif
return
}
console.log('111 :>> ', 111);
let data = {
allocationId: details.scancode,
}
let res = await warehouseUpdownTypeupShelfScanAllocation(data)
console.log(res);
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) || []
if (details.checkstate === 2) return details.renderList = details.datalist
// if (details.upshelfScanType === '4') return utils.ttsspke('')
// utils.ttsspke('')
}
} else {
if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) {
/** 扫描库位 */
const scanStorage = async (code) => {
try {
let data = {
allocationId: code,
}
let res = await warehouseUpdownTypeupShelfScanAllocation(data)
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) || []
if (details.checkstate === 2) return details.renderList = details.datalist
// if (details.upshelfScanType === '4') return utils.ttsspke('')
// utils.ttsspke('')
}
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
}
}
/** 扫描 - 包条 - 托盘 */
const scanOther = async (_code : string) => {
try {
if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) {
// #ifdef APP
utils.ttsspke('该库位已绑托盘')
// #endif
return
}
if (details.upshelfScanType === '3') {
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === _code)
if (flag !== -1) {
// #ifdef APP
utils.ttsspke('该库位已绑托盘')
utils.ttsspke('包件重复扫描')
// #endif
return
}
if (details.upshelfScanType === '3') {
const flag = details.uplistarr.findIndex(val => val.orderPackageCode === details.scancode)
if (flag !== -1) {
// #ifdef APP
utils.ttsspke('包件重复扫描')
// #endif
return
}
}
let data = {
upshelfScanType: details.upshelfScanType,
code: details.scancode,
}
let data = {
upshelfScanType: details.upshelfScanType,
code: _code,
}
let res = await warehouseUpdownTypeupShelfScanGoods(data)
if (res.code == 200) {
if (Number(details.upshelfScanType) !== 4) {
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
}
let res = await warehouseUpdownTypeupShelfScanGoods(data)
console.log('res>>>>>', res);
if (res.code == 200) {
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)
else {
details.uplistarr = 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)
}
}catch(err){
} catch (err) {
console.log('err :>> ', err);
//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) {
// type
if (type !== 1) return
@ -380,25 +402,24 @@
})
}
function uplist() {
if (details.uplistarr.length == 0) {
let content = ''
let msg = ''
if (details.allocationId === '') {
content = '请先扫描库位'
msg = '请先扫描库位'
}
else if (Number(details.upshelfScanType) == 4) {
let content = ''
if (details.allocationId === '') {
content = '请先扫描库位'
}
else if (details.uplistarr.length === 0) {
if (Number(details.upshelfScanType) == 4) {
content = '请先扫描托盘码'
msg = '请先扫描托盘码'
} else {
content = '请先扫描包件数据'
msg = '请先扫描包件'
}
}
if (content) {
uni.showToast({
title: content,
icon: "none"
})
utils.ttsspke(msg)
utils.ttsspke(content)
return
}
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;
height: 100vh;
position: fixed;
@ -237,7 +237,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center;
justify-content: center;
}
.bgtps > .anjian {
.bgtps > .anjian[data-v-6e763ec5] {
width: 20rem;
background: #FFFFFF;
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;
padding: 0.78125rem 0.625rem;
}
.bgtps > .anjian > .titqr {
.bgtps > .anjian > .titqr[data-v-6e763ec5] {
font-size: 1rem;
font-weight: 400;
color: #092C4D;
margin-bottom: 0.9375rem;
}
.bgtps > .anjian > .contenbx {
.bgtps > .anjian > .contenbx[data-v-6e763ec5] {
width: 18.125rem;
display: flex;
align-items: center;
flex-direction: column;
margin-bottom: 0.625rem;
}
.bgtps > .anjian > .contenbx .titypo {
.bgtps > .anjian > .contenbx .titypo[data-v-6e763ec5] {
font-size: 0.9375rem;
width: 100%;
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;
margin-bottom: 1.25rem;
}
.bgtps > .anjian > .contenbx > .topbs1 {
.bgtps > .anjian > .contenbx > .topbs1[data-v-6e763ec5] {
width: 100%;
display: flex;
align-items: center;
justify-content: flex-start;
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;
}
.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;
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;
align-items: center;
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;
flex-direction: column;
align-items: center;
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;
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-weight: 400;
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;
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.bgtps > .anjian .btbox {
.bgtps > .anjian .btbox[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.625rem;
}
.bgtps > .anjian .btbox > uni-view {
.bgtps > .anjian .btbox > uni-view[data-v-6e763ec5] {
width: 8.125rem;
height: 2.75rem;
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;
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;
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;
color: #FFFFFF;
margin-left: 0.625rem;
}
.bgtps > .trary {
.bgtps > .trary[data-v-6e763ec5] {
width: 20rem;
background: #FFFFFF;
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;
box-sizing: border-box;
}
.bgtps > .trary > .titqr {
.bgtps > .trary > .titqr[data-v-6e763ec5] {
font-size: 1rem;
font-weight: 400;
color: #092C4D;
margin-bottom: 0.9375rem;
}
.bgtps > .trary .contenbox {
.bgtps > .trary .contenbox[data-v-6e763ec5] {
width: 18.125rem;
display: flex;
align-items: center;
flex-direction: column;
margin-bottom: 0.625rem;
}
.bgtps > .trary .contenbox > .topbs1 {
.bgtps > .trary .contenbox > .topbs1[data-v-6e763ec5] {
width: 100%;
display: flex;
align-items: center;
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;
}
.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;
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;
align-items: center;
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;
flex-direction: column;
align-items: center;
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;
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-weight: 400;
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;
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.bgtps > .trary .btbox {
.bgtps > .trary .btbox[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.625rem;
}
.bgtps > .trary .btbox > uni-view {
.bgtps > .trary .btbox > uni-view[data-v-6e763ec5] {
width: 8.125rem;
height: 2.75rem;
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;
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;
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;
color: #FFFFFF;
margin-left: 0.625rem;
}
.tuopanview {
.tuopanview[data-v-6e763ec5] {
position: relative;
display: flex;
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;
box-sizing: border-box;
}
.tuopanview > uni-view {
.tuopanview > uni-view[data-v-6e763ec5] {
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.tuopanview > uni-view:nth-of-type(1) {
.tuopanview > uni-view[data-v-6e763ec5]:nth-of-type(1) {
margin-bottom: 0.9375rem;
}
.tuopanview > uni-view:nth-of-type(2) {
.tuopanview > uni-view[data-v-6e763ec5]:nth-of-type(2) {
display: flex;
align-items: center;
justify-content: space-between;
}
.butbox {
.butbox[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: center;
margin-top: 0.46875rem;
font-size: 1rem;
}
.butbox > uni-view:nth-of-type(1) {
.butbox > uni-view[data-v-6e763ec5]:nth-of-type(1) {
width: 10rem;
height: 3.125rem;
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-weight: 400;
}
.butbox > uni-view:nth-of-type(2) {
.butbox > uni-view[data-v-6e763ec5]:nth-of-type(2) {
width: 10rem;
height: 3.125rem;
background: #D3832A;
@ -478,19 +478,19 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #FFFFFF;
margin-left: 0.625rem;
}
.sclcs {
.sclcs[data-v-6e763ec5] {
width: 21.4375rem;
height: 40vh;
margin: auto;
margin-top: 0.625rem;
}
.sclcs .visc {
.sclcs .visc[data-v-6e763ec5] {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.sclcs .visc .item1 {
.sclcs .visc .item1[data-v-6e763ec5] {
width: 21.4375rem;
padding: 0 0.75rem;
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;
margin-bottom: 0.9375rem;
}
.sclcs .visc .item1:nth-last-child(1) {
.sclcs .visc .item1[data-v-6e763ec5]:nth-last-child(1) {
margin-bottom: 0;
}
.sclcs .visc .item1 .removeicons {
.sclcs .visc .item1 .removeicons[data-v-6e763ec5] {
position: absolute;
right: 0;
}
.sclcs .visc .item1 .qtimgzt {
.sclcs .visc .item1 .qtimgzt[data-v-6e763ec5] {
width: 3rem;
height: 3rem;
position: absolute;
right: 0;
top: 0;
}
.sclcs .visc .item1 > uni-view {
.sclcs .visc .item1 > uni-view[data-v-6e763ec5] {
width: 100%;
display: flex;
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;
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;
}
.sclcs .visc .item1 > uni-view > uni-image {
.sclcs .visc .item1 > uni-view > uni-image[data-v-6e763ec5] {
width: 1rem;
height: 1rem;
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-weight: 400;
color: #020B18;
word-wrap: break-word;
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;
color: #178AF2;
}
.sclcs .visc .item2 {
.sclcs .visc .item2[data-v-6e763ec5] {
width: 21.4375rem;
margin: auto;
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;
margin-bottom: 0.9375rem;
}
.sclcs .visc .item2 .qtimgzt {
.sclcs .visc .item2 .qtimgzt[data-v-6e763ec5] {
width: 3rem;
height: 3rem;
position: absolute;
right: 0;
top: 0;
}
.sclcs .visc .item2 > .viewnum {
.sclcs .visc .item2 > .viewnum[data-v-6e763ec5] {
height: 3.125rem;
display: flex;
align-items: center;
justify-content: space-around;
}
.sclcs .visc .item2 > .viewnum > uni-view {
.sclcs .visc .item2 > .viewnum > uni-view[data-v-6e763ec5] {
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.sclcs .visc .item2 {
.sclcs .visc .item2[data-v-6e763ec5] {
width: 21.4375rem;
padding: 0 0.75rem;
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;
margin-bottom: 0.9375rem;
}
.sclcs .visc .item2 > .tpbx {
.sclcs .visc .item2 > .tpbx[data-v-6e763ec5] {
display: flex;
align-items: center;
padding: 0.5625rem 0.75rem;
box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE;
}
.sclcs .visc .item2 > .tpbx > uni-image {
.sclcs .visc .item2 > .tpbx > uni-image[data-v-6e763ec5] {
width: 1rem;
height: 1rem;
margin-right: 0.46875rem;
}
.sclcs .visc .item2 > .tpbx > uni-view {
.sclcs .visc .item2 > .tpbx > uni-view[data-v-6e763ec5] {
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.sclcs .visc .item2 > .tpbx > uni-view .numb {
.sclcs .visc .item2 > .tpbx > uni-view .numb[data-v-6e763ec5] {
font-size: 0.875rem;
color: #178AF2;
}
.sclcs .visc .item2 > .viewnum {
.sclcs .visc .item2 > .viewnum[data-v-6e763ec5] {
height: 3.125rem;
display: flex;
align-items: center;
justify-content: space-around;
}
.sclcs .visc .item2 > .viewnum > uni-view {
.sclcs .visc .item2 > .viewnum > uni-view[data-v-6e763ec5] {
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.sclcs .visc .tpbx {
.sclcs .visc .tpbx[data-v-6e763ec5] {
display: flex;
align-items: center;
padding: 0.5625rem 0.75rem;
box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE;
}
.sclcs .visc .tpbx > uni-image {
.sclcs .visc .tpbx > uni-image[data-v-6e763ec5] {
flex: none;
width: 1rem;
height: 1rem;
margin-right: 0.46875rem;
}
.sclcs .visc .tpbx > uni-view {
.sclcs .visc .tpbx > uni-view[data-v-6e763ec5] {
font-size: 0.875rem;
font-weight: 400;
color: #020B18;
}
.sclcs .visc .tpbx > uni-view .numb {
.sclcs .visc .tpbx > uni-view .numb[data-v-6e763ec5] {
font-size: 0.875rem;
color: #178AF2;
}
.tabchecklist {
.tabchecklist[data-v-6e763ec5] {
width: 21.375rem;
height: 3.125rem;
margin: auto;
@ -642,32 +642,32 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center;
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;
}
.tabchecklist .xz > uni-view:nth-of-type(2) {
.tabchecklist .xz > uni-view[data-v-6e763ec5]:nth-of-type(2) {
background-color: #D3832A !important;
}
.tabchecklist > uni-view {
.tabchecklist > uni-view[data-v-6e763ec5] {
display: flex;
flex-direction: column;
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-weight: 400;
margin-bottom: 0.625rem;
color: #020B18;
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;
height: 0.25rem;
background-color: #D3832A00;
border-radius: 0.125rem;
transition: all 0.2s;
}
.topviewbox {
.topviewbox[data-v-6e763ec5] {
width: 21.4375rem;
background: #FFFFFF;
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-top: 0.625rem;
}
.topviewbox > .oebox {
.topviewbox > .oebox[data-v-6e763ec5] {
padding: 0.625rem 0.78125rem;
box-sizing: border-box;
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;
justify-content: flex-start;
}
.topviewbox > .oebox > uni-view {
.topviewbox > .oebox > uni-view[data-v-6e763ec5] {
font-size: 1rem;
font-weight: 400;
color: #020B18;
}
.topviewbox > .oebox > uni-image {
.topviewbox > .oebox > uni-image[data-v-6e763ec5] {
width: 1rem;
height: 1rem;
margin-right: 0.4375rem;
}
.topviewbox .numbox {
.topviewbox .numbox[data-v-6e763ec5] {
width: 100%;
padding: 0.625rem;
box-sizing: border-box;
}
.topviewbox .numbox > uni-view {
.topviewbox .numbox > uni-view[data-v-6e763ec5] {
width: 20rem;
height: 5rem;
background: #F5F7FB;
@ -710,44 +710,44 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
align-items: center;
justify-content: space-around;
}
.topviewbox .numbox > uni-view > uni-view {
.topviewbox .numbox > uni-view > uni-view[data-v-6e763ec5] {
display: flex;
flex-direction: column;
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;
}
.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;
}
.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-weight: 400;
color: #020B18;
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-weight: 400;
}
.topviewbox > .contview {
.topviewbox > .contview[data-v-6e763ec5] {
display: flex;
flex-direction: column;
width: 100%;
padding: 0.625rem;
box-sizing: border-box;
}
.topviewbox > .contview > uni-view {
.topviewbox > .contview > uni-view[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: flex-start;
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;
}
.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;
align-items: center;
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-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-weight: 400;
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-weight: 400;
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;
}
.topviewbox > .contview > uni-view .btm {
.topviewbox > .contview > uni-view .btm[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: space-between;
}
.topviewbox > .contview > uni-view .btm > uni-view {
.topviewbox > .contview > uni-view .btm > uni-view[data-v-6e763ec5] {
width: 3.75rem;
height: 1.875rem;
background: #D3832A;
@ -790,25 +790,25 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #FFFFFF;
margin-left: 0.625rem;
}
.bgimg {
.bgimg[data-v-6e763ec5] {
position: absolute;
left: 0;
top: 0;
width: 100%;
}
.scanqcview {
.scanqcview[data-v-6e763ec5] {
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-top: 0.3125rem;
}
.scanqcview > uni-image {
.scanqcview > uni-image[data-v-6e763ec5] {
width: 2.25rem;
height: 2.25rem;
margin-right: 0.5rem;
}
.scanqcview > uni-view {
.scanqcview > uni-view[data-v-6e763ec5] {
font-size: 1rem;
font-weight: 400;
color: #FFFFFF;

Loading…
Cancel
Save