emis-app/components/buns-order-templates/bo-operator-tmp.vue
2024-02-01 17:58:33 +08:00

75 lines
1.2 KiB
Vue

<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>