From dfdb3616ed162117c1c6a985e32d00eba4584653 Mon Sep 17 00:00:00 2001 From: "471615499@qq.com" Date: Thu, 17 Oct 2024 22:01:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=B4=E6=97=B6=E4=BA=BA=E5=91=98=E3=80=81?= =?UTF-8?q?=E4=BC=9A=E8=AE=AE=E5=AE=A4=E7=BC=96=E8=BE=91=E3=80=81=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=97=B6=E4=B8=8D=E4=BC=9A=E9=BB=98=E8=AE=A4=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E7=AC=AC=E4=B8=80=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/views/admin/IcsCustomerStaffList.vue | 5 +++-- src/views/admin/meeting/RoomContentList.vue | 5 +++-- vue.config.js | 4 ++-- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.env.development b/.env.development index 520dcf1..6389de0 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ NODE_ENV=development VUE_APP_PREVIEW=true VUE_APP_API_BASE_URL=/api -VUE_APP_MODEL_BASE_URL=https://company.haxy.com.cn:4443/shoot-hand \ No newline at end of file +VUE_APP_MODEL_BASE_URL=https://baoxiu.jsgdha.com/shoot-hand \ No newline at end of file diff --git a/src/views/admin/IcsCustomerStaffList.vue b/src/views/admin/IcsCustomerStaffList.vue index 24b45be..ce4788e 100644 --- a/src/views/admin/IcsCustomerStaffList.vue +++ b/src/views/admin/IcsCustomerStaffList.vue @@ -161,8 +161,9 @@ export default { handleEdit(record) { this.$refs.modal.edit(record) }, - handleOk() { - this.$refs.table.refresh(true) + handleOk(status) { + status = status || false + this.$refs.table.refresh(status) console.log('handleSaveOk') }, delByIds(ids) { diff --git a/src/views/admin/meeting/RoomContentList.vue b/src/views/admin/meeting/RoomContentList.vue index 097b98d..92f9b11 100644 --- a/src/views/admin/meeting/RoomContentList.vue +++ b/src/views/admin/meeting/RoomContentList.vue @@ -467,8 +467,9 @@ export default { handleEdit(id) { this.$refs.modal.edit(id) }, - handleOk() { - this.$refs.table.refresh(true) + handleOk(status) { + status = status || false + this.$refs.table.refresh(status) }, delByIds(ids) { const _this = this diff --git a/vue.config.js b/vue.config.js index cdca7c5..0fb5d57 100644 --- a/vue.config.js +++ b/vue.config.js @@ -110,8 +110,8 @@ const vueConfig = { port: 8000, proxy: { '/api': { - target: 'http://127.0.0.1:9227', - // target: 'https://company.haxy.com.cn:4443/shoot-hand', + //target: 'http://127.0.0.1:9227', + target: 'https://baoxiu.jsgdha.com/shoot-hand', pathRewrite: { '^/api': '' }, ws: false, changeOrigin: true