243 lines
9.4 KiB
Vue
243 lines
9.4 KiB
Vue
<template>
|
|
<el-card>
|
|
<el-tabs v-model="activeName" tab-position="top">
|
|
<el-tab-pane label="基本信息" name="basic">
|
|
<basic-info-form ref="basicInfo" :info="info" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="生成信息" name="genInfo">
|
|
<gen-info-form ref="genInfo" :info="info" :columns="columns" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="字段信息" name="cloum">
|
|
<el-table ref="dragTableRef" v-loading="loading" :data="columns" row-key="columnId" min-height="80px"
|
|
:max-height="tableHeight">
|
|
<el-table-column label="#" type="index" class-name="allowDrag" width="60" fixed />
|
|
<el-table-column label="字段列名" prop="columnName" :show-overflow-tooltip="true" width="200" fixed />
|
|
<el-table-column label="字段描述" fixed width="120">
|
|
<template #default="scope">
|
|
<el-input v-model="scope.row.columnComment" :ref="setColumnsRef"
|
|
@keydown="nextFocus(scope.row, scope.$index, $event)"> </el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物理类型" prop="columnType" :show-overflow-tooltip="true" width="90" />
|
|
<el-table-column label="新增" width="60" align="center" v-if="info.tplCategory != 'select'">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isInsert" :disabled="scope.row.isIncrement"></el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="编辑" width="60" align="center" v-if="info.tplCategory != 'select'">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isEdit" :disabled="scope.row.isPk || scope.row.isIncrement"></el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<!-- <el-table-column label="排序" width="60" align="center">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isSort"
|
|
:disabled="scope.row.htmlType == 'imageUpload' || scope.row.htmlType == 'fileUpload'"></el-checkbox>
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="列表" width="60" align="center">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isList"></el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="查询" width="60" align="center">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isQuery"
|
|
:disabled="scope.row.htmlType == 'imageUpload' || scope.row.htmlType == 'fileUpload'">
|
|
</el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="查询方式" width="90" align="center">
|
|
<template #default="scope">
|
|
<el-select v-model="scope.row.queryType" :disabled="scope.row.htmlType == 'datetime'"
|
|
v-if="scope.row.isQuery">
|
|
<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="必填" width="60" align="center">
|
|
<template #default="scope">
|
|
<el-checkbox v-model="scope.row.isRequired"></el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="表单显示类型" width="140">
|
|
<template #default="scope">
|
|
<el-select v-model="scope.row.htmlType">
|
|
<el-option label="文本框" value="input" />
|
|
<el-option label="数字框" value="inputNumber" />
|
|
<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-option label="switch开关" value="switch" />
|
|
<el-option label="评分" value="rate" />
|
|
<el-option label="地图" value="map" />
|
|
<!-- <el-option label="自定义输入框" value="customInput" /> -->
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="字典类型" min-width="140">
|
|
<template #default="scope">
|
|
<el-select v-model="scope.row.dictType" clearable filterable placeholder="请选择"
|
|
v-if="scope.row.htmlType == 'select' || scope.row.htmlType == 'switch' || scope.row.htmlType == 'checkbox'">
|
|
<el-option v-for="dict in dictOptions" :key="dict.dictionary_value" :label="dict.dictionary_name"
|
|
:value="dict.dictionary_value">
|
|
<span style="float: left">{{ dict.dictionary_name }}</span>
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ dict.dictionary_value }}</span>
|
|
</el-option>
|
|
</el-select>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" width="200">
|
|
<template #default="scope">
|
|
<el-input v-model="scope.row.remark"> </el-input>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
<footer class="mt20" style="text-align: center">
|
|
<el-button type="primary" icon="check" @click="submitForm()">提交</el-button>
|
|
<el-button type="success" icon="refresh" @click="handleQuery()">刷新</el-button>
|
|
<el-button icon="back" @click="close()">返回</el-button>
|
|
</footer>
|
|
</el-card>
|
|
</template>
|
|
<script setup name="genedit">
|
|
// import { updateGenTable, getGenTable } from '@/api/tool/gen'
|
|
import { getGenTableDetail , updateGenTable } from '~/service/Gen';
|
|
import { getDictionaryList } from '~/service/Dictionary';
|
|
// import { listType } from '@/api/system/dict/type'
|
|
import basicInfoForm from './basicInfoForm.vue'
|
|
import genInfoForm from './genInfoForm.vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import Sortable from 'sortablejs'
|
|
import { ref, onMounted, reactive, watch, provide } from 'vue'
|
|
|
|
// 选中选项卡的 name
|
|
const activeName = ref('cloum')
|
|
// 表格的高度
|
|
const tableHeight = ref(document.documentElement.scrollHeight - 275 + 'px')
|
|
// 表列信息
|
|
const columns = ref([])
|
|
// 字典信息
|
|
const dictOptions = ref([])
|
|
// 表详细信息
|
|
const info = ref({})
|
|
const loading = ref(true)
|
|
const dragTableRef = ref()
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const basicInfo = ref(null)
|
|
const genInfo = ref(null)
|
|
// const { proxy } = getCurrentInstance()
|
|
|
|
async function handleQuery() {
|
|
const tableId = route.query && route.query.tableId
|
|
if (tableId) {
|
|
// 获取表详细信息
|
|
await getGenTableDetail({ tableId: tableId }).then((res) => {
|
|
loading.value = false
|
|
columns.value = res.columns
|
|
info.value = { ...res.data, ...res.data.options }
|
|
console.log(info.value, '13423424342');
|
|
})
|
|
}
|
|
}
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
let genTable = info.value
|
|
genTable.columns = columns.value
|
|
// console.log(genTable,"值");
|
|
|
|
updateGenTable(genTable).then((res) => {
|
|
// proxy.$modal.msgSuccess(res.msg)
|
|
ElMessage({
|
|
message: res.msg,
|
|
type: 'success',
|
|
})
|
|
if (res.code === 200) {
|
|
close()
|
|
}
|
|
})
|
|
}
|
|
|
|
function getFormPromise(form) {
|
|
return new Promise((resolve) => {
|
|
form.validate((res) => {
|
|
resolve(res)
|
|
})
|
|
})
|
|
}
|
|
|
|
/** 查询字典下拉列表 */
|
|
getDictionaryList().then((response) => {
|
|
dictOptions.value = response.data
|
|
})
|
|
/** 关闭按钮 */
|
|
function close() {
|
|
router.push({
|
|
path: '/gen',
|
|
query: { page: 1 },
|
|
})
|
|
// proxy.$tab.closeOpenPage(obj)
|
|
}
|
|
|
|
/*************** table column 回车代码 start*************/
|
|
// 动态ref设置值
|
|
const columnRefs = ref([])
|
|
const setColumnsRef = (el) => {
|
|
if (el) {
|
|
columnRefs.value.push(el)
|
|
}
|
|
}
|
|
|
|
// 回车到下一行
|
|
function nextFocus(row, index, e) {
|
|
var length = columnRefs.value.length
|
|
var keyCode = e.keyCode || e.which || e.charCode
|
|
if (keyCode === 13) {
|
|
if (length - 1 == index) {
|
|
console.log('到最后一行了')
|
|
} else {
|
|
columnRefs.value[index + 1].focus()
|
|
}
|
|
}
|
|
}
|
|
/*************** table column 回车代码 end *************/
|
|
// 拖动排序
|
|
const tableSort = () => {
|
|
const tbody = document.querySelector('.el-table__body > tbody')
|
|
|
|
Sortable.create(tbody, {
|
|
onEnd: (evt) => {
|
|
const targetRow = columns.value.splice(evt.oldIndex, 1)[0]
|
|
columns.value.splice(evt.newIndex, 0, targetRow)
|
|
for (const index in columns.value) {
|
|
columns.value[index].sort = parseInt(index) + 1
|
|
}
|
|
nextTick(() => {
|
|
console.log(columns.value)
|
|
})
|
|
},
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
tableSort()
|
|
})
|
|
|
|
handleQuery()
|
|
</script>
|