fix: PCF用户策略控制列表查询提示

This commit is contained in:
TsMask
2023-12-01 19:25:56 +08:00
parent 4fccb85353
commit e23438d910
2 changed files with 32 additions and 17 deletions

View File

@@ -408,6 +408,11 @@ function fnGetList() {
listRules(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
tableState.data = res.rows;
} else {
message.warning({
content: `${res.msg}`,
duration: 3,
});
}
tableState.loading = false;
});