From fa0fc3195858a592d2ad1bdad0fa6126602ebf55 Mon Sep 17 00:00:00 2001
From: zrj <646384940@qq.com>
Date: Fri, 07 Jun 2024 14:17:10 +0800
Subject: [PATCH] 路径配置修改
---
src/views/tool/model.vue | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/tool/model.vue b/src/views/tool/model.vue
index a723f26..400fdaf 100644
--- a/src/views/tool/model.vue
+++ b/src/views/tool/model.vue
@@ -9,13 +9,13 @@
<el-button type="danger" size="small" icon="el-icon-delete" plain @click="handleDelete">删 除
</el-button>
</template>
- <template slot-scope="{row}" slot="menu">
- <el-button type="text" icon="el-icon-setting" size="small" plain class="none-border"
+ <template slot-scope="{row, size}" slot="menu">
+ <el-button type="text" icon="el-icon-setting" :size="size" plain class="none-border"
@click.stop="handleModel(row)">模型配置
</el-button>
</template>
- <template slot-scope="{row}" slot="modelTable">
- <el-tag>{{ row.modelTable }}</el-tag>
+ <template slot-scope="{row, size}" slot="modelTable">
+ <el-tag :size="size">{{ row.modelTable }}</el-tag>
</template>
</avue-crud>
<el-dialog title="数据库模型配置" :visible.sync="modelBox" :fullscreen="true" append-to-body>
@@ -39,7 +39,7 @@
getTableInfoByName,
getModelPrototype,
submitModelPrototype
-} from "@/api/tool/model"
+} from "@/ssoapi/tool/model"
import { entityDic, option, optionModel } from "@/const/tool/model"
import { validatenull } from "@/util/validate"
import { mapGetters } from "vuex"
@@ -74,7 +74,7 @@
option: {
...option,
- labelWidth: 120,
+ labelWidth: 96,
searchLabelWidth: 96,
searchShow: true,
searchMenuSpan: 3,
--
Gitblit v1.9.3