Showing
2 changed files
with
4 additions
and
4 deletions
@@ -111,8 +111,8 @@ export default { | @@ -111,8 +111,8 @@ export default { | ||
111 | //获取店铺信息 | 111 | //获取店铺信息 |
112 | getShopInfo() { | 112 | getShopInfo() { |
113 | this.shopService.getShop().then(res => { | 113 | this.shopService.getShop().then(res => { |
114 | - const { customerTel } = res.data; | ||
115 | - this.shopPhone = customerTel; | 114 | + const { checkTel } = res.data; |
115 | + this.shopPhone = checkTel; | ||
116 | }); | 116 | }); |
117 | }, | 117 | }, |
118 | 118 |
@@ -67,8 +67,8 @@ export default { | @@ -67,8 +67,8 @@ 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 | }, |
-
Please register or login to post a comment