fix [ rules ]: 修复无法过滤查询的问题

- 更换数据来源
This commit is contained in:
Huangzhe
2025-04-14 16:45:34 +08:00
parent 6edd89b937
commit dba3fb787d

View File

@@ -101,7 +101,7 @@ export default {
},
getTableData() {
// 需要处理 规则类型, 因为规则类型都是数字,需要转换成中文
return this.tableData.map(item => ({
return this.currentTableDate.map(item => ({
...item,
ruleType: item.ruleType === 1 ? '提示词规则' : '知识拆分规则'
}))