diff --git a/src/assets/images/member/customer_service_img.png b/src/assets/images/member/customer_service_img.png new file mode 100644 index 0000000..5182830 Binary files /dev/null and b/src/assets/images/member/customer_service_img.png differ diff --git a/src/views/member/new_help/index.vue b/src/views/member/new_help/index.vue index e895b9c..044e403 100644 --- a/src/views/member/new_help/index.vue +++ b/src/views/member/new_help/index.vue @@ -47,6 +47,17 @@
+ + +
+
官方客服
+
+ +
+
+
+ + @@ -68,6 +79,8 @@ export default { show: false, show_title: '', show_content: '', + // 客服弹框 + customer_service_show: false, }; }, activated() { @@ -96,7 +109,10 @@ export default { // 点击工具 clickTool(name){ let _this = this; - if(name === 'customer_service') window.location.href = 'tel://' + _this.info.customer_service_tel; + if(name === 'customer_service') { + _this.customer_service_show = true; + // window.location.href = 'tel://' + _this.info.customer_service_tel; + } else if(name === 'feedback') _this.$router.push(_this.fun.getUrl("DiyForm",{ id: _this.info.feedback_id })); else if(name === 'questionnaire') _this.$router.push(_this.fun.getUrl("DiyForm",{ id: _this.info.questionnaire_id })); }, diff --git a/src/views/member/tool/about_us.vue b/src/views/member/tool/about_us.vue index 5e0cd68..604611e 100644 --- a/src/views/member/tool/about_us.vue +++ b/src/views/member/tool/about_us.vue @@ -14,6 +14,7 @@ + @@ -63,6 +64,9 @@ export default { } else if (type === 'platform') { this.show_title = this.set.platform_title || ''; this.show_content = this.set.platform_agreement || ''; + } else if (type === 'cancellation_rules') { + this.show_title = this.set.cancellation_rules_title || ''; + this.show_content = this.set.cancellation_rules || ''; } console.log(type,this.show_title); if(this.show_title.length > 0 && this.show_content.length > 0) this.show = true;