|
|
|
@ -210,6 +210,17 @@
|
|
|
|
|
{{ data.row[cols.prop] }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="扣费状态">
|
|
|
|
|
<template v-slot="data">
|
|
|
|
|
<el-tooltip class="item" effect="dark" :content="data.row.timeCustFee" placement="top">
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="fun_getstaCustFee(data.row.staCustFee).type"
|
|
|
|
|
>{{ fun_getstaCustFee(data.row.staCustFee).text }}</el-tag>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="主单号">
|
|
|
|
|
<template v-slot="data">
|
|
|
|
|
<el-popover
|
|
|
|
@ -387,7 +398,7 @@ export default {
|
|
|
|
|
{ label: "报关行名称", prop: "compName", width: 100 },
|
|
|
|
|
{ label: "进口/出口", prop: "ieFlanName", width: 80 },
|
|
|
|
|
{ label: "报关订单号", prop: "uniqueNumber", copy: true, width: 160 },
|
|
|
|
|
{ label: "报关单号", prop: "customsNo", copy: true, width: 200 },
|
|
|
|
|
{ label: "报关单号", prop: "customsNo", copy: true, width: 120 },
|
|
|
|
|
{ label: "申报地海关", prop: "declareCustomsName", width: 100 },
|
|
|
|
|
{ label: "境内收发", prop: "tradeName" },
|
|
|
|
|
{ label: "提单号", prop: "shipOrderNo" },
|
|
|
|
@ -724,6 +735,25 @@ export default {
|
|
|
|
|
this.data_clientinfolist = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
fun_getstaCustFee(code) {
|
|
|
|
|
let type = '',
|
|
|
|
|
text = '';
|
|
|
|
|
switch (code) {
|
|
|
|
|
case "OK":
|
|
|
|
|
type = "success";
|
|
|
|
|
text = "扣费成功"
|
|
|
|
|
break;
|
|
|
|
|
case "FAIL":
|
|
|
|
|
type = "warning";
|
|
|
|
|
text = "扣费失败"
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
type = "info";
|
|
|
|
|
text = "未处理"
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return { type, text };
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|