cloud-ui/src/views/data/index.vue

337 lines
11 KiB
Vue

<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="['data: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="['data: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="['data: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="['data: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="是否主键" 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="是否为空" 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="是否字典" 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="['data:data:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['data: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="是否主键" prop="isPrimaryKey">
<el-input v-model="form.isPrimaryKey" placeholder="请输入是否主键 Y:是 N:否" />
</el-form-item>
<el-form-item label="字段类型" prop="type">
<el-input v-model="form.type" placeholder="请输入字段类型" />
</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="是否为空" 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="是否字典" 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",
dicts: ['sys_yes_no'],
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 => {
console.log(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>