Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-08-21 15:30:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
39077e06f0209eb9d29c8f2eb5f157bb5edc4ace
39077e06
1 parent
9cf314a8
feat: 新增字段
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
src/views/reportingData/index.vue
src/views/reportingData/index.vue
View file @
39077e0
...
...
@@ -395,7 +395,7 @@
@checkbox-change="tableSelect"
@checkbox-all="tableSelectAll"
>
<vxe-column type="checkbox" width="
6
0"></vxe-column>
<vxe-column type="checkbox" width="
5
0"></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="1
2
0">
<vxe-column title="操作" fixed="right" width="1
1
0">
<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.$confirm(`是否确认进行${dropdownName}操作?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.postDeclareData(obj, loadingKey);
})
.catch(() => {
this.$set(this.loadings, loadingKey, false);
});
},
//切换申报模式
dropdownChange(val) {
...
...
Please
register
or
login
to post a comment