This commit is contained in:
aihe 2024-12-08 11:37:07 +08:00
parent 359c1f29e2
commit 24f8db07af
2 changed files with 9 additions and 2 deletions

View File

@ -29,7 +29,7 @@
<tpx-select v-model:value="modelInfo.unit" :list="goodNumUnitList"
mode="drop" :dropRightWidth="300"
>
<u-row custom-style="gap: 20rpx;margin-top:10rpx;" justify="between">
<u-row custom-style="gap: 20rpx;padding: 0 6rpx;" justify="between">
<tpx-text-dic :value="modelInfo.unit" :list="goodNumUnitList" :placeholder="goodNumUnitList[0].title"></tpx-text-dic>
</u-row>
</tpx-select>

View File

@ -1,5 +1,5 @@
<template>
<tpx-page>
<tpx-page v-if="!pageLoading">
<tpx-layout>
<template v-slot:header></template>
<template v-slot:body>
@ -49,6 +49,7 @@
},
data() {
return {
pageLoading: true,
submitParam: {},
queryOption: {
billCode: '', // 运单id
@ -71,6 +72,12 @@
},
onUnload() {
},
onShow(){
this.pageLoading = true
setTimeout(()=> {
this.pageLoading = false
}, 500)
},
methods: {
initData(){