From 3d30d036dfa0adb2a8328822fd2bd1d84300402a Mon Sep 17 00:00:00 2001
From: lihang <lihang@vci-tech.com>
Date: 星期一, 03 七月 2023 11:02:16 +0800
Subject: [PATCH] 业务类型添加对事务的提交做出分支处理
---
Source/UBCS-WEB/src/views/system/user.vue | 19 +++++++++----------
1 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/Source/UBCS-WEB/src/views/system/user.vue b/Source/UBCS-WEB/src/views/system/user.vue
index dc8e091..c7d7358 100644
--- a/Source/UBCS-WEB/src/views/system/user.vue
+++ b/Source/UBCS-WEB/src/views/system/user.vue
@@ -152,7 +152,6 @@
:value="item.id"
class="seloption"
>
-
</el-option>
</el-select>
<span slot="footer" class="dialog-footer">
@@ -778,10 +777,10 @@
})
//瑕佷紶閫掔殑id锛屼竴涓槸鏁扮粍鍙︿竴涓槸瀛楃涓�
this.UserPwdstrategyVO.userIds=this.selid;
- this.UserPwdstrategyVO.pwdstrategyId=this.id;
+ this.UserPwdstrategyVO.pwdstrategyId=this.id
//璇锋眰
- insert(this.UserPwdstrategyVO).then(()=>{
+ insert(this.UserPwdstrategyVO.userIds).then(()=>{
this.passVisible=false
this.$message({
type: "success",
@@ -802,10 +801,10 @@
selChange(row){
this.id=row
},
- selecload(page, params = {}) {
- getPage(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
- console.log(res)
- this.seoptions=res.data.data.content
+ selecload() {
+ getPage(1, -1).then(res => {
+ // console.log(res)
+ this.seoptions=res.data.data.records
});
},
nodeClick(data) {
@@ -968,9 +967,10 @@
if (this.selectionList.length === 1) {
this.roleTreeObj = this.selectionList[0].roleId.split(",");
}
- getRoleTree(this.selectionList[0].tenantId).then(res => {
+ getRoleTree().then(res => {
this.roleGrantList = res.data.data;
this.roleBox = true;
+
});
},
handlePlatform() {
@@ -1136,8 +1136,7 @@
overflow: scroll;
}
.selects{
- width: 400px;
- margin-left: 92px;
+ width: 100%;
}
.seloption{
margin-left: 10px;
--
Gitblit v1.10.0