Merge branch 'abp' into abp-dev

This commit is contained in:
陈淳
2024-04-15 08:50:06 +08:00
committed by tyjctl
37 changed files with 118 additions and 118 deletions

View File

@@ -85,8 +85,8 @@
<el-icon><question-filled /></el-icon>
</el-tooltip>
</template>
<el-radio v-model="info.genType" label="0">zip压缩包</el-radio>
<el-radio v-model="info.genType" label="1">自定义路径</el-radio>
<el-radio v-model="info.genType" value="0">zip压缩包</el-radio>
<el-radio v-model="info.genType" value="1">自定义路径</el-radio>
</el-form-item>
</el-col>

View File

@@ -106,7 +106,7 @@
<template #default="scope">
<el-tooltip content="预览" placement="top">
<el-button
type="text"
link
icon="View"
@click="handlePreview(scope.row)"
v-hasPermi="['tool:gen:preview']"
@@ -114,7 +114,7 @@
</el-tooltip>
<el-tooltip content="编辑" placement="top">
<el-button
type="text"
link
icon="Edit"
@click="handleEditTable(scope.row)"
v-hasPermi="['tool:gen:edit']"
@@ -122,7 +122,7 @@
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button
type="text"
link
icon="Delete"
@click="handleDelete(scope.row)"
v-hasPermi="['tool:gen:remove']"
@@ -130,7 +130,7 @@
</el-tooltip>
<el-tooltip content="同步" placement="top">
<el-button
type="text"
link
icon="Refresh"
@click="handleSynchDb(scope.row)"
v-hasPermi="['tool:gen:edit']"
@@ -138,7 +138,7 @@
</el-tooltip>
<el-tooltip content="生成代码" placement="top">
<el-button
type="text"
link
icon="Download"
@click="handleGenTable(scope.row)"
v-hasPermi="['tool:gen:code']"