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-06-09 15:21:00 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d514681a3892d6b9be83e29a9f5c25b48e18b533
d514681a
1 parent
210f9fd8
feat: 自测更换新table组件
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
15 deletions
src/views/arrival-declare/index.vue
src/views/reportingData/index.vue
src/views/arrival-declare/index.vue
View file @
d514681
...
...
@@ -633,31 +633,31 @@ export default {
linkChange(record, type) {
const {
billNo,
completed
LogisticsNo
,
uncompleted
LogisticsNo
,
listRelease
LogisticsNo
,
listDontRelease
LogisticsNo
,
listClearance
LogisticsNo
,
listNotCleared
LogisticsNo
,
completed
ReceiptStatus
,
uncompleted
ReceiptStatus
,
listRelease
ReceiptStatus
,
listDontRelease
ReceiptStatus
,
listClearance
ReceiptStatus
,
listNotCleared
ReceiptStatus
,
} = record.row;
const query = { billNo, search: true };
if (+type === 1) {
query["
logisticsNo"] = uncompletedLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(uncompletedReceiptStatus)
;
}
if (+type === 2) {
query["
logisticsNo"] = completedLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(completedReceiptStatus)
;
}
if (+type === 3) {
query["
logisticsNo"] = listReleaseLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(listReleaseReceiptStatus)
;
}
if (+type === 4) {
query["
logisticsNo"] = listDontReleaseLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(listDontReleaseReceiptStatus)
;
}
if (+type === 5) {
query["
logisticsNo"] = listClearanceLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(listClearanceReceiptStatus)
;
}
if (+type === 6) {
query["
logisticsNo"] = listNotClearedLogisticsNo
;
query["
receiptStatus"] = JSON.stringify(listNotClearedReceiptStatus)
;
}
console.log(query, record);
...
...
src/views/reportingData/index.vue
View file @
d514681
...
...
@@ -309,6 +309,7 @@
<vxe-table
:max-height="tableMaxheight"
:data="tableData"
:column-config="{ resizable: true }"
:row-config="{ isCurrent: true, isHover: true }"
:filter-config="{ remote: true }"
@filter-change="filterChangeEvent"
...
...
@@ -616,7 +617,7 @@
:total="page.total"
:page-size.sync="page.pageSize"
:current-page.sync="page.pageIndex"
:page-sizes="[10, 20, 50, 100, 500, 1000]"
:page-sizes="[10, 20, 50, 100, 500, 1000
, 2000, 3000
]"
background
layout="total,prev, pager, next, jumper, ->, sizes"
class="tablePagination"
...
...
@@ -630,7 +631,7 @@
@change="sizeChange"
>
<el-option
v-for="(item, index) in [10, 20, 50, 100, 500, 1000]"
v-for="(item, index) in [10, 20, 50, 100, 500, 1000
, 2000, 3000
]"
:label="item + $t('system.custom.pageSize')"
:value="item"
:key="index"
...
...
@@ -824,7 +825,14 @@ export default {
try {
if (this.$route.query.billNo && this.$route.query.search == "true") {
this.sreachFormData.billNo = this.$route.query.billNo;
this.sreachFormData.logisticsNo = this.$route.query.logisticsNo;
console.log(
this.$route.query,
JSON.parse(this.$route.query.receiptStatus)
);
this.activeType = true;
this.sreachFormData.receiptStatus = JSON.parse(
this.$route.query.receiptStatus
);
}
} catch (error) {
console.log(error);
...
...
Please
register
or
login
to post a comment