uu
This commit is contained in:
parent
4e80ba6e96
commit
23e5efafef
75
components/buns-order-templates/bo-operator-tmp.vue
Normal file
75
components/buns-order-templates/bo-operator-tmp.vue
Normal file
@ -0,0 +1,75 @@
|
||||
<template>
|
||||
<view>
|
||||
<u-row justify="between">
|
||||
<view>
|
||||
<text class="clr-sub pr-10">操作员</text>
|
||||
<text>李晓(南京市场部)</text>
|
||||
</view>
|
||||
<view>
|
||||
<slot name="titleRight"></slot>
|
||||
</view>
|
||||
</u-row>
|
||||
<u-row justify="between" custom-style="margin-top: 40rpx;">
|
||||
<u-row justify="center">
|
||||
<view class="clr-prm font-30">2129</view>
|
||||
<view class="mt-30 clr-sub font-28">总件数</view>
|
||||
</u-row>
|
||||
<u-row justify="center">
|
||||
<view class="clr-prm font-30">2129</view>
|
||||
<view class="mt-30 clr-sub font-28">总重量(KG)</view>
|
||||
</u-row>
|
||||
</u-row>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import getCdnUrl from "@/common/getCdnUrl"
|
||||
import { goto, goBack, setClipboardData, confirmModal, showLoading } from "@/common/untool"
|
||||
|
||||
|
||||
export default {
|
||||
components: { },
|
||||
computed: {
|
||||
submitInfo: {
|
||||
get(){
|
||||
return this.value
|
||||
}
|
||||
}
|
||||
},
|
||||
props: {
|
||||
value: {
|
||||
default () {
|
||||
return { }
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
},
|
||||
onHide() {
|
||||
|
||||
},
|
||||
unmounted() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
goto,
|
||||
getCdnUrl,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/common/uni-nvue.scss';
|
||||
page {
|
||||
background-color: #F6F6F6;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
12
pages.json
12
pages.json
@ -159,6 +159,18 @@
|
||||
"navigationBarTitleText": "装柜扫描"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/deliveryDeal/qutgoingScanning",
|
||||
"style": {
|
||||
"navigationBarTitleText": "发件扫描"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/deliveryDeal/distributeOutgoing",
|
||||
"style": {
|
||||
"navigationBarTitleText": "分拨发件"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/warehousing/detail",
|
||||
"style": {
|
||||
|
||||
137
pages/deliveryDeal/distributeOutgoing.vue
Normal file
137
pages/deliveryDeal/distributeOutgoing.vue
Normal file
@ -0,0 +1,137 @@
|
||||
<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 justify="between" custom-style="margin-top:20rpx;">
|
||||
<tpx-select placeholder="下一网点"></tpx-select>
|
||||
</u-row>
|
||||
|
||||
<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">
|
||||
<!-- <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 {
|
||||
goto
|
||||
} from "@/common/untool"
|
||||
export default {
|
||||
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>
|
||||
149
pages/deliveryDeal/qutgoingScanning.vue
Normal file
149
pages/deliveryDeal/qutgoingScanning.vue
Normal file
@ -0,0 +1,149 @@
|
||||
<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-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>
|
||||
@ -60,7 +60,8 @@
|
||||
faBtnlist: [
|
||||
{ title: '运单录入', subTitle: "", icon: getCdnUrl(`home/ydluru.png`), url: 'post/openorder' },
|
||||
{ title: '揽收扫描', subTitle: "", icon: getCdnUrl(`home/lshsm.png`), url: 'deliveryDeal/pickUp' },
|
||||
{ title: '发件扫描', subTitle: "", icon: getCdnUrl(`home/fajiansm.png`), url: '' },
|
||||
{ title: '发件扫描', subTitle: "", icon: getCdnUrl(`home/fajiansm.png`), url: 'deliveryDeal/qutgoingScanning' },
|
||||
{ title: '分拨发件', subTitle: "", icon: getCdnUrl(`home/fajiansm.png`), url: 'deliveryDeal/distributeOutgoing' },
|
||||
{ title: '合包扫描', subTitle: "", icon: getCdnUrl(`home/hebaosm.png`), url: '' },
|
||||
{ title: '运单修改', subTitle: "", icon: getCdnUrl(`home/ydxiugai.png`), url: '' },
|
||||
{ title: '收货入库', subTitle: "", icon: getCdnUrl(`home/shhruku.png`), url: 'deliveryDeal/storage' },
|
||||
@ -71,7 +72,7 @@
|
||||
{ title: '清关扫描', subTitle: "", icon: getCdnUrl(`home/qinggsm.png`), url: '' },
|
||||
{ title: '装车扫描', subTitle: "", icon: getCdnUrl(`home/zhuangchesm.png`), url: '' },
|
||||
{ title: '面单补打', subTitle: "", icon: getCdnUrl(`home/mdbuda.png`), url: '' }
|
||||
],
|
||||
],
|
||||
daoBtnlist: [
|
||||
{ title: '到件扫描', subTitle: "", icon: getCdnUrl(`home/daohsm.png`), url: '' },
|
||||
{ title: '派件扫描', subTitle: "", icon: getCdnUrl(`home/paijsm.png`), url: '' },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user