修复
This commit is contained in:
parent
915ac72596
commit
f22200c965
|
|
@ -1,61 +1,61 @@
|
||||||
# 数据源配置
|
# 数据源配置
|
||||||
spring:
|
spring:
|
||||||
datasource:
|
datasource:
|
||||||
type: com.alibaba.druid.pool.DruidDataSource
|
type: com.alibaba.druid.pool.DruidDataSource
|
||||||
driverClassName: com.mysql.cj.jdbc.Driver
|
driverClassName: com.mysql.cj.jdbc.Driver
|
||||||
druid:
|
druid:
|
||||||
# 主库数据源
|
# 主库数据源
|
||||||
master:
|
master:
|
||||||
url: jdbc:mysql://127.0.0.1:3306/ry_xinli?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
url: jdbc:mysql://1.15.149.240:3306/ry_xinli?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
||||||
username: ry_xinli
|
username: ry_xinli
|
||||||
password: ZLZBcfGtsWJe5r4z
|
password: ZLZBcfGtsWJe5r4z
|
||||||
# 从库数据源
|
# 从库数据源
|
||||||
slave:
|
slave:
|
||||||
# 从数据源开关/默认关闭
|
# 从数据源开关/默认关闭
|
||||||
enabled: false
|
enabled: false
|
||||||
url:
|
url:
|
||||||
username:
|
username:
|
||||||
password:
|
password:
|
||||||
# 初始连接数
|
# 初始连接数
|
||||||
initialSize: 10
|
initialSize: 5
|
||||||
# 最小连接池数量
|
# 最小连接池数量
|
||||||
minIdle: 20
|
minIdle: 10
|
||||||
# 最大连接池数量
|
# 最大连接池数量
|
||||||
maxActive: 100
|
maxActive: 20
|
||||||
# 配置获取连接等待超时的时间(减少到20秒,快速失败)
|
# 配置获取连接等待超时的时间
|
||||||
maxWait: 20000
|
maxWait: 60000
|
||||||
# 配置连接超时时间
|
# 配置连接超时时间
|
||||||
connectTimeout: 10000
|
connectTimeout: 30000
|
||||||
# 配置网络超时时间
|
# 配置网络超时时间
|
||||||
socketTimeout: 30000
|
socketTimeout: 60000
|
||||||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||||
timeBetweenEvictionRunsMillis: 60000
|
timeBetweenEvictionRunsMillis: 60000
|
||||||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||||
minEvictableIdleTimeMillis: 300000
|
minEvictableIdleTimeMillis: 300000
|
||||||
# 配置一个连接在池中最大生存的时间,单位是毫秒
|
# 配置一个连接在池中最大生存的时间,单位是毫秒
|
||||||
maxEvictableIdleTimeMillis: 900000
|
maxEvictableIdleTimeMillis: 900000
|
||||||
# 配置检测连接是否有效
|
# 配置检测连接是否有效
|
||||||
validationQuery: SELECT 1 FROM DUAL
|
validationQuery: SELECT 1
|
||||||
testWhileIdle: true
|
testWhileIdle: true
|
||||||
testOnBorrow: false
|
testOnBorrow: false
|
||||||
testOnReturn: false
|
testOnReturn: false
|
||||||
webStatFilter:
|
webStatFilter:
|
||||||
enabled: true
|
enabled: true
|
||||||
statViewServlet:
|
statViewServlet:
|
||||||
enabled: true
|
enabled: true
|
||||||
# 设置白名单,不填则允许所有访问(生产环境必须配置!)
|
# 设置白名单,不填则允许所有访问(生产环境必须配置!)
|
||||||
allow: 127.0.0.1,192.168.0.0/16
|
allow: 127.0.0.1,192.168.0.0/16
|
||||||
url-pattern: /druid/*
|
url-pattern: /druid/*
|
||||||
# 控制台管理用户名和密码(重要:生产环境必须修改)
|
# 控制台管理用户名和密码(重要:生产环境必须修改)
|
||||||
login-username: ddnai_admin
|
login-username: ddnai_admin
|
||||||
login-password: Ddnai@2025#Druid
|
login-password: Ddnai@2025#Druid
|
||||||
filter:
|
filter:
|
||||||
stat:
|
stat:
|
||||||
enabled: true
|
enabled: true
|
||||||
# 慢SQL记录
|
# 慢SQL记录
|
||||||
log-slow-sql: true
|
log-slow-sql: true
|
||||||
slow-sql-millis: 1000
|
slow-sql-millis: 1000
|
||||||
merge-sql: true
|
merge-sql: true
|
||||||
wall:
|
wall:
|
||||||
config:
|
config:
|
||||||
multi-statement-allow: true
|
multi-statement-allow: true
|
||||||
|
|
|
||||||
|
|
@ -102,39 +102,50 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 添加或修改权限对话框 -->
|
<!-- 添加或修改权限对话框 -->
|
||||||
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||||
<el-form-item label="量表" prop="scaleId">
|
<el-form-item label="量表" prop="scaleId">
|
||||||
<el-select v-model="form.scaleId" placeholder="请选择量表" style="width: 100%;" filterable>
|
<div style="border: 1px solid #DCDFE6; border-radius: 4px; padding: 10px; max-height: 300px; overflow-y: auto;">
|
||||||
<el-option
|
<el-input
|
||||||
v-for="scale in scaleList"
|
v-model="scaleSearchKeyword"
|
||||||
:key="scale.scaleId"
|
placeholder="请输入量表名称搜索"
|
||||||
:label="scale.scaleName"
|
clearable
|
||||||
:value="scale.scaleId">
|
size="small"
|
||||||
</el-option>
|
style="margin-bottom: 10px;"
|
||||||
</el-select>
|
prefix-icon="el-icon-search">
|
||||||
|
</el-input>
|
||||||
|
<el-table
|
||||||
|
:data="filteredScaleList"
|
||||||
|
@row-click="handleScaleRowClick"
|
||||||
|
highlight-current-row
|
||||||
|
max-height="250">
|
||||||
|
<el-table-column width="55" align="center">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-radio
|
||||||
|
:label="scope.row.scaleId"
|
||||||
|
v-model="form.scaleId"
|
||||||
|
@change="handleScaleChange(scope.row)">
|
||||||
|
<span></span>
|
||||||
|
</el-radio>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="量表名称" prop="scaleName" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="量表编码" prop="scaleCode" width="150" />
|
||||||
|
<el-table-column label="题目数量" prop="itemCount" width="100" align="center" />
|
||||||
|
</el-table>
|
||||||
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="用户" prop="userIds">
|
<el-form-item label="用户" prop="userIds">
|
||||||
<el-select
|
<el-input
|
||||||
v-model="form.userIds"
|
:value="selectedUserDisplay"
|
||||||
placeholder="请选择用户(可多选,留空表示所有用户)"
|
placeholder="点击选择用户(留空表示所有用户)"
|
||||||
clearable
|
readonly
|
||||||
filterable
|
|
||||||
multiple
|
|
||||||
reserve-keyword
|
|
||||||
:loading="userSearchLoading"
|
|
||||||
style="width: 100%;"
|
style="width: 100%;"
|
||||||
@focus="handleSelectFocus"
|
@focus="showUserSelectDialog = true">
|
||||||
@change="handleUserIdsChange">
|
<el-button slot="append" icon="el-icon-search" @click="showUserSelectDialog = true">选择</el-button>
|
||||||
<el-option
|
</el-input>
|
||||||
v-for="user in userOptions"
|
|
||||||
:key="user.userId"
|
|
||||||
:label="user.nickName ? `${user.nickName}(${user.userName})` : user.userName"
|
|
||||||
:value="user.userId">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
<div style="margin-top: 5px; color: #909399; font-size: 12px;">
|
<div style="margin-top: 5px; color: #909399; font-size: 12px;">
|
||||||
提示:可输入姓名或账号搜索,支持多选。留空表示所有用户。
|
提示:留空表示所有用户。点击"选择"按钮可按信息编号、姓名、监区筛选用户。
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="开始时间" prop="startTime">
|
<el-form-item label="开始时间" prop="startTime">
|
||||||
|
|
@ -170,6 +181,71 @@
|
||||||
<el-button @click="cancel">取 消</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
|
<!-- 用户选择对话框 -->
|
||||||
|
<el-dialog title="选择用户" :visible.sync="showUserSelectDialog" width="900px" append-to-body>
|
||||||
|
<el-form :model="userQueryParams" ref="userQueryForm" size="small" :inline="true">
|
||||||
|
<el-form-item label="信息编号" prop="infoNumber">
|
||||||
|
<el-input
|
||||||
|
v-model="userQueryParams.infoNumber"
|
||||||
|
placeholder="请输入信息编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleUserQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="姓名" prop="userName">
|
||||||
|
<el-input
|
||||||
|
v-model="userQueryParams.userName"
|
||||||
|
placeholder="请输入姓名"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleUserQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="监区" prop="deptId">
|
||||||
|
<el-select v-model="userQueryParams.deptId" placeholder="请选择监区" clearable style="width: 200px">
|
||||||
|
<el-option
|
||||||
|
v-for="dept in deptOptions"
|
||||||
|
:key="dept.id"
|
||||||
|
:label="dept.label"
|
||||||
|
:value="dept.id">
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleUserQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetUserQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<el-table
|
||||||
|
ref="userTable"
|
||||||
|
:data="userSelectList"
|
||||||
|
@selection-change="handleUserSelectionChange"
|
||||||
|
height="400px"
|
||||||
|
v-loading="userSelectLoading">
|
||||||
|
<el-table-column type="selection" width="55"></el-table-column>
|
||||||
|
<el-table-column label="信息编号" prop="infoNumber" width="120" />
|
||||||
|
<el-table-column label="姓名" prop="userName" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="账号" prop="userAccount" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="监区" prop="deptName" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="状态" align="center" prop="status" width="80">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-tag v-if="scope.row.status === '0'" type="success" size="small">正常</el-tag>
|
||||||
|
<el-tag v-else type="danger" size="small">停用</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination
|
||||||
|
v-show="userSelectTotal > 0"
|
||||||
|
:total="userSelectTotal"
|
||||||
|
:page.sync="userQueryParams.pageNum"
|
||||||
|
:limit.sync="userQueryParams.pageSize"
|
||||||
|
@pagination="getUserSelectList"
|
||||||
|
/>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="handleConfirmUserSelect">确 定</el-button>
|
||||||
|
<el-button @click="showUserSelectDialog = false">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -179,6 +255,8 @@ import { listScale } from "@/api/psychology/scale";
|
||||||
import { allocatedUserList } from "@/api/system/role";
|
import { allocatedUserList } from "@/api/system/role";
|
||||||
import { listRole } from "@/api/system/role";
|
import { listRole } from "@/api/system/role";
|
||||||
import { getUser } from "@/api/system/user";
|
import { getUser } from "@/api/system/user";
|
||||||
|
import { listProfile } from "@/api/psychology/profile";
|
||||||
|
import { deptTreeSelect } from "@/api/system/user";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "PsyScalePermission",
|
name: "PsyScalePermission",
|
||||||
|
|
@ -200,6 +278,8 @@ export default {
|
||||||
permissionList: [],
|
permissionList: [],
|
||||||
// 量表列表
|
// 量表列表
|
||||||
scaleList: [],
|
scaleList: [],
|
||||||
|
// 量表搜索关键词
|
||||||
|
scaleSearchKeyword: "",
|
||||||
// 用户列表(用于下拉框显示)
|
// 用户列表(用于下拉框显示)
|
||||||
userOptions: [],
|
userOptions: [],
|
||||||
// 用户搜索加载状态
|
// 用户搜索加载状态
|
||||||
|
|
@ -210,6 +290,24 @@ export default {
|
||||||
title: "",
|
title: "",
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
|
// 是否显示用户选择对话框
|
||||||
|
showUserSelectDialog: false,
|
||||||
|
// 用户选择相关
|
||||||
|
userSelectList: [],
|
||||||
|
userSelectTotal: 0,
|
||||||
|
userSelectLoading: false,
|
||||||
|
selectedUserIds: [],
|
||||||
|
// 部门选项
|
||||||
|
deptOptions: [],
|
||||||
|
// 用户查询参数
|
||||||
|
userQueryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
infoNumber: undefined,
|
||||||
|
userName: undefined,
|
||||||
|
deptId: undefined,
|
||||||
|
status: '0'
|
||||||
|
},
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
|
|
@ -231,10 +329,60 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
// 过滤后的量表列表
|
||||||
|
filteredScaleList() {
|
||||||
|
if (!this.scaleSearchKeyword) {
|
||||||
|
return this.scaleList;
|
||||||
|
}
|
||||||
|
const keyword = this.scaleSearchKeyword.toLowerCase();
|
||||||
|
return this.scaleList.filter(scale => {
|
||||||
|
const scaleName = (scale.scaleName || '').toLowerCase();
|
||||||
|
const scaleCode = (scale.scaleCode || '').toLowerCase();
|
||||||
|
return scaleName.includes(keyword) || scaleCode.includes(keyword);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 选中用户的显示文本
|
||||||
|
selectedUserDisplay() {
|
||||||
|
const userIds = this.form.userIds || [];
|
||||||
|
if (userIds.length === 0) {
|
||||||
|
return "";
|
||||||
|
} else if (userIds.length === 1) {
|
||||||
|
const user = this.userOptions.find(u => u.userId === userIds[0]);
|
||||||
|
return user ? (user.nickName ? `${user.nickName}(${user.userName})` : user.userName) : "";
|
||||||
|
} else {
|
||||||
|
return `已选择 ${userIds.length} 个用户`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
// 监听用户选择对话框打开
|
||||||
|
showUserSelectDialog(val) {
|
||||||
|
if (val) {
|
||||||
|
// 打开对话框时加载用户列表
|
||||||
|
this.resetUserQuery();
|
||||||
|
this.selectedUserIds = [...(this.form.userIds || [])];
|
||||||
|
this.getUserSelectList().then(() => {
|
||||||
|
// 确保已选中的用户被选中
|
||||||
|
this.$nextTick(() => {
|
||||||
|
if (this.form.userIds && this.form.userIds.length > 0 && this.$refs.userTable) {
|
||||||
|
this.form.userIds.forEach(userId => {
|
||||||
|
const row = this.userSelectList.find(u => u.userId === userId);
|
||||||
|
if (row) {
|
||||||
|
this.$refs.userTable.toggleRowSelection(row, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.loadScales();
|
this.loadScales();
|
||||||
this.loadUsers();
|
this.loadUsers();
|
||||||
|
this.loadDeptTree();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 查询权限列表 */
|
/** 查询权限列表 */
|
||||||
|
|
@ -345,6 +493,88 @@ export default {
|
||||||
console.error("获取学员角色ID失败:", error);
|
console.error("获取学员角色ID失败:", error);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
/** 加载部门树 */
|
||||||
|
loadDeptTree() {
|
||||||
|
deptTreeSelect().then(response => {
|
||||||
|
this.deptOptions = response.data || [];
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 量表行点击 */
|
||||||
|
handleScaleRowClick(row) {
|
||||||
|
this.form.scaleId = row.scaleId;
|
||||||
|
},
|
||||||
|
/** 量表选择改变 */
|
||||||
|
handleScaleChange(scale) {
|
||||||
|
this.form.scaleId = scale.scaleId;
|
||||||
|
},
|
||||||
|
/** 获取用户选择列表 */
|
||||||
|
getUserSelectList() {
|
||||||
|
this.userSelectLoading = true;
|
||||||
|
// 使用用户档案接口查询,支持信息编号、姓名、监区筛选
|
||||||
|
const query = {
|
||||||
|
pageNum: this.userQueryParams.pageNum,
|
||||||
|
pageSize: this.userQueryParams.pageSize,
|
||||||
|
infoNumber: this.userQueryParams.infoNumber,
|
||||||
|
userName: this.userQueryParams.userName,
|
||||||
|
deptId: this.userQueryParams.deptId,
|
||||||
|
status: this.userQueryParams.status
|
||||||
|
};
|
||||||
|
return listProfile(query).then(response => {
|
||||||
|
this.userSelectList = (response.rows || []).map(profile => ({
|
||||||
|
userId: profile.userId,
|
||||||
|
infoNumber: profile.infoNumber,
|
||||||
|
userName: profile.userName,
|
||||||
|
userAccount: profile.infoNumber, // 使用信息编号作为账号显示
|
||||||
|
deptName: profile.deptName,
|
||||||
|
status: profile.status || '0'
|
||||||
|
}));
|
||||||
|
this.userSelectTotal = response.total || 0;
|
||||||
|
this.userSelectLoading = false;
|
||||||
|
return response;
|
||||||
|
}).catch(() => {
|
||||||
|
this.userSelectLoading = false;
|
||||||
|
return Promise.reject();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 用户查询 */
|
||||||
|
handleUserQuery() {
|
||||||
|
this.userQueryParams.pageNum = 1;
|
||||||
|
this.getUserSelectList();
|
||||||
|
},
|
||||||
|
/** 重置用户查询 */
|
||||||
|
resetUserQuery() {
|
||||||
|
this.resetForm("userQueryForm");
|
||||||
|
this.userQueryParams = {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
infoNumber: undefined,
|
||||||
|
userName: undefined,
|
||||||
|
deptId: undefined,
|
||||||
|
status: '0'
|
||||||
|
};
|
||||||
|
this.handleUserQuery();
|
||||||
|
},
|
||||||
|
/** 用户选择改变 */
|
||||||
|
handleUserSelectionChange(selection) {
|
||||||
|
this.selectedUserIds = selection.map(item => item.userId);
|
||||||
|
},
|
||||||
|
/** 确认用户选择 */
|
||||||
|
handleConfirmUserSelect() {
|
||||||
|
// 更新 form.userIds
|
||||||
|
this.form.userIds = [...this.selectedUserIds];
|
||||||
|
// 确保选中的用户在 userOptions 中
|
||||||
|
this.selectedUserIds.forEach(userId => {
|
||||||
|
const user = this.userSelectList.find(u => u.userId === userId);
|
||||||
|
if (user && !this.userOptions.find(u => u.userId === userId)) {
|
||||||
|
this.userOptions.push({
|
||||||
|
userId: user.userId,
|
||||||
|
userName: user.userAccount || user.userName,
|
||||||
|
nickName: user.userName
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.showUserSelectDialog = false;
|
||||||
|
},
|
||||||
/** 搜索用户(远程搜索) */
|
/** 搜索用户(远程搜索) */
|
||||||
searchUsers(keyword) {
|
searchUsers(keyword) {
|
||||||
if (!this.studentRoleId) {
|
if (!this.studentRoleId) {
|
||||||
|
|
@ -545,6 +775,8 @@ export default {
|
||||||
_permissionIds: undefined, // 存储所有相关的权限ID(用于编辑时删除)
|
_permissionIds: undefined, // 存储所有相关的权限ID(用于编辑时删除)
|
||||||
_groupKey: undefined // 分组key
|
_groupKey: undefined // 分组key
|
||||||
};
|
};
|
||||||
|
this.scaleSearchKeyword = "";
|
||||||
|
this.selectedUserIds = [];
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
},
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
|
|
@ -574,6 +806,7 @@ export default {
|
||||||
/** 新增按钮操作 */
|
/** 新增按钮操作 */
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
this.reset();
|
this.reset();
|
||||||
|
this.scaleSearchKeyword = "";
|
||||||
// 确保 userOptions 有初始数据
|
// 确保 userOptions 有初始数据
|
||||||
if (this.userOptions.length === 0) {
|
if (this.userOptions.length === 0) {
|
||||||
this.searchUsers("");
|
this.searchUsers("");
|
||||||
|
|
@ -584,6 +817,7 @@ export default {
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.reset();
|
this.reset();
|
||||||
|
this.scaleSearchKeyword = "";
|
||||||
// 汇总后的记录包含多个权限ID,需要加载所有相关的权限记录
|
// 汇总后的记录包含多个权限ID,需要加载所有相关的权限记录
|
||||||
const permissionIds = row.permissionIds || (row.permissionId ? [row.permissionId] : []);
|
const permissionIds = row.permissionIds || (row.permissionId ? [row.permissionId] : []);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user