zhanbo.xu

feat: 新增字段

......@@ -395,7 +395,7 @@
@checkbox-change="tableSelect"
@checkbox-all="tableSelectAll"
>
<vxe-column type="checkbox" width="60"></vxe-column>
<vxe-column type="checkbox" width="50"></vxe-column>
<vxe-column field="billNo" title="提运单号" :show-overflow="true">
<template #default="{ row }">
<el-tooltip
......@@ -426,6 +426,10 @@
</vxe-column>
<vxe-column field="flightNumber" title="航班号"></vxe-column>
<vxe-column
field="regulatoryVenueCode"
title="监管场所代码"
></vxe-column>
<vxe-column
field="ecomEntName"
title="电商企业名称"
:show-overflow="true"
......@@ -444,6 +448,7 @@
<vxe-column
field="declareBusinessType"
title="申报业务类型"
width="100"
></vxe-column>
<vxe-column field="createTime" title="创建时间"></vxe-column>
<vxe-column
......@@ -684,7 +689,7 @@
</el-popover>
</template>
</vxe-column>
<vxe-column title="操作" fixed="right" width="120">
<vxe-column title="操作" fixed="right" width="110">
<template #default="{ row }">
<el-button type="text" @click="update(row)"> 修改 </el-button>
<el-button type="text" @click="showTotalLog(row)"> 日志 </el-button>
......@@ -1303,8 +1308,17 @@ export default {
this.dropdownCode = dropdownCode;
return;
}
this.postDeclareData(obj, loadingKey);
this.$confirm(`是否确认进行${dropdownName}操作?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.postDeclareData(obj, loadingKey);
})
.catch(() => {
this.$set(this.loadings, loadingKey, false);
});
},
//切换申报模式
dropdownChange(val) {
......