|
@@ -1,11 +1,47 @@
|
|
|
<template>
|
|
|
<el-card>
|
|
|
+ <el-row type="flex" justify="space-between" style="margin: 10px 0;">
|
|
|
+ <el-col :span="1.5" style="display: flex; align-items: center;">
|
|
|
+ <el-form label-width="100px" style="display: flex; align-items: center;">
|
|
|
+ <el-form-item style="text-align: center;margin-left:-100px;margin-top:0; margin-bottom: 0;">
|
|
|
+ <el-button type="primary" @click="submitForm()">保存</el-button>
|
|
|
+ <el-button @click="close()">返回</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-col>
|
|
|
+ <el-row type="flex" :gutter="10" justify="end">
|
|
|
+ <el-col :span="1.5" style="display: flex; align-items: center;">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['system:post:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5" style="display: flex; align-items: center;">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['system:post:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
|
|
|
+ </el-row>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
<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="cloum">
|
|
|
- <el-table ref="dragTable" :data="cloumns" row-key="columnId" :max-height="tableHeight">
|
|
|
+ <el-table ref="dragTable" :data="cloumns" row-key="columnId" :max-height="tableHeight" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="序号" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
<el-table-column
|
|
|
label="字段列名"
|
|
@@ -24,59 +60,27 @@
|
|
|
min-width="10%"
|
|
|
:show-overflow-tooltip="true"
|
|
|
/>
|
|
|
- <el-table-column label="Java类型" min-width="11%">
|
|
|
- <template slot-scope="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" />
|
|
|
- </el-select>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="java属性" min-width="10%">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-input v-model="scope.row.javaField"></el-input>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column label="插入" min-width="5%">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-checkbox true-label="1" v-model="scope.row.isInsert"></el-checkbox>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="编辑" min-width="5%">
|
|
|
+ <el-table-column label="字段显示规则" align="center" prop="mask" min-width="11%"/>
|
|
|
+ <el-table-column label="排序" min-width="8%" align="center" prop="sort"/>
|
|
|
+ <el-table-column label="输入字段" min-width="10%">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-checkbox true-label="1" v-model="scope.row.isEdit"></el-checkbox>
|
|
|
+ <el-checkbox true-label="1" v-model="scope.row.isIn"></el-checkbox>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="列表" min-width="5%">
|
|
|
+ <el-table-column label="显示字段" min-width="10%">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-checkbox true-label="1" v-model="scope.row.isList"></el-checkbox>
|
|
|
+ <el-checkbox true-label="1" v-model="scope.row.isOut"></el-checkbox>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="查询" min-width="5%">
|
|
|
+ <el-table-column label="查询" min-width="8%">
|
|
|
<template slot-scope="scope">
|
|
|
<el-checkbox true-label="1" v-model="scope.row.isQuery"></el-checkbox>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="查询方式" min-width="10%">
|
|
|
- <template slot-scope="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%">
|
|
|
+ <el-table-column label="关联HR字段" min-width="10%" align="center" prop="hrParentId"/>
|
|
|
+ <el-table-column label="缺省值" min-width="10%" align="center" prop="defaultValue"/>
|
|
|
+ <el-table-column label="外键" min-width="10%" align="center" prop="foreignKey"/>
|
|
|
+ <el-table-column label="必填" min-width="8%">
|
|
|
<template slot-scope="scope">
|
|
|
<el-checkbox true-label="1" v-model="scope.row.isRequired"></el-checkbox>
|
|
|
</template>
|
|
@@ -112,20 +116,87 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
- <el-tab-pane label="生成信息" name="genInfo">
|
|
|
+ <!-- <el-tab-pane label="生成信息" name="genInfo">
|
|
|
<gen-info-form ref="genInfo" :info="info" :tables="tables" :menus="menus"/>
|
|
|
- </el-tab-pane>
|
|
|
+ </el-tab-pane> -->
|
|
|
+ <el-tab-pane label="关联表" name="genInfo">
|
|
|
+ <el-row style="margin-bottom: 20px;">
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-button style="background-color: #1591FF;color: #fff;border: 1px solid #1591FF;">保存</el-button>
|
|
|
+ <el-button style="background-color: #fff;color: #5B636C;border: 1px solid #ECECEC;">返回</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12" style="text-align: right;">
|
|
|
+ <el-button style="background-color: #FFE9ED;color: #E58481;border: 1px solid #E58481;">新增</el-button>
|
|
|
+ <el-button style="background-color: #FFD6B0;color: #EA551A;border: 1px solid #F4AD6B;">删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-table :data="cloumns" row-key="columnId" :max-height="tableHeight">
|
|
|
+ <el-table-column label="序号" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="可用" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="序号" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="描述" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="关联表" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="字段(关联到主表PK)" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="显示条件" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="关联方式" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="内嵌编辑" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="修改人" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ <el-table-column label="修改时间" type="index" min-width="5%" class-name="allowDrag" />
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="数据库SQL" name="genSql">
|
|
|
+ <el-row>
|
|
|
+ <el-button style="background-color: #FFE9ED;color: #E58481;border: 1px solid #E58481;">执行创建语句</el-button>
|
|
|
+ <el-button style="background-color: #FFD6B0;color: #EA551A;border: 1px solid #F4AD6B;">刷新创建语句</el-button>
|
|
|
+ </el-row>
|
|
|
+ <el-form>
|
|
|
+ <el-form-item label="创建语句:" style="margin-top: 20px;">
|
|
|
+ <el-input style="resize: none;width: 600px;" type="textarea":rows="3"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="修改日志:">
|
|
|
+ <el-input style="resize: none;width: 600px;" type="textarea":rows="3"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-tab-pane>
|
|
|
</el-tabs>
|
|
|
- <el-form label-width="100px">
|
|
|
- <el-form-item style="text-align: center;margin-left:-100px;margin-top:10px;">
|
|
|
- <el-button type="primary" @click="submitForm()">提交</el-button>
|
|
|
- <el-button @click="close()">返回</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
+
|
|
|
+ <!-- 添加或修改岗位对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="描述:" prop="postName">
|
|
|
+ <el-input v-model="form.postName" placeholder="请输入岗位名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="关联表:" prop="postCode">
|
|
|
+ <el-input v-model="form.postCode" placeholder="请输入编码名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="字段(关联到主表PK):" prop="postSort">
|
|
|
+ <el-input-number v-model="form.postSort" controls-position="right" :min="0" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="显示条件:" prop="postSort">
|
|
|
+ <el-input-number v-model="form.postSort" controls-position="right" :min="0" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="关联方式:" prop="postSort">
|
|
|
+ <el-input-number v-model="form.postSort" controls-position="right" :min="0" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="内嵌编辑:" prop="postSort">
|
|
|
+ <el-input-number v-model="form.postSort" controls-position="right" :min="0" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="序号:" prop="status">
|
|
|
+
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="可用:" prop="remark">
|
|
|
+ <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</el-card>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { getGenTable, updateGenTable } from "@/api/tool/gen";
|
|
|
+import { getGenTable, updateGenTable, delPost} from "@/api/tool/gen";
|
|
|
import { optionselect as getDictOptionselect } from "@/api/system/dict/type";
|
|
|
import { listMenu as getMenuTreeselect } from "@/api/system/menu";
|
|
|
import basicInfoForm from "./basicInfoForm";
|
|
@@ -140,6 +211,10 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ title: "新增关联表",
|
|
|
+ open: false,
|
|
|
+ form: {},
|
|
|
+ rules: {},
|
|
|
// 选中选项卡的 name
|
|
|
activeName: "cloum",
|
|
|
// 表格的高度
|
|
@@ -153,7 +228,13 @@ export default {
|
|
|
// 菜单信息
|
|
|
menus: [],
|
|
|
// 表详细信息
|
|
|
- info: {}
|
|
|
+ info: {},
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -179,18 +260,19 @@ export default {
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
const basicForm = this.$refs.basicInfo.$refs.basicInfoForm;
|
|
|
- const genForm = this.$refs.genInfo.$refs.genInfoForm;
|
|
|
- Promise.all([basicForm, genForm].map(this.getFormPromise)).then(res => {
|
|
|
+ // const genForm = this.$refs.genInfo.$refs.genInfoForm;
|
|
|
+ // console.log(basicForm)
|
|
|
+ Promise.all([basicForm].map(this.getFormPromise)).then(res => {
|
|
|
const validateResult = res.every(item => !!item);
|
|
|
if (validateResult) {
|
|
|
- const genTable = Object.assign({}, basicForm.model, genForm.model);
|
|
|
+ const genTable = Object.assign({}, basicForm.model);
|
|
|
genTable.columns = this.cloumns;
|
|
|
- genTable.params = {
|
|
|
- treeCode: genTable.treeCode,
|
|
|
- treeName: genTable.treeName,
|
|
|
- treeParentCode: genTable.treeParentCode,
|
|
|
- parentMenuId: genTable.parentMenuId
|
|
|
- };
|
|
|
+ // genTable.params = {
|
|
|
+ // treeCode: genTable.treeCode,
|
|
|
+ // treeName: genTable.treeName,
|
|
|
+ // treeParentCode: genTable.treeParentCode,
|
|
|
+ // parentMenuId: genTable.parentMenuId
|
|
|
+ // };
|
|
|
updateGenTable(genTable).then(res => {
|
|
|
this.msgSuccess(res.msg);
|
|
|
if (res.code === 200) {
|
|
@@ -213,6 +295,31 @@ export default {
|
|
|
close() {
|
|
|
this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
this.$router.push({ path: "/tool/gen", query: { t: Date.now()}})
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ console.log(selection)
|
|
|
+ this.ids = selection.map(item => item.columnId)
|
|
|
+ this.single = selection.length!=1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ console.log(this.ids)
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$confirm('是否确认删除岗位编号为"' + ids + '"的数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ return delPost(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleAdd(){
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|