152 lines
3.1 KiB
Vue
152 lines
3.1 KiB
Vue
<template>
|
|
<tpx-layout>
|
|
<template v-slot:body>
|
|
<u-line></u-line>
|
|
<view class="blcok-white-noradius" style="margin-top: 0;">
|
|
<u-row justify="between">
|
|
<view style="flex:1;">
|
|
<tpx-scan-input v-model:value="submitParam.yundanhao" placeholder="请输入运单号或扫码"
|
|
iconPos="left"></tpx-scan-input>
|
|
</view>
|
|
</u-row>
|
|
<u-row custom-style="margin-top:20rpx;">
|
|
<view style="flex: 1;">
|
|
<tpx-select placeholder="派件员" :isWhite="true"></tpx-select>
|
|
</view>
|
|
</u-row>
|
|
<view class="mt-20 clr-sub">
|
|
当前件: 重量 <text class="clr-prm pr-40">1.2KG</text> 体积: <text class="clr-prm">0.1m³</text>
|
|
</view>
|
|
|
|
<view class="mt-30">
|
|
<u-button @click="handleSubmit()" type="primary" size="large" shape="square"
|
|
custom-style="height:80rpx;font-size: 30rpx;border-radius: 14rpx;">确定</u-button>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="blcok-white-noradius">
|
|
<bo-operator-tmp>
|
|
<template v-slot:titleRight>
|
|
<button size="mini">查看历史发件</button>
|
|
</template>
|
|
</bo-operator-tmp>
|
|
</view>
|
|
|
|
<view class="blcok-white-noradius">
|
|
<!-- <u-row justify="between">
|
|
<text class="font-weight">运单列表</text>
|
|
<view >
|
|
|
|
</view>
|
|
</u-row> -->
|
|
|
|
<view class="">
|
|
<view class="pb-20">
|
|
<u-row>
|
|
<u-col span="8">
|
|
<text class="font-weight">运单号</text>
|
|
</u-col>
|
|
<u-col span="4">
|
|
<text class="font-weight">扫描时间</text>
|
|
</u-col>
|
|
</u-row>
|
|
</view>
|
|
<view v-for="(item, index) in yundanList" class="yditem">
|
|
<u-row>
|
|
<u-col span="8">
|
|
<text class="">T2919292</text>
|
|
</u-col>
|
|
<u-col span="4">
|
|
<text class="clr-sub">12-18 13:18</text>
|
|
</u-col>
|
|
</u-row>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
<template v-slot:footer>
|
|
</template>
|
|
</tpx-layout>
|
|
</template>
|
|
|
|
<script>
|
|
import getCdnUrl from "@/common/getCdnUrl"
|
|
import {
|
|
ordStaEnum,
|
|
ordStatusList,
|
|
payTypeEnum,
|
|
payTypeList,
|
|
dlvTypeEnum,
|
|
dlvTypeList,
|
|
dateTypeEnum,
|
|
dateTypeList
|
|
} from "@/common/enum"
|
|
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
|
import {
|
|
goto
|
|
} from "@/common/untool"
|
|
export default {
|
|
components:{ BoOperatorTmp },
|
|
props: {
|
|
// hasLeftWin: {
|
|
// type: Boolean
|
|
// }
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
submitParam: {
|
|
date: [],
|
|
type: 1,
|
|
},
|
|
|
|
yundanList: [
|
|
{ val: 'T7080304037' },{ val: 'T708012124037' },{ val: 'T7080304092' }
|
|
]
|
|
}
|
|
},
|
|
onShareAppMessage() {
|
|
return {
|
|
// title: '',
|
|
// path: 'TODO'
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.initData();
|
|
},
|
|
onUnload() {
|
|
|
|
},
|
|
methods: {
|
|
getCdnUrl,
|
|
|
|
initData() {
|
|
// uni.showLoading({
|
|
// title: '加载中'
|
|
// });
|
|
},
|
|
handleSubmit() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/common/uni-nvue.scss';
|
|
|
|
page {
|
|
background-color: #F6F6F6;
|
|
height: 100% !important;
|
|
}
|
|
</style>
|
|
<style scoped lang="scss">
|
|
.yditem{
|
|
padding: 20rpx 0;
|
|
border-top: 2px solid #F6F6F6;
|
|
}
|
|
</style> |