update: 更新已收款详细信息
This commit is contained in:
parent
c86febab11
commit
e626084970
|
@ -50,7 +50,22 @@
|
||||||
|
|
||||||
<view class="more">
|
<view class="more">
|
||||||
<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 === '净重误差'">
|
||||||
|
@ -105,16 +120,16 @@ const payMethodMap: any = {
|
||||||
};
|
};
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
currentOrder: Order;
|
currentOrder: any;
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
currentOrder: {
|
currentOrder: {
|
||||||
id: ''
|
id: "",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const state = reactive<{
|
const state = reactive<{
|
||||||
order: Shipment;
|
order: any;
|
||||||
[attrName: string]: any;
|
[attrName: string]: any;
|
||||||
}>({
|
}>({
|
||||||
order: {
|
order: {
|
||||||
|
@ -167,12 +182,23 @@ const gridList3 = reactive([
|
||||||
isBefore: false,
|
isBefore: false,
|
||||||
},
|
},
|
||||||
{},
|
{},
|
||||||
|
{
|
||||||
|
name: "结算净重",
|
||||||
|
enName: "settlementNet",
|
||||||
|
num: 0,
|
||||||
|
unit: "KG",
|
||||||
|
isBefore: false,
|
||||||
|
isTip: true,
|
||||||
|
info: "基地或钢厂出具结算单的毛重-皮重",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "结算重量",
|
name: "结算重量",
|
||||||
enName: "settlementWeight",
|
enName: "settlementWeight",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "KG",
|
unit: "KG",
|
||||||
isBefore: false,
|
isBefore: false,
|
||||||
|
isTip: true,
|
||||||
|
info: "基地或钢厂出具结算单的毛重-皮重-扣杂",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "结算单价",
|
name: "结算单价",
|
||||||
|
@ -230,6 +256,8 @@ const gridList3 = reactive([
|
||||||
num: "",
|
num: "",
|
||||||
unit: "KG",
|
unit: "KG",
|
||||||
isBefore: false,
|
isBefore: false,
|
||||||
|
isTip: true,
|
||||||
|
info: "货场过磅净重-结算净重",
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue