From fa3d2503f8c34049159058a19e941192e47fb89e Mon Sep 17 00:00:00 2001
From: dongyukun <1208714201@qq.com>
Date: 星期四, 02 一月 2025 14:19:28 +0800
Subject: [PATCH] 调度模型下发数据类型字典

---
 src/views/data/ind/data/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/data/ind/data/index.vue b/src/views/data/ind/data/index.vue
index 41df56d..3421ae4 100644
--- a/src/views/data/ind/data/index.vue
+++ b/src/views/data/ind/data/index.vue
@@ -27,7 +27,7 @@
           重置
         </el-button>
         <el-button
-          v-hasPermi="['system:dict:create']"
+          v-hasPermi="['data:ind-data-set:create']"
           plain
           type="primary"
           @click="openForm('create')"
@@ -54,18 +54,18 @@
       <el-table-column align="center" label="操作">
         <template #default="scope">
           <el-button
-            v-hasPermi="['system:dict:update']"
+            v-hasPermi="['data:ind-data-set:update']"
             link
             type="primary"
             @click="openForm('update', scope.row.id)"
           >
             修改
           </el-button>
-          <router-link :to="'/ind/data/field/' + scope.row.type">
+          <router-link :to="'/ind/data/field/' + scope.row.id">
             <el-button link type="primary">字段</el-button>
           </router-link>
           <el-button
-            v-hasPermi="['system:dict:delete']"
+            v-hasPermi="['data:ind-data-set:delete']"
             link
             type="danger"
             @click="handleDelete(scope.row.id)"

--
Gitblit v1.9.3