资产结构展示

master
冷调 2024-08-29 16:58:12 +08:00
parent f3a682fa71
commit 81bc9c5175
7 changed files with 191 additions and 338 deletions

View File

@ -0,0 +1,11 @@
import request from '@/utils/request'
// 根据数据库结构ID查询数据源列表
export function listChildren(query) {
return request({
url: '/source/children/list',
method: 'get',
params: query
})
}

View File

@ -0,0 +1,25 @@
import request from '@/utils/request'
// 根据数据源id查询字典类型数据
export function getDictDataList(id) {
return request({
url: '/source/dictType/getDictDataList/' + id,
method: 'get'
})
}
// 查询数据字典类型对象
export function getDictData(data) {
return request({
url: '/source/dictType/getDictData',
method: 'post',
data: data
})
}
// 查询数据库类型
export function getTypeList() {
return request({
url: '/source/dataType/getTypeList',
method: 'get'
})
}

View File

@ -53,7 +53,7 @@ export function delSource(id) {
//同步资产结构
export function synchronous(data) {
return request({
url: '/source/source/synchronous',
url: '/source/source/syncAssetStructure',
method: 'post',
data: data
})

View File

@ -42,5 +42,32 @@ export function delData(id) {
method: 'delete'
})
}
//修改字段是否为字典值
export function updIsDict(data) {
return request({
url: '/source/data/updIsDict',
method: 'put',
data: data
})
}
//根据childrenId查询表结构
export function selectTableData(id) {
return request({
url: '/source/data/selectTableData/' + id,
method: 'get'
})
}
export function findTableInfo() {
return request({
url: '/source/tableInfo/findTableInfo',
method: 'get'
})
}
export function findTableInfoList() {
return request({
url: '/source/tableInfo/findTableInfoList',
method: 'get',
})
}

View File

@ -1,336 +0,0 @@
<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>

View File

@ -179,7 +179,13 @@
<el-input v-model="form.maxWaitSize" placeholder="请输入最大等待次数" />
</el-form-item>
<el-form-item label="是否初始化" prop="isInit">
<el-input v-model="form.isInit" placeholder="请输入是否初始化" />
<!-- <el-input v-model="form.isInit" placeholder="请输入是否初始化" />-->
<el-radio v-model="form.isInit" label="Y"></el-radio>
<el-radio v-model="form.isInit" label="N"></el-radio>
<!-- <el-radio-group v-model="form.isInit">-->
<!-- <el-radio label="Y"></el-radio>-->
<!-- <el-radio label="N"></el-radio>-->
<!-- </el-radio-group>-->
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入是否初始化" />

View File

@ -0,0 +1,120 @@
<template>
<div>
<el-container>
<el-aside width="30%">
<el-tree :data="dataList" :props="defaultProps" @node-click="handleNodeClick">
<div v-if="tableList.type === 'dataSource'">{{
tableList.name + '(' + tableList.databaseName + '-' + tableList.systemName + ')'
}}
</div>
<div v-if="tableList.type === 'dataTable'">{{
tableList.tableName + '-' + tableList.tableRemark + '(' + tableList.dataNum + '条)'
}}
</div>
</el-tree>
</el-aside>
<el-main>
<el-card class="box-card">
<div slot="header" class="clearfix">
<span>资产模型基本信息</span>
</div>
<el-descriptions class="margin-top" title="带边框列表" :column="2" border>
<el-descriptions-item>
<template slot="label">表名称</template>
{{ tableList.tableName }}
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">表备注</template>
{{ tableList.tableRemark }}
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">数据量</template>
{{ tableList.dataNum }}
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">是否核心</template>
<dict-tag :options="dict.type.yes_no" :value="tableList.isCenter"/>
</el-descriptions-item>
</el-descriptions>
</el-card>
<el-card class="box-card">
<div slot="header" class="clearfix">
<span>资产模型详细信息</span>
</div>
<el-table
:data="tableData" style="width: 100%">
<el-table-column label="名称" prop="columnName"></el-table-column>
<el-table-column label="注释" prop="columnRemark"></el-table-column>
<el-table-column label="是否主键" prop="isPrimary">
<template slot-scope="scope">
<dict-tag :options="dict.type.yes_no" :value="scope.row.isPrimary"/>
</template>
</el-table-column>
<el-table-column label="类型" prop="columnType"></el-table-column>
<el-table-column label="映射类型" prop="javaType"></el-table-column>
<el-table-column label="长度" prop="columnLength"></el-table-column>
<el-table-column label="小数位" prop="columnDecimals"></el-table-column>
<el-table-column label="是否为空" prop="isNull">
<template slot-scope="scope">
<dict-tag :options="dict.type.yes_no" :value="scope.row.isNull"/>
</template>
</el-table-column>
</el-table>
</el-card>
</el-main>
</el-container>
</div>
</template>
<script setup>
import {findTableInfoList, selectTableData} from "@/api/tableData/data";
export default {
name: 'Type',
dicts: ['yes_no'],
data() {
return {
tableData:[],
tableList:{},
form:{},
dataList:[
{
children:[],
}
],
defaultProps: {
children: 'children',
label: 'tableName'
},
};
},
created() {
this.findTableInfoList();
},
methods: {
findTableInfoList(){
findTableInfoList().then(res=>{
this.dataList=res.data
})
},
handleNodeClick(data) {
this.tableList=data
selectTableData(data.id).then(res=>{
this.tableData=res.data;
})
console.log(data);
}
}
}
</script>
<style scoped lang="scss">
</style>