From a3c868db4d017961be2d394eadb7d428045d5adc Mon Sep 17 00:00:00 2001
From: lihang <lihang@vci-tech.com>
Date: 星期四, 13 七月 2023 11:13:16 +0800
Subject: [PATCH] 业务类型页面增加生命周期的处理

---
 Source/UBCS-WEB/public/src/page/login/userlogin.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Source/UBCS-WEB/public/src/page/login/userlogin.vue b/Source/UBCS-WEB/public/src/page/login/userlogin.vue
index 822ca1b..ff135b9 100644
--- a/Source/UBCS-WEB/public/src/page/login/userlogin.vue
+++ b/Source/UBCS-WEB/public/src/page/login/userlogin.vue
@@ -150,7 +150,7 @@
   },
   mounted() {
     //鍦╩ounted鑾峰彇棣栭〉涓嬫媺鑿滃崟鏁版嵁
-    this.$axios.get('/api/blade-system/tenant/tenant-map').then(res => {
+    this.$axios.get('/api/ubcs-system/tenant/tenant-map').then(res => {
       if (res.data.code == 200) {
         this.loginForm.region = res.data.data
       }
@@ -160,7 +160,7 @@
     'loginForm.deptId'() {
       const column = this.findObject(this.userOption.column, "deptId");
       if (this.loginForm.deptId.includes(",")) {
-        column.dicUrl = `/api/blade-system/dept/select?deptId=${this.loginForm.deptId}`;
+        column.dicUrl = `/api/ubcs-system/dept/select?deptId=${this.loginForm.deptId}`;
         column.display = true;
       } else {
         column.dicUrl = '';
@@ -169,7 +169,7 @@
     'loginForm.roleId'() {
       const column = this.findObject(this.userOption.column, "roleId");
       if (this.loginForm.roleId.includes(",")) {
-        column.dicUrl = `/api/blade-system/role/select?roleId=${this.loginForm.roleId}`;
+        column.dicUrl = `/api/ubcs-system/role/select?roleId=${this.loginForm.roleId}`;
         column.display = true;
       } else {
         column.dicUrl = '';

--
Gitblit v1.9.3