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-04-23 11:17:05 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6a2bb229f522b0fcba539f5e484e039a189856cd
6a2bb229
1 parent
d412d381
feat: 新增物流运单编号查询逻辑接口和字段必填
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
src/views/exportListDetail/dialog.vue
src/views/receipt-management/dialog.vue
src/views/exportListDetail/dialog.vue
View file @
6a2bb22
...
...
@@ -47,6 +47,7 @@
id="inputInner-edit-logisticsNo"
v-model="formData.logisticsNo"
:remote="true"
disabled
clearable
filterable
collapse-tags
...
...
@@ -193,6 +194,7 @@ export default {
if (val) {
this.formData.logisticsNo = this.logisticsNo;
this.formData.receiptType = "list";
this.receiptInfo = "";
setTimeout(() => {
this.getOtherInfo(this.logisticsNo);
}, 100);
...
...
@@ -362,6 +364,8 @@ export default {
receiptType: "",
logisticsNo: "",
receiptStatus: "",
preNo: "",
invtNo: "",
};
this.loadings.dialogLoading = false;
this.receiptInfo = "";
...
...
src/views/receipt-management/dialog.vue
View file @
6a2bb22
...
...
@@ -183,6 +183,13 @@ export default {
},
},
watch: {
outerVisible(val) {
if (val) {
this.receiptInfo = "";
}
},
},
data() {
return {
formData: {
...
...
@@ -240,6 +247,9 @@ export default {
},
methods: {
getpreNoInfo(e) {
console.log(e);
},
handleOtherInfo() {
if (this.formData.logisticsNo) {
this.getOtherInfo(this.formData.logisticsNo);
...
...
@@ -247,6 +257,8 @@ export default {
},
// 生成xml
receiptXml() {
console.log("==============");
if (!this.formData.receiptType) {
return;
}
...
...
@@ -262,6 +274,7 @@ export default {
if (!this.formData.invtNo) {
return;
}
generateReceiptXml({
...this.formData,
logisticsNo: this.formData.logisticsNo,
...
...
@@ -343,6 +356,8 @@ export default {
receiptType: "",
logisticsNo: "",
receiptStatus: "",
preNo: "",
invtNo: "",
};
this.loadings.dialogLoading = false;
this.receiptInfo = "";
...
...
Please
register
or
login
to post a comment