From 1b3da5b6c1e847d5e9381cbe21c1670340db9533 Mon Sep 17 00:00:00 2001
From: ludc <pUXmgxCf6A>
Date: 星期三, 17 五月 2023 21:54:11 +0800
Subject: [PATCH] 以及发布webservice接口功能搭建,将通通用接口移植过来
---
Source/UBCS-WEB/.settings/src/page/login/userlogin.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Source/UBCS-WEB/.settings/src/page/login/userlogin.vue b/Source/UBCS-WEB/.settings/src/page/login/userlogin.vue
index 412a86d..af14bc8 100644
--- a/Source/UBCS-WEB/.settings/src/page/login/userlogin.vue
+++ b/Source/UBCS-WEB/.settings/src/page/login/userlogin.vue
@@ -153,7 +153,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
}
@@ -163,7 +163,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 = '';
@@ -172,7 +172,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.10.0