From 929bdcfadf55b934a3dead9e45c4cc27f2d44b81 Mon Sep 17 00:00:00 2001 From: douzhuo <17611323298@163.com> Date: Mon, 8 Aug 2022 10:34:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AD=9B=E9=80=89=E5=85=A8?= =?UTF-8?q?=E9=83=A8=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/center/prohibited/index.vue | 6 +++++- utils/domain.js | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pages/center/prohibited/index.vue b/pages/center/prohibited/index.vue index e773aca..5a8e85f 100644 --- a/pages/center/prohibited/index.vue +++ b/pages/center/prohibited/index.vue @@ -256,7 +256,11 @@ // 选择违禁标识 selectIdent(e) { this.violatedStatus = e[0].value - this.weijinTag = e[0].label + if (e[0].value == null) { + this.weijinTag = '违禁标识' + } else { + this.weijinTag = e[0].label + } this.nextPage = 1; this.recordList = []; this.isRefresh = false; diff --git a/utils/domain.js b/utils/domain.js index e23650b..0a38914 100644 --- a/utils/domain.js +++ b/utils/domain.js @@ -1,9 +1,9 @@ -// const base = 'http://81.70.55.170:9999'; // 测试站 +const base = 'http://81.70.55.170:9999'; // 测试站 // const base = 'http://127.0.0.1:9999'; // 本地 // const base = 'http://192.168.31.94:9999' ;// 胜浩 // const base = 'http://192.168.31.161:9999' // 长龙 // const base = 'https://zanyong.hfju.com';// 正式 AI销管// 弃用 -const base = 'https://hxz.quhouse.com';// 正式 AI销讲助手 +// const base = 'https://hxz.quhouse.com';// 正式 AI销讲助手 // http.js使用 const baseUrl = `${base}/autoSR/api`;