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-09-12 15:24:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b9caf0326de2f8705be90ed824adea84c335ed66
b9caf032
1 parent
bb424b8b
feat: 修改排序取值
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
src/views/editReportingData/index.vue
src/views/editReportingData/index.vue
View file @
b9caf03
...
...
@@ -966,7 +966,7 @@ export default {
isFold: false,
// 用于保存原始数据
originalDetailData: {},
// 当前编辑行的
gnum
// 当前编辑行的
currentRowKey: null,
lastItemValid: true, // 默认值为 true,表示没有新增项或上一次新增项通过了校验
};
...
...
@@ -1043,12 +1043,7 @@ export default {
res.data.declare.orderNo = res.data.declare.orderno;
this.formData = res.data.declare;
this.formData.appType = 9610;
this.detailData = res.data.product.length
? res.data.product.map((item, index) => {
item.gnum = index + 1;
return item;
})
: [];
this.detailData = res.data.product;
} else {
this.detailData = [];
this.formData = {};
...
...
Please
register
or
login
to post a comment