Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-Connect-Pre-Clearance
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
jinhui.wang
2024-12-25 15:58:36 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a302049c80c7056657cf1a76144aff4652772412
a302049c
1 parent
7dc71115
样式修改,排序逻辑修正
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
web/src/views/uploadDetail/dialog.vue
web/src/views/uploadDetail/index.vue
web/src/views/uploadDetail/uploadFile.vue
web/src/views/uploadDetail/dialog.vue
View file @
a302049
...
...
@@ -77,7 +77,7 @@
</div>
</template>
</el-table-column>
<el-table-column type="index" width="100" label="NUMBER" align="
center
">
<el-table-column type="index" width="100" label="NUMBER" align="
left
">
</el-table-column>
<el-table-column
v-for="(item, index) in tableHeader"
...
...
@@ -188,7 +188,7 @@ export default {
dialogLoading: false,
tableLoading: false,
},
tableMaxheight:
70
0,
tableMaxheight:
65
0,
};
},
watch: {
...
...
web/src/views/uploadDetail/index.vue
View file @
a302049
...
...
@@ -182,16 +182,16 @@ export default {
res.data.forEach((item) => {
item.file = item.filePath;
if (item.bizTypeCode == "attachmentBizType_01") {
item.index = awb.length == 0 ? 0 : awb.length
- 1
;
item.index = awb.length == 0 ? 0 : awb.length;
awb.push(item);
} else if (item.bizTypeCode == "attachmentBizType_02") {
item.index = inv.length == 0 ? 0 : inv.length
- 1
;
item.index = inv.length == 0 ? 0 : inv.length;
inv.push(item);
} else if (item.bizTypeCode == "attachmentBizType_03") {
item.index = pkl.length == 0 ? 0 : pkl.length
- 1
;
item.index = pkl.length == 0 ? 0 : pkl.length;
pkl.push(item);
} else if (item.bizTypeCode == "attachmentBizType_04") {
item.index = oth.length == 0 ? 0 : oth.length
- 1
;
item.index = oth.length == 0 ? 0 : oth.length;
oth.push(item);
}
});
...
...
web/src/views/uploadDetail/uploadFile.vue
View file @
a302049
...
...
@@ -226,7 +226,7 @@ export default {
obj.file = e.target.result;
arr.forEach((item, index) => {
if (item.uploadType == this.fileFormData.uploadType) {
obj.index = item.files.length == 0 ? 0 : item.files.length
- 1
;
obj.index = item.files.length == 0 ? 0 : item.files.length;
item.files.push(obj);
}
});
...
...
Please
register
or
login
to post a comment