Showing
1 changed file
with
3 additions
and
3 deletions
@@ -67,14 +67,14 @@ export default { | @@ -67,14 +67,14 @@ export default { | ||
67 | this.showLoading = true; | 67 | this.showLoading = true; |
68 | this.$emit('submit', { | 68 | this.$emit('submit', { |
69 | templateName: this.templateName, | 69 | templateName: this.templateName, |
70 | - defaultFee: this.defaultFee, | ||
71 | - freeMount: this.freeMount, | 70 | + defaultFee: +this.defaultFee, |
71 | + freeMount: +this.freeMount, | ||
72 | id: this.templateId, | 72 | id: this.templateId, |
73 | }); | 73 | }); |
74 | }, | 74 | }, |
75 | //编辑 | 75 | //编辑 |
76 | edit(params) { | 76 | edit(params) { |
77 | - this.title = '编辑运费魔板'; | 77 | + this.title = '编辑运费模板'; |
78 | const { templateName, defaultFee, freeMount, id } = params; | 78 | const { templateName, defaultFee, freeMount, id } = params; |
79 | this.templateName = templateName; | 79 | this.templateName = templateName; |
80 | this.defaultFee = defaultFee; | 80 | this.defaultFee = defaultFee; |
-
Please register or login to post a comment