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-01 17:34:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f2e6bbe40c4166ca76020eb8c0b1347c85dd695d
f2e6bbe4
1 parent
850e9fe8
feat: 修改传参
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
src/views/receipt-management/dialog.vue
src/views/receipt-management/dialog.vue
View file @
f2e6bbe
...
...
@@ -186,7 +186,7 @@ export default {
return {
formData: {
receiptType: "",
orderNo:
[]
,
orderNo:
""
,
receiptStatus: "",
preNo: "",
invtNo: "",
...
...
@@ -244,7 +244,7 @@ export default {
if (!this.formData.receiptType) {
return;
}
if (
this.formData.orderNo.length < 1
) {
if (
!this.formData.orderNo
) {
return;
}
if (!this.formData.receiptStatus) {
...
...
@@ -258,7 +258,6 @@ export default {
}
generateReceiptXml({
...this.formData,
orderNo: this.formData.orderNo[0],
}).then((res) => {
console.log(res);
if (res.code === "200") {
...
...
@@ -320,7 +319,7 @@ export default {
close(flag) {
this.formData = {
receiptType: "",
orderNo:
[]
,
orderNo:
""
,
receiptStatus: "",
};
this.loadings.dialogLoading = false;
...
...
Please
register
or
login
to post a comment