表结构的前台代码

master
冷调 2024-08-24 19:54:52 +08:00
parent e188a03460
commit e9e45a6280
2 changed files with 375 additions and 0 deletions

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询结构列表
export function listData(query) {
return request({
url: '/tableData/data/list',
method: 'get',
params: query
})
}
// 查询结构详细
export function getData(id) {
return request({
url: '/tableData/data/' + id,
method: 'get'
})
}
// 新增结构
export function addData(data) {
return request({
url: '/tableData/data',
method: 'post',
data: data
})
}
// 修改结构
export function updateData(data) {
return request({
url: '/tableData/data',
method: 'put',
data: data
})
}
// 删除结构
export function delData(id) {
return request({
url: '/tableData/data/' + id,
method: 'delete'
})
}

View File

@ -0,0 +1,331 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="字段名称;字段名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入字段名称;字段名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['tableData:data:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['tableData:data:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['tableData:data:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['tableData:data:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="字段名称;字段名称" align="center" prop="name" />
<el-table-column label="字段注释;字段注释" align="center" prop="comment" />
<el-table-column label="是否主键;Y:是 N:否" align="center" prop="isPrimaryKey">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.isPrimaryKey"/>
</template>
</el-table-column>
<el-table-column label="字段类型;字段类型" align="center" prop="type" />
<el-table-column label="映射类型;映射类型" align="center" prop="mappingType" />
<el-table-column label="长度;长度" align="center" prop="length" />
<el-table-column label="小数位;小数位" align="center" prop="decimalPlaces" />
<el-table-column label="是否为空;Y:是 N:否" align="center" prop="isNull">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.isNull"/>
</template>
</el-table-column>
<el-table-column label="默认值;默认值" align="center" prop="defaultValue" />
<el-table-column label="是否字典;Y:是 N:否" align="center" prop="isDict">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.isDict"/>
</template>
</el-table-column>
<el-table-column label="映射字典;映射字典" align="center" prop="dictKey">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.dictKey"/>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['tableData:data:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['tableData:data:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改结构对话框 -->
<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="name">
<el-input v-model="form.name" placeholder="请输入字段名称;字段名称" />
</el-form-item>
<el-form-item label="字段注释;字段注释" prop="comment">
<el-input v-model="form.comment" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="是否主键;Y:是 N:否" prop="isPrimaryKey">
<el-input v-model="form.isPrimaryKey" placeholder="请输入是否主键;Y:是 N:否" />
</el-form-item>
<el-form-item label="长度;长度" prop="length">
<el-input v-model="form.length" placeholder="请输入长度;长度" />
</el-form-item>
<el-form-item label="小数位;小数位" prop="decimalPlaces">
<el-input v-model="form.decimalPlaces" placeholder="请输入小数位;小数位" />
</el-form-item>
<el-form-item label="是否为空;Y:是 N:否" prop="isNull">
<el-input v-model="form.isNull" placeholder="请输入是否为空;Y:是 N:否" />
</el-form-item>
<el-form-item label="默认值;默认值" prop="defaultValue">
<el-input v-model="form.defaultValue" placeholder="请输入默认值;默认值" />
</el-form-item>
<el-form-item label="是否字典;Y:是 N:否" prop="isDict">
<el-input v-model="form.isDict" placeholder="请输入是否字典;Y:是 N:否" />
</el-form-item>
<el-form-item label="映射字典;映射字典" prop="dictKey">
<el-input v-model="form.dictKey" placeholder="请输入映射字典;映射字典" />
</el-form-item>
<el-form-item label="数据库结构ID" prop="childrenId">
<el-input v-model="form.childrenId" placeholder="请输入数据库结构ID" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" 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>
</div>
</template>
<script>
import { listData, getData, delData, addData, updateData } from "/src/api/tableData/data";
export default {
name: "Data",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
dataList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
type: null,
childrenId: null,
},
//
form: {},
//
rules: {
isPrimaryKey: [
{ required: true, message: "是否主键;Y:是 N:否不能为空", trigger: "blur" }
],
isNull: [
{ required: true, message: "是否为空;Y:是 N:否不能为空", trigger: "blur" }
],
defaultValue: [
{ required: true, message: "默认值;默认值不能为空", trigger: "blur" }
],
isDict: [
{ required: true, message: "是否字典;Y:是 N:否不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询结构列表 */
getList() {
this.loading = true;
listData(this.queryParams).then(response => {
this.dataList = response.data.rows;
this.total = response.data.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
name: null,
comment: null,
isPrimaryKey: null,
type: null,
mappingType: null,
length: null,
decimalPlaces: null,
isNull: null,
defaultValue: null,
isDict: null,
dictKey: null,
childrenId: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加结构";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getData(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改结构";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateData(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addData(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除结构编号为"' + ids + '"的数据项?').then(function() {
return delData(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('tableData/data/export', {
...this.queryParams
}, `data_${new Date().getTime()}.xlsx`)
}
}
};
</script>