Ver Fonte

feat: 修复路由跳转

yanglzh há 1 ano atrás
pai
commit
8ad8a4d108

+ 1 - 1
src/views/system/datahub/modeling/index.vue

@@ -58,7 +58,7 @@
 
 				<el-table-column label="操作" width="280" align="center" fixed="right">
 					<template #default="scope">
-						<router-link :to="'/config/datahub/modeling/' + scope.row.id" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff" v-auth="'detail'">
+						<router-link :to="'/datahub/modeling/' + scope.row.id" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff" v-auth="'detail'">
 							<span>字段管理</span>
 						</router-link>
 						<el-button size="small" text type="success" @click="onOpenRecord(scope.row)" v-if="scope.row.status == 1" v-auth="'record'">数据记录</el-button>

+ 1 - 1
src/views/system/datahub/source/index.vue

@@ -63,7 +63,7 @@
 
 				<el-table-column label="操作" width="200" align="center" fixed="right">
 					<template #default="scope">
-						<router-link :to="'/config/datahub/source/' + scope.row.sourceId" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff" v-auth="'detail'">
+						<router-link :to="'/datahub/source/' + scope.row.sourceId" class="link-type" style="padding-right: 12px; font-size: 12px; color: #409eff" v-auth="'detail'">
 							<span>详情</span>
 						</router-link>
 						<el-button size="small" text type="success" @click="onOpenList(scope.row)" v-if="scope.row.status == 1" v-auth="'detail'">数据记录</el-button>