...
|
...
|
@@ -67,14 +67,14 @@ export default { |
|
|
this.showLoading = true;
|
|
|
this.$emit('submit', {
|
|
|
templateName: this.templateName,
|
|
|
defaultFee: this.defaultFee,
|
|
|
freeMount: this.freeMount,
|
|
|
defaultFee: +this.defaultFee,
|
|
|
freeMount: +this.freeMount,
|
|
|
id: this.templateId,
|
|
|
});
|
|
|
},
|
|
|
//编辑
|
|
|
edit(params) {
|
|
|
this.title = '编辑运费魔板';
|
|
|
this.title = '编辑运费模板';
|
|
|
const { templateName, defaultFee, freeMount, id } = params;
|
|
|
this.templateName = templateName;
|
|
|
this.defaultFee = defaultFee;
|
...
|
...
|
|