update: 代收款明细增加备注信息

This commit is contained in:
admin 2024-08-05 13:51:27 +08:00
parent 5a03d65506
commit 9ac5cd1e3d
3 changed files with 39 additions and 4 deletions

View File

@ -112,6 +112,7 @@ onLaunch(() => {
height: 35rpx; height: 35rpx;
} }
::v-deep .custom-tabbar { ::v-deep .custom-tabbar {
z-index: 999;
> view { > view {
> view { > view {
background: #ffffff; background: #ffffff;

View File

@ -103,7 +103,9 @@ import SmallModal from "@/components/Modal/smallModal.vue";
import { OrderType, ScaleStatus } from "@/utils/enum"; import { OrderType, ScaleStatus } from "@/utils/enum";
const props = withDefaults( const props = withDefaults(
defineProps<any>(), defineProps<{
currentOrder: any;
}>(),
{ {
currentOrder: {}, currentOrder: {},
} }

View File

@ -114,12 +114,30 @@
" "
> >
<view v-for="(item, index) in gridList3" :key="index"> <view v-for="(item, index) in gridList3" :key="index">
<text v-if="item.name">{{ item.name }}</text <view v-if="item.name" style="display: inline-flex"
>{{ item.name }}
<uni-tooltip v-if="item.isTip" placement="bottom">
<u-icon color="#C1C1C1" name="info-circle" size="14"></u-icon>
<template v-slot:content>
<view
style="
min-width: 100px;
overflow: scroll;
word-break: break-word;
"
>
{{ item.info }}
</view>
</template>
</uni-tooltip>
</view
><text ><text
>{{ item.isBefore ? item.unit : "" }} >{{ item.isBefore ? item.unit : "" }}
<text v-if="item.name === '净重误差'"> <text v-if="item.name === '净重误差'">
{{ {{
(state.order.netWeight || 0) - (state.order.settlementNet || 0) (state.order.netWeight || 0) -
(state.order.settlementWeight || 0)
}} }}
</text> </text>
<text v-else-if="item.name === '结算方式'"> <text v-else-if="item.name === '结算方式'">
@ -295,11 +313,23 @@ const gridList3 = reactive([
{}, {},
{ {
name: "结算净重", name: "结算净重",
enName: "settlementNet",
num: 0,
unit: "KG",
isBefore: false,
isTip: true,
info: "基地或钢厂出具结算单的毛重-皮重",
},
{
name: "结算重量",
enName: "settlementWeight", enName: "settlementWeight",
num: 0, num: 0,
unit: "KG", unit: "KG",
isBefore: false, isBefore: false,
isTip: true,
info: "基地或钢厂出具结算单的毛重-皮重-扣杂",
}, },
{ {
name: "结算单价", name: "结算单价",
enName: "unitPrice", enName: "unitPrice",
@ -356,6 +386,8 @@ const gridList3 = reactive([
num: "", num: "",
unit: "KG", unit: "KG",
isBefore: false, isBefore: false,
isTip: true,
info: "货场过磅净重-结算净重",
}, },
]); ]);
// // 4 // // 4
@ -443,7 +475,7 @@ const init = () => {
if (item.name === "净重误差") { if (item.name === "净重误差") {
item.num = item.num =
(state.order as any).netWeight - (state.order as any).netWeight -
(state.order as any).settlementNet; (state.order as any).settlementWeight;
} }
item.num = state.order[item.enName as string]; item.num = state.order[item.enName as string];
}); });