uu
This commit is contained in:
parent
82739fda5e
commit
f81a0d002a
@ -303,10 +303,6 @@
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/common/uni-nvue.scss';
|
||||
page {
|
||||
background-color: #F6F6F6;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
|
||||
@ -78,10 +78,6 @@
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/common/uni-nvue.scss';
|
||||
page {
|
||||
background-color: #F6F6F6;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
|
||||
71
components/buns-order-templates/bo-scanlist-tmp.vue
Normal file
71
components/buns-order-templates/bo-scanlist-tmp.vue
Normal file
@ -0,0 +1,71 @@
|
||||
<template>
|
||||
<tpx-scroll-view v-model:resObject="modelRes"
|
||||
>
|
||||
<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 modelRes.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
components: { },
|
||||
computed: {
|
||||
modelRes: {
|
||||
get(){
|
||||
return this.resData
|
||||
}
|
||||
},
|
||||
},
|
||||
props: {
|
||||
resData: {
|
||||
default () {
|
||||
return { list: [] }
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
},
|
||||
onHide() {
|
||||
|
||||
},
|
||||
unmounted() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/common/uni-nvue.scss';
|
||||
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
@ -35,31 +35,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
@ -74,11 +50,12 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
|
||||
},
|
||||
|
||||
@ -24,31 +24,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
@ -63,10 +39,11 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
|
||||
},
|
||||
|
||||
@ -35,31 +35,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
@ -74,11 +50,12 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
|
||||
},
|
||||
|
||||
@ -31,32 +31,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -70,11 +45,13 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
},
|
||||
computed: {
|
||||
|
||||
@ -30,25 +30,7 @@
|
||||
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
|
||||
<view v-for="(item, index) in resData.list" class="yditem">
|
||||
<u-row justify="between" align="top">
|
||||
<view style="flex: 1;">
|
||||
<view class="">
|
||||
<text class="clr-sub lbwth">订单号</text>
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</view>
|
||||
<view class="mt-10">
|
||||
<text class="clr-sub lbwth">重量</text>
|
||||
<text class="clr-prm">3KG</text>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<u-icon name="trash" size="30"></u-icon>
|
||||
</view>
|
||||
</u-row>
|
||||
</view>
|
||||
<tpx-empty v-if="resData.list.length == 0" size="sm"></tpx-empty>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
@ -68,10 +50,11 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
// hasLeftWin: {
|
||||
// type: Boolean
|
||||
|
||||
@ -27,32 +27,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -66,11 +41,12 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
},
|
||||
computed: {
|
||||
|
||||
@ -27,31 +27,7 @@
|
||||
</view>
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
<tpx-scroll-view v-model:resObject="resData"
|
||||
>
|
||||
<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 resData.list" class="yditem">
|
||||
<u-row>
|
||||
<u-col span="8">
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</u-col>
|
||||
<u-col span="4">
|
||||
<text class="clr-sub">{{item.scanDate}}</text>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</tpx-scroll-view>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
@ -66,11 +42,12 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
},
|
||||
computed: {
|
||||
|
||||
@ -25,25 +25,7 @@
|
||||
|
||||
|
||||
<view class="blcok-white-noradius">
|
||||
|
||||
<view v-for="(item, index) in resData.list" class="yditem">
|
||||
<u-row justify="between" align="top">
|
||||
<view style="flex: 1;">
|
||||
<view class="">
|
||||
<text class="clr-sub lbwth">订单号</text>
|
||||
<text class="">{{item.billCode}}</text>
|
||||
</view>
|
||||
<view class="mt-10">
|
||||
<text class="clr-sub lbwth">重量</text>
|
||||
<text class="clr-prm">3KG</text>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<u-icon name="trash" size="30"></u-icon>
|
||||
</view>
|
||||
</u-row>
|
||||
</view>
|
||||
<tpx-empty v-if="resData.list.length == 0" size="sm"></tpx-empty>
|
||||
<bo-scanlist-tmp :resData="resData"></bo-scanlist-tmp>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
@ -63,10 +45,11 @@
|
||||
import { debounce } from "@/common/util"
|
||||
import dayjs from "dayjs"
|
||||
import BoOperatorTmp from "@/components/buns-order-templates/bo-operator-tmp"
|
||||
import BoScanlistTmp from "@/components/buns-order-templates/bo-scanlist-tmp"
|
||||
import * as apiService from "@/common/api"
|
||||
import { scanTypeEnum, getScanParams, ansScanResponse } from "@/common/scanUtil"
|
||||
export default {
|
||||
components:{ BoOperatorTmp },
|
||||
components:{ BoOperatorTmp, BoScanlistTmp },
|
||||
props: {
|
||||
// hasLeftWin: {
|
||||
// type: Boolean
|
||||
|
||||
Loading…
Reference in New Issue
Block a user