Files
RuoYi-Vue3/src/views/tool/gen/editTable.vue

201 lines
7.9 KiB
Vue
Raw Normal View History

2021-11-30 09:55:37 +08:00
<template>
<el-card>
<el-tabs v-model="activeName">
<el-tab-pane label="基本信息" name="basic">
<basic-info-form ref="basicInfo" :info="info" />
</el-tab-pane>
<el-tab-pane label="字段信息" name="columnInfo">
<el-table ref="dragTable" :data="columns" row-key="columnId" :max-height="tableHeight">
<el-table-column label="序号" type="index" min-width="5%"/>
<el-table-column
label="字段列名"
prop="columnName"
min-width="10%"
:show-overflow-tooltip="true"
/>
<el-table-column label="字段描述" min-width="10%">
<template #default="scope">
<el-input v-model="scope.row.columnComment"></el-input>
</template>
</el-table-column>
<el-table-column
label="物理类型"
prop="columnType"
min-width="10%"
:show-overflow-tooltip="true"
/>
<el-table-column label="Java类型" min-width="11%">
<template #default="scope">
<el-select v-model="scope.row.javaType">
<el-option label="Long" value="Long" />
<el-option label="String" value="String" />
<el-option label="Integer" value="Integer" />
<el-option label="Double" value="Double" />
<el-option label="BigDecimal" value="BigDecimal" />
<el-option label="Date" value="Date" />
2022-01-01 09:39:57 +08:00
<el-option label="Boolean" value="Boolean" />
2021-11-30 09:55:37 +08:00
</el-select>
</template>
</el-table-column>
<el-table-column label="java属性" min-width="10%">
<template #default="scope">
<el-input v-model="scope.row.javaField"></el-input>
</template>
</el-table-column>
<el-table-column label="插入" min-width="5%">
<template #default="scope">
<el-checkbox true-label="1" false-label="0" v-model="scope.row.isInsert"></el-checkbox>
2021-11-30 09:55:37 +08:00
</template>
</el-table-column>
<el-table-column label="编辑" min-width="5%">
<template #default="scope">
<el-checkbox true-label="1" false-label="0" v-model="scope.row.isEdit"></el-checkbox>
2021-11-30 09:55:37 +08:00
</template>
</el-table-column>
<el-table-column label="列表" min-width="5%">
<template #default="scope">
<el-checkbox true-label="1" false-label="0" v-model="scope.row.isList"></el-checkbox>
2021-11-30 09:55:37 +08:00
</template>
</el-table-column>
<el-table-column label="查询" min-width="5%">
<template #default="scope">
<el-checkbox true-label="1" false-label="0" v-model="scope.row.isQuery"></el-checkbox>
2021-11-30 09:55:37 +08:00
</template>
</el-table-column>
<el-table-column label="查询方式" min-width="10%">
<template #default="scope">
<el-select v-model="scope.row.queryType">
<el-option label="=" value="EQ" />
<el-option label="!=" value="NE" />
<el-option label=">" value="GT" />
<el-option label=">=" value="GTE" />
<el-option label="<" value="LT" />
<el-option label="<=" value="LTE" />
<el-option label="LIKE" value="LIKE" />
<el-option label="BETWEEN" value="BETWEEN" />
</el-select>
</template>
</el-table-column>
<el-table-column label="必填" min-width="5%">
<template #default="scope">
<el-checkbox true-label="1" false-label="0" v-model="scope.row.isRequired"></el-checkbox>
2021-11-30 09:55:37 +08:00
</template>
</el-table-column>
<el-table-column label="显示类型" min-width="12%">
<template #default="scope">
<el-select v-model="scope.row.htmlType">
<el-option label="文本框" value="input" />
<el-option label="文本域" value="textarea" />
<el-option label="下拉框" value="select" />
<el-option label="单选框" value="radio" />
<el-option label="复选框" value="checkbox" />
<el-option label="日期控件" value="datetime" />
<el-option label="图片上传" value="imageUpload" />
<el-option label="文件上传" value="fileUpload" />
<el-option label="富文本控件" value="editor" />
</el-select>
</template>
</el-table-column>
<el-table-column label="字典类型" min-width="12%">
<template #default="scope">
<el-select v-model="scope.row.dictType" clearable filterable placeholder="请选择">
<el-option
v-for="dict in dictOptions"
:key="dict.dictType"
:label="dict.dictName"
:value="dict.dictType">
<span style="float: left">{{ dict.dictName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ dict.dictType }}</span>
</el-option>
</el-select>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane label="生成信息" name="genInfo">
<gen-info-form ref="genInfo" :info="info" :tables="tables" />
</el-tab-pane>
</el-tabs>
<el-form label-width="100px">
2022-01-11 17:24:45 +08:00
<div style="text-align: center;margin-left:-100px;margin-top:10px;">
2021-11-30 09:55:37 +08:00
<el-button type="primary" @click="submitForm()">提交</el-button>
<el-button @click="close()">返回</el-button>
2022-01-11 17:24:45 +08:00
</div>
2021-11-30 09:55:37 +08:00
</el-form>
</el-card>
</template>
<script setup name="GenEdit">
2025-04-27 09:58:29 +08:00
import { getGenTable, updateGenTable } from "@/api/tool/gen"
import { optionselect as getDictOptionselect } from "@/api/system/dict/type"
import basicInfoForm from "./basicInfoForm"
import genInfoForm from "./genInfoForm"
2021-11-30 09:55:37 +08:00
2025-04-27 09:58:29 +08:00
const route = useRoute()
const { proxy } = getCurrentInstance()
2021-11-30 09:55:37 +08:00
2025-04-27 09:58:29 +08:00
const activeName = ref("columnInfo")
const tableHeight = ref(document.documentElement.scrollHeight - 245 + "px")
const tables = ref([])
const columns = ref([])
const dictOptions = ref([])
const info = ref({})
2021-11-30 09:55:37 +08:00
/** 提交按钮 */
function submitForm() {
2025-04-27 09:58:29 +08:00
const basicForm = proxy.$refs.basicInfo.$refs.basicInfoForm
const genForm = proxy.$refs.genInfo.$refs.genInfoForm
2021-11-30 09:55:37 +08:00
Promise.all([basicForm, genForm].map(getFormPromise)).then(res => {
2025-04-27 09:58:29 +08:00
const validateResult = res.every(item => !!item)
2021-11-30 09:55:37 +08:00
if (validateResult) {
2025-04-27 09:58:29 +08:00
const genTable = Object.assign({}, info.value)
genTable.columns = columns.value
2021-11-30 09:55:37 +08:00
genTable.params = {
2022-04-09 13:02:50 +08:00
treeCode: info.value.treeCode,
treeName: info.value.treeName,
treeParentCode: info.value.treeParentCode,
parentMenuId: info.value.parentMenuId
2025-04-27 09:58:29 +08:00
}
2021-11-30 09:55:37 +08:00
updateGenTable(genTable).then(res => {
2025-04-27 09:58:29 +08:00
proxy.$modal.msgSuccess(res.msg)
2021-11-30 09:55:37 +08:00
if (res.code === 200) {
2025-04-27 09:58:29 +08:00
close()
2021-11-30 09:55:37 +08:00
}
2025-04-27 09:58:29 +08:00
})
2021-11-30 09:55:37 +08:00
} else {
2025-04-27 09:58:29 +08:00
proxy.$modal.msgError("表单校验未通过,请重新检查提交内容")
2021-11-30 09:55:37 +08:00
}
2025-04-27 09:58:29 +08:00
})
2021-11-30 09:55:37 +08:00
}
2024-06-28 17:01:39 +08:00
2021-11-30 09:55:37 +08:00
function getFormPromise(form) {
return new Promise(resolve => {
form.validate(res => {
2025-04-27 09:58:29 +08:00
resolve(res)
})
})
2021-11-30 09:55:37 +08:00
}
2024-06-28 17:01:39 +08:00
2021-11-30 09:55:37 +08:00
function close() {
2025-04-27 09:58:29 +08:00
const obj = { path: "/tool/gen", query: { t: Date.now(), pageNum: route.query.pageNum } }
proxy.$tab.closeOpenPage(obj)
2021-11-30 09:55:37 +08:00
}
(() => {
2025-04-27 09:58:29 +08:00
const tableId = route.params && route.params.tableId
2021-11-30 09:55:37 +08:00
if (tableId) {
// 获取表详细信息
getGenTable(tableId).then(res => {
2025-04-27 09:58:29 +08:00
columns.value = res.data.rows
info.value = res.data.info
tables.value = res.data.tables
})
2021-11-30 09:55:37 +08:00
/** 查询字典下拉列表 */
getDictOptionselect().then(response => {
2025-04-27 09:58:29 +08:00
dictOptions.value = response.data
})
2021-11-30 09:55:37 +08:00
}
2025-04-27 09:58:29 +08:00
})()
2021-11-30 09:55:37 +08:00
</script>