zhanbo.xu

feat: 新增字段

...@@ -395,7 +395,7 @@ ...@@ -395,7 +395,7 @@
395 @checkbox-change="tableSelect" 395 @checkbox-change="tableSelect"
396 @checkbox-all="tableSelectAll" 396 @checkbox-all="tableSelectAll"
397 > 397 >
398 - <vxe-column type="checkbox" width="60"></vxe-column> 398 + <vxe-column type="checkbox" width="50"></vxe-column>
399 <vxe-column field="billNo" title="提运单号" :show-overflow="true"> 399 <vxe-column field="billNo" title="提运单号" :show-overflow="true">
400 <template #default="{ row }"> 400 <template #default="{ row }">
401 <el-tooltip 401 <el-tooltip
...@@ -426,6 +426,10 @@ ...@@ -426,6 +426,10 @@
426 </vxe-column> 426 </vxe-column>
427 <vxe-column field="flightNumber" title="航班号"></vxe-column> 427 <vxe-column field="flightNumber" title="航班号"></vxe-column>
428 <vxe-column 428 <vxe-column
429 + field="regulatoryVenueCode"
430 + title="监管场所代码"
431 + ></vxe-column>
432 + <vxe-column
429 field="ecomEntName" 433 field="ecomEntName"
430 title="电商企业名称" 434 title="电商企业名称"
431 :show-overflow="true" 435 :show-overflow="true"
...@@ -444,6 +448,7 @@ ...@@ -444,6 +448,7 @@
444 <vxe-column 448 <vxe-column
445 field="declareBusinessType" 449 field="declareBusinessType"
446 title="申报业务类型" 450 title="申报业务类型"
451 + width="100"
447 ></vxe-column> 452 ></vxe-column>
448 <vxe-column field="createTime" title="创建时间"></vxe-column> 453 <vxe-column field="createTime" title="创建时间"></vxe-column>
449 <vxe-column 454 <vxe-column
...@@ -684,7 +689,7 @@ ...@@ -684,7 +689,7 @@
684 </el-popover> 689 </el-popover>
685 </template> 690 </template>
686 </vxe-column> 691 </vxe-column>
687 - <vxe-column title="操作" fixed="right" width="120"> 692 + <vxe-column title="操作" fixed="right" width="110">
688 <template #default="{ row }"> 693 <template #default="{ row }">
689 <el-button type="text" @click="update(row)"> 修改 </el-button> 694 <el-button type="text" @click="update(row)"> 修改 </el-button>
690 <el-button type="text" @click="showTotalLog(row)"> 日志 </el-button> 695 <el-button type="text" @click="showTotalLog(row)"> 日志 </el-button>
...@@ -1303,8 +1308,17 @@ export default { ...@@ -1303,8 +1308,17 @@ export default {
1303 this.dropdownCode = dropdownCode; 1308 this.dropdownCode = dropdownCode;
1304 return; 1309 return;
1305 } 1310 }
1306 - 1311 + this.$confirm(`是否确认进行${dropdownName}操作?`, "提示", {
1307 - this.postDeclareData(obj, loadingKey); 1312 + confirmButtonText: "确定",
1313 + cancelButtonText: "取消",
1314 + type: "warning",
1315 + })
1316 + .then(() => {
1317 + this.postDeclareData(obj, loadingKey);
1318 + })
1319 + .catch(() => {
1320 + this.$set(this.loadings, loadingKey, false);
1321 + });
1308 }, 1322 },
1309 //切换申报模式 1323 //切换申报模式
1310 dropdownChange(val) { 1324 dropdownChange(val) {
......