重构租户管理城市数据处理逻辑,支持直辖市特殊处理

This commit is contained in:
WUSIJIAN
2025-12-09 15:02:57 +08:00
parent 1138655123
commit 112994ac5b
6 changed files with 124 additions and 30 deletions

View File

@@ -36,7 +36,7 @@ import { addScript, updateScript } from '/@/api/customerService/script';
// 定义类型接口
interface DialogRow {
id: number;
id?: number | string;
tag: string;
creator: string;
content: string;

View File

@@ -216,7 +216,7 @@ const handleAdd = () => {
* 编辑话术
*/
const handleEdit = (row: ScriptItem) => {
editRoleRef.value?.openDialog(row);
editRoleRef.value?.openDialog(row as any);
};
/**