From d38bb5f6049427a607164d5304a907d104016cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=8B=E4=BA=8E=E5=88=9D=E8=A7=81?= <752204717@qq.com> Date: Thu, 14 Mar 2024 13:04:07 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9C=9F=E5=AE=9E=E8=BF=9B=E5=BA=A6=E6=9D=A1+?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/common/common.vue | 20 +- src/views/modules/medical/light.vue | 860 ++++++--- src/views/modules/order/buyorder___.vue | 1638 +++++++++++++++++ src/views/modules/user/user-add-or-update.vue | 2 +- static/config/index.js | 10 +- 5 files changed, 2244 insertions(+), 286 deletions(-) create mode 100644 src/views/modules/order/buyorder___.vue diff --git a/src/views/common/common.vue b/src/views/common/common.vue index 2efbadb..3c942ec 100644 --- a/src/views/common/common.vue +++ b/src/views/common/common.vue @@ -1,10 +1,12 @@ - \ No newline at end of file diff --git a/src/views/modules/medical/light.vue b/src/views/modules/medical/light.vue index 02b4ffe..8f1df05 100644 --- a/src/views/modules/medical/light.vue +++ b/src/views/modules/medical/light.vue @@ -1,9 +1,23 @@ diff --git a/src/views/modules/order/buyorder___.vue b/src/views/modules/order/buyorder___.vue new file mode 100644 index 0000000..f386aee --- /dev/null +++ b/src/views/modules/order/buyorder___.vue @@ -0,0 +1,1638 @@ + + + + + diff --git a/src/views/modules/user/user-add-or-update.vue b/src/views/modules/user/user-add-or-update.vue index 2378df5..2ae4e5a 100644 --- a/src/views/modules/user/user-add-or-update.vue +++ b/src/views/modules/user/user-add-or-update.vue @@ -251,7 +251,7 @@ } if (this.dataForm.tel) { - if (/^1[34578]\d{9}$/.test(this.dataForm.tel) == false) { + if (/^1[3456789]\d{9}$/.test(this.dataForm.tel) == false) { this.$message.error("手机格式错误!") return } diff --git a/static/config/index.js b/static/config/index.js index fac02f2..8e011ee 100644 --- a/static/config/index.js +++ b/static/config/index.js @@ -1,20 +1,20 @@ /** * 开发环境 */ -;(function () { +; (function () { window.SITE_CONFIG = {}; // api接口请求地址 - // window.SITE_CONFIG['baseUrl'] = 'http://192.168.110.100:9200/pb'; + window.SITE_CONFIG['baseUrl'] = 'http://192.168.110.100:9200/pb';//张川川 // window.SITE_CONFIG['baseUrl'] = 'http://59.110.212.44:9200/pb'; - window.SITE_CONFIG['baseUrl'] = 'https://testapi.nuttyreading.com'; // 线上测试环境 + // window.SITE_CONFIG['baseUrl'] = 'https://testapi.nuttyreading.com'; // 线上测试环境11 // window.SITE_CONFIG['baseUrl'] = 'https://api.nuttyreading.com'; // 线上正式环境 // window.SITE_CONFIG['baseUrl'] = 'http://192.168.110.110:9200/pb'; // window.SITE_CONFIG['baseUrl'] = 'http://59.110.212.44:9200/pb'; // window.SITE_CONFIG['baseUrl'] = 'http://192.168.110.100:9200/pb'; // cdn地址 = 域名 + 版本号 - window.SITE_CONFIG['domain'] = './'; // 域名 + window.SITE_CONFIG['domain'] = './'; // 域名 window.SITE_CONFIG['version'] = ''; // 版本号(年月日时分) - window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version; + window.SITE_CONFIG['cdnUrl'] = window.SITE_CONFIG.domain + window.SITE_CONFIG.version; })();