This commit is contained in:
kk
2026-07-07 18:01:21 +08:00
commit b259f94d4b
1088 changed files with 121778 additions and 0 deletions
@@ -0,0 +1,50 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
@@ -0,0 +1,371 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:5px">
<!-- 查询模块 -->
<el-form :inline="true" :size="option.size" :model="query">
<template>
#for(x in prototypes) {
#if(x.isQuery==1){
<el-form-item label="字段">
<el-input v-model="query.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"></el-input>
</el-form-item>
#}
#}
</template>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜索</el-button>
<el-button icon="el-icon-delete" @click="searchReset()">清空</el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__menu">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button v-if="this.permissionList.addBtn" :size="option.size" type="primary" icon="el-icon-plus" @click="handleAdd">新增</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="danger" icon="el-icon-delete" @click="handleDelete" plain>删除</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button :size="option.size" icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button :size="option.size" icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading" :size="option.size" @selection-change="selectionChange" :data="data"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="\#" type="index" width="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="180" align="center">
<template slot-scope="{row}">
<el-button v-if="this.permissionList.viewBtn" :size="option.size" type="text" icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button v-if="this.permissionList.editBtn" :size="option.size" type="text" icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="text" icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<!-- 分页模块 -->
<el-pagination
align="right" background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title" :visible.sync="box" width="50%" :before-close="beforeClose" append-to-body>
<el-form :disabled="view" :size="option.size" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
#for(x in prototypes) {
#if(x.isForm!=0){
#if(x.componentType=="input"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="textarea"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input type="textarea" :rows="5" v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="select"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="tree"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="radio"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-radio-group v-model="form.${x.propertyName!}">
<el-radio v-for="(item,index) in ${x.propertyName!}Data" :key="index" :label="item.dictKey">
{{item.dictValue}}
</el-radio>
</el-radio-group>
</el-form-item>
#}else if(x.componentType=="checkbox"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-checkbox-group v-model="form.${x.propertyName!}">
<el-checkbox v-for="(item,index) in ${x.propertyName!}Data" :label="item.dictValue" :key="index">{{item.dictValue}}</el-checkbox>
</el-checkbox-group>
</el-form-item>
#}else if(x.componentType=="switch"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-switch v-model="form.${x.propertyName!}" </el-switch>
</el-form-item>
#}else if(x.componentType=="date"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-date-picker v-model="form.${x.propertyName!}" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择${x.jdbcComment!}"></el-date-picker>
</el-form-item>
#}
#}
#}
</el-form>
<!-- 表单按钮 -->
<span v-if="!view" slot="footer" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" :size="option.size" @click="handleSubmit">提 交</el-button>
<el-button icon="el-icon-circle-close" :size="option.size" @click="box = false">取 消</el-button>
</span>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import {getList, getDetail, add, update, remove} from "@/api/${serviceCode!}/${modelCode!}";
import option from "@/option/${serviceCode!}/${modelCode!}";
import {mapGetters} from "vuex";
import {getDictionary} from '@/api/system/dict'
export default {
data() {
return {
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 表单数据
form: {},
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
// ${x.jdbcComment!}字典数据
${x.propertyName!}Data: [],
#}
#}
}
},
mounted() {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.validData(this.permission.param_add, false),
viewBtn: this.validData(this.permission.param_view, false),
delBtn: this.validData(this.permission.param_delete, false),
editBtn: this.validData(this.permission.param_edit, false),
};
},
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init() {
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
getDictionary({code: '${x.dictCode!}'}).then(res => {
this.${x.propertyName!}Data = res.data.data;
});
#}
#}
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd() {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose(done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
const {
#for(x in prototypes) {
#if(x.isQuery==1){
${x.propertyName!},
#}
#}
} = this.query;
let values = {
#for(x in prototypes) {
#if(x.isQuery==1){
${x.propertyName!}_${x.queryType!}: ${x.propertyName!},
#}
#}
};
getList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style lang="scss" scoped>
.el-pagination {
margin-top: 20px;
}
</style>
@@ -0,0 +1,31 @@
export default {
size: 'small',
expand: false,
index: true,
border: true,
selection: true,
column: [
#for(x in prototypes) {
{
label: "${x.jdbcComment!}",
prop: "${x.propertyName!}",
#if(strutil.contain(x.componentType,"date")||strutil.contain(x.componentType,"time")){
format: "yyyy-MM-dd hh:mm:ss",
valueFormat: "yyyy-MM-dd hh:mm:ss",
#}
#if(x.isForm==0){
display: false,
#}
#if(x.isRow==1){
span: 24,
#}
#if(x.isList==0){
hide: true,
#}
#if(x.isQuery==1){
search: true,
#}
},
#}
]
}
@@ -0,0 +1,50 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
@@ -0,0 +1,399 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:5px">
<!-- 查询模块 -->
<el-form :inline="true" :size="option.size" :model="query">
<template>
#for(x in prototypes) {
#if(x.isQuery==1){
<el-form-item label="字段">
<el-input v-model="query.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"></el-input>
</el-form-item>
#}
#}
</template>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜索</el-button>
<el-button icon="el-icon-delete" @click="searchReset()">清空</el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__menu">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button v-if="this.permissionList.addBtn" :size="option.size" type="primary" icon="el-icon-plus" @click="handleAdd">新增</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="danger" icon="el-icon-delete" @click="handleDelete" plain>删除</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button :size="option.size" icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button :size="option.size" icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading" :size="option.size" @selection-change="selectionChange" :data="data"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="\#" type="index" width="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="300" align="center">
<template slot-scope="{row}">
<el-button v-if="this.permissionList.viewBtn" :size="option.size" type="text" icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button v-if="this.permissionList.editBtn" :size="option.size" type="text" icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="text" icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
<el-button :size="option.size" type="text" icon="el-icon-setting" @click="handleDrawer(row)">子表配置</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<!-- 分页模块 -->
<el-pagination
align="right" background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title" :visible.sync="box" width="50%" :before-close="beforeClose" append-to-body>
<el-form :disabled="view" :size="option.size" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
#for(x in prototypes) {
#if(x.isForm!=0){
#if(x.componentType=="input"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="textarea"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input type="textarea" :rows="5" v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="select"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="tree"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="radio"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-radio-group v-model="form.${x.propertyName!}">
<el-radio v-for="(item,index) in ${x.propertyName!}Data" :key="index" :label="item.dictKey">
{{item.dictValue}}
</el-radio>
</el-radio-group>
</el-form-item>
#}else if(x.componentType=="checkbox"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-checkbox-group v-model="form.${x.propertyName!}">
<el-checkbox v-for="(item,index) in ${x.propertyName!}Data" :label="item.dictValue" :key="index">{{item.dictValue}}</el-checkbox>
</el-checkbox-group>
</el-form-item>
#}else if(x.componentType=="switch"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-switch v-model="form.${x.propertyName!}" </el-switch>
</el-form-item>
#}else if(x.componentType=="date"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-date-picker v-model="form.${x.propertyName!}" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择${x.jdbcComment!}"></el-date-picker>
</el-form-item>
#}
#}
#}
</el-form>
<!-- 表单按钮 -->
<span v-if="!view" slot="footer" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" :size="option.size" @click="handleSubmit">提 交</el-button>
<el-button icon="el-icon-circle-close" :size="option.size" @click="box = false">取 消</el-button>
</span>
</el-dialog>
<el-drawer
title="子表操作"
append-to-body
size="60%"
:visible.sync="drawer"
:direction="direction"
:before-close="handleDrawerClose">
<${subModel.modelClass!}Sub :mainId="${modelCode!}Id"></${subModel.modelClass!}Sub>
</el-drawer>
</div>
</basic-container>
</template>
<script>
import {getList, getDetail, add, update, remove} from "@/api/${serviceCode!}/${modelCode!}";
import option from "@/option/${serviceCode!}/${modelCode!}";
import {mapGetters} from "vuex";
import {getDictionary} from '@/api/system/dict'
import ${subModel.modelClass!}Sub from "@/views/${serviceCode!}/${subModel.modelCode!}Sub";
export default {
components:{
${subModel.modelClass!}Sub
},
data() {
return {
// 主键
${modelCode!}Id: '',
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否展示抽屉
drawer: false,
// 抽屉方向
direction: 'rtl',
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 表单数据
form: {},
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
// ${x.jdbcComment!}字典数据
${x.propertyName!}Data: [],
#}
#}
}
},
mounted() {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.validData(this.permission.param_add, false),
viewBtn: this.validData(this.permission.param_view, false),
delBtn: this.validData(this.permission.param_delete, false),
editBtn: this.validData(this.permission.param_edit, false),
};
},
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init() {
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
getDictionary({code: '${x.dictCode!}'}).then(res => {
this.${x.propertyName!}Data = res.data.data;
});
#}
#}
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd() {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDrawer(row) {
this.${modelCode!}Id = row.id;
this.drawer = true;
},
handleDrawerClose(){
this.${modelCode!}Id = '';
this.drawer = false;
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose(done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
const {
#for(x in subPrototypes) {
#if(x.isQuery==1){
${x.propertyName!},
#}
#}
} = this.querySub;
let values = {
#for(x in subPrototypes) {
#if(x.isQuery==1){
${x.propertyName!}_${x.queryType!}: ${x.propertyName!},
#}
#}
};
getList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style lang="scss" scoped>
.el-pagination {
margin-top: 20px;
}
</style>
@@ -0,0 +1,31 @@
export default {
size: 'small',
expand: false,
index: true,
border: true,
selection: true,
column: [
#for(x in prototypes) {
{
label: "${x.jdbcComment!}",
prop: "${x.propertyName!}",
#if(strutil.contain(x.componentType,"date")||strutil.contain(x.componentType,"time")){
format: "yyyy-MM-dd hh:mm:ss",
valueFormat: "yyyy-MM-dd hh:mm:ss",
#}
#if(x.isForm==0){
display: false,
#}
#if(x.isRow==1){
span: 24,
#}
#if(x.isList==0){
hide: true,
#}
#if(x.isQuery==1){
search: true,
#}
},
#}
]
}
@@ -0,0 +1,358 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:5px">
<!-- 查询模块 -->
<el-form :inline="true" :size="option.size" :model="query">
<template>
#for(x in prototypes) {
#if(x.isQuery==1){
<el-form-item label="字段">
<el-input v-model="query.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"></el-input>
</el-form-item>
#}
#}
</template>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜索</el-button>
<el-button icon="el-icon-delete" @click="searchReset()">清空</el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__menu">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button :size="option.size" type="primary" icon="el-icon-plus" @click="handleAdd">新增</el-button>
<el-button :size="option.size" type="danger" icon="el-icon-delete" @click="handleDelete" plain>删除
</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button :size="option.size" icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button :size="option.size" icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading" :size="option.size" @selection-change="selectionChange" :data="data"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="\#" type="index" width="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="180" align="center">
<template slot-scope="{row}">
<el-button :size="option.size" type="text" icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button :size="option.size" type="text" icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button :size="option.size" type="text" icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<!-- 分页模块 -->
<el-pagination
align="right" background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title" :visible.sync="box" width="50%" :before-close="beforeClose" append-to-body>
<el-form :disabled="view" :size="option.size" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
#for(x in prototypes) {
#if(x.isForm!=0){
#if(x.componentType=="input"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="textarea"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-input type="textarea" :rows="5" v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="select"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="tree"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="radio"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-radio-group v-model="form.${x.propertyName!}">
<el-radio v-for="(item,index) in ${x.propertyName!}Data" :key="index" :label="item.dictKey">
{{item.dictValue}}
</el-radio>
</el-radio-group>
</el-form-item>
#}else if(x.componentType=="checkbox"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-checkbox-group v-model="form.${x.propertyName!}">
<el-checkbox v-for="(item,index) in ${x.propertyName!}Data" :label="item.dictValue" :key="index">{{item.dictValue}}</el-checkbox>
</el-checkbox-group>
</el-form-item>
#}else if(x.componentType=="switch"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-switch v-model="form.${x.propertyName!}" </el-switch>
</el-form-item>
#}else if(x.componentType=="date"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-date-picker v-model="form.${x.propertyName!}" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择${x.jdbcComment!}"></el-date-picker>
</el-form-item>
#}
#}
#}
</el-form>
<!-- 表单按钮 -->
<span v-if="!view" slot="footer" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" :size="option.size" @click="handleSubmit">提 交</el-button>
<el-button icon="el-icon-circle-close" :size="option.size" @click="box = false">取 消</el-button>
</span>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import {getList, getDetail, add, update, remove} from "@/api/${serviceCode!}/${modelCode!}";
import option from "@/option/${serviceCode!}/${modelCode!}";
import {mapGetters} from "vuex";
import {getDictionary} from '@/api/system/dict'
export default {
props: {
mainId: {
type: String
},
},
data() {
return {
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 表单数据
form: {},
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
// ${x.jdbcComment!}字典数据
${x.propertyName!}Data: [],
#}
#}
}
},
mounted() {
this.init();
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
},
computed: {
...mapGetters(["permission"]),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
watch: {
'mainId'() {
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
}
},
methods: {
init() {
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
getDictionary({code: '${x.dictCode!}'}).then(res => {
this.${x.propertyName!}Data = res.data.data;
});
#}
#}
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
},
handleSubmit() {
this.form.${subFkIdHump!} = this.mainId;
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd() {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose(done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page, {${subFkIdHump!}: this.mainId});
},
onLoad(page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style lang="scss" scoped>
.el-pagination {
margin-top: 20px;
}
</style>
@@ -0,0 +1,60 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/detail',
method: 'get',
params: {
id
}
})
}
export const getTree = (tenantId) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/tree',
method: 'get',
params: {
tenantId,
}
})
}
export const remove = (ids) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/${serviceName!}/${modelCode!}/submit',
method: 'post',
data: row
})
}
@@ -0,0 +1,376 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:5px">
<!-- 查询模块 -->
<el-form :inline="true" :size="option.size" :model="query">
<template>
#for(x in prototypes) {
#if(x.isQuery==1){
<el-form-item label="字段">
<el-input v-model="query.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"></el-input>
</el-form-item>
#}
#}
</template>
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜索</el-button>
<el-button icon="el-icon-delete" @click="searchReset()">清空</el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__menu">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button v-if="this.permissionList.addBtn" :size="option.size" type="primary" icon="el-icon-plus" @click="handleAdd">新增</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="danger" icon="el-icon-delete" @click="handleDelete" plain>删除</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button :size="option.size" icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button :size="option.size" icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading" :size="option.size" @selection-change="selectionChange" :data="data"
row-key="id"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="\#" type="index" width="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="180" align="center">
<template slot-scope="{row}">
<el-button v-if="this.permissionList.viewBtn" :size="option.size" type="text" icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button v-if="this.permissionList.editBtn" :size="option.size" type="text" icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button v-if="this.permissionList.delBtn" :size="option.size" type="text" icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title" :visible.sync="box" width="50%" :before-close="beforeClose" append-to-body>
<el-form :disabled="view" :size="option.size" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
#for(x in prototypes) {
#if(x.isForm!=0){
#if(x.componentType=="input"){
<el-form-item label="${x.jdbcComment!}" prop="title">
<el-input v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="textarea"){
<el-form-item label="${x.jdbcComment!}" prop="title">
<el-input type="textarea" :rows="5" v-model="form.${x.propertyName!}" placeholder="请输入${x.jdbcComment!}"/>
</el-form-item>
#}else if(x.componentType=="select"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
#}else if(templateType=="tree"&&x.propertyName==treePidHump){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-tree
:data="treeData"
v-model="form.${treePidHump!}"
placeholder="请选择${x.jdbcComment!}"
:props="defaultProps"
@node-click="handleNodeClick">
</el-tree>
</el-form-item>
#}else if(x.componentType=="tree"&&x.propertyName!=treePidHump){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-select v-model="form.${x.propertyName!}" clearable placeholder="请选择${x.jdbcComment!}">
<el-option
v-for="item in ${x.propertyName!}Data"
:key="item.id"
:label="item.${treeName}"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
#}else if(x.componentType=="radio"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-radio-group v-model="form.${x.propertyName!}">
<el-radio v-for="(item,index) in ${x.propertyName!}Data" :key="index" :label="item.dictKey">
{{item.dictValue}}
</el-radio>
</el-radio-group>
</el-form-item>
#}else if(x.componentType=="checkbox"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-checkbox-group v-model="form.${x.propertyName!}">
<el-checkbox v-for="(item,index) in ${x.propertyName!}Data" :label="item.dictValue" :key="index">{{item.dictValue}}</el-checkbox>
</el-checkbox-group>
</el-form-item>
#}else if(x.componentType=="switch"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-switch v-model="form.${x.propertyName!}" </el-switch>
</el-form-item>
#}else if(x.componentType=="date"){
<el-form-item label="${x.jdbcComment!}" prop="${x.propertyName!}">
<el-date-picker v-model="form.${x.propertyName!}" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="请选择${x.jdbcComment!}"></el-date-picker>
</el-form-item>
#}
#}
#}
</el-form>
<!-- 表单按钮 -->
<span v-if="!view" slot="footer" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" :size="option.size" @click="handleSubmit">提 交</el-button>
<el-button icon="el-icon-circle-close" :size="option.size" @click="box = false">取 消</el-button>
</span>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import {getList, getDetail, getTree, add, update, remove} from "@/api/${serviceCode!}/${modelCode!}";
import option from "@/option/${serviceCode!}/${modelCode!}";
import {getDictionary} from '@/api/system/dict';
import {mapGetters} from "vuex";
import {validatenull} from "@/util/validate";
export default {
data() {
return {
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 树型默认配置
defaultProps: {
children: 'children',
label: '${treeName}'
},
// 表单数据
form: {},
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
// 父节点列表
treeData: [],
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
// ${x.jdbcComment!}字典数据
${x.propertyName!}Data: [],
#}
#}
}
},
mounted() {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init() {
#for(x in prototypes) {
#if(isNotEmpty(x.dictCode)){
getDictionary({code: '${x.dictCode!}'}).then(res => {
this.${x.propertyName!}Data = res.data.data;
});
#}
#}
},
handleNodeClick(data) {
this.form.${treePidHump!} = data.${treeIdHump!};
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
if (validatenull(this.form.${treePidHump!})) {
this.form.${treePidHump!} = 0;
}
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd() {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose(done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
const {
#for(x in prototypes) {
#if(x.isQuery==1){
${x.propertyName!},
#}
#}
} = this.query;
let values = {
#for(x in prototypes) {
#if(x.isQuery==1){
${x.propertyName!}_${x.queryType!}: ${x.propertyName!},
#}
#}
};
getList(page.currentPage, page.pageSize, values).then(res => {
this.data = res.data.data;
this.loading = false;
getTree().then(res => {
this.treeData = res.data.data;
});
});
}
}
};
</script>
<style lang="scss" scoped>
.el-pagination {
margin-top: 20px;
}
</style>
@@ -0,0 +1,31 @@
export default {
size: 'small',
expand: false,
index: true,
border: true,
selection: true,
column: [
#for(x in prototypes) {
{
label: "${x.jdbcComment!}",
prop: "${x.propertyName!}",
#if(strutil.contain(x.componentType,"date")||strutil.contain(x.componentType,"time")){
format: "yyyy-MM-dd hh:mm:ss",
valueFormat: "yyyy-MM-dd hh:mm:ss",
#}
#if(x.isForm==0){
display: false,
#}
#if(x.isRow==1){
span: 24,
#}
#if(x.isList==0){
hide: true,
#}
#if(x.isQuery==1){
search: true,
#}
},
#}
]
}