bladex前端ui项目,基于avue-cli2.0开发 包含基础工作流,不包含表单设计器 https://git.javablade.com/blade/Saber
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

243 lines
5.8 KiB

3 years ago
<template>
3 years ago
<avue-crud :option="option"
:table-loading="loading"
:data="data"
v-model:page="page"
:permission="permissionList"
:before-open="beforeOpen"
v-model="form"
ref="crud"
@row-update="rowUpdate"
@row-save="rowSave"
@row-del="rowDel"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad">
<template #menu-left>
<el-button type="danger"
icon="el-icon-delete"
plain
@click="handleDelete">
</el-button>
</template>
</avue-crud>
3 years ago
</template>
<script>
3 years ago
import { getList, getDetail, add, update, remove } from "@/api/system/tenantpackage";
import { mapGetters } from "vuex";
import { getMenuTree } from "@/api/system/menu";
3 years ago
export default {
name: "tenantPackage",
3 years ago
data () {
3 years ago
return {
form: {},
query: {},
loading: true,
page: {
pageSize: 10,
currentPage: 1,
total: 0
},
selectionList: [],
option: {
height: 'auto',
calcHeight: 30,
tip: false,
searchShow: true,
searchMenuSpan: 6,
border: true,
index: true,
viewBtn: true,
selection: true,
dialogClickModal: false,
dialogWidth: 600,
column: [
{
label: "产品包名",
prop: "packageName",
search: true,
span: 24,
rules: [{
required: true,
message: "请输入产品包名称",
trigger: "blur"
}]
},
{
label: "菜单列表",
prop: "menuId",
span: 24,
type: "tree",
dicData: [],
hide: true,
multiple: true,
props: {
label: "title"
},
rules: [{
required: true,
message: "请选择菜单",
trigger: "blur"
}]
},
{
label: "备注",
prop: "remark",
span: 24
},
]
},
data: []
};
},
computed: {
...mapGetters(["permission"]),
3 years ago
permissionList () {
3 years ago
return {
addBtn: true,
viewBtn: false,
delBtn: true,
editBtn: true
};
},
3 years ago
ids () {
3 years ago
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
3 years ago
initData () {
3 years ago
getMenuTree().then(res => {
const column = this.findObject(this.option.column, "menuId");
column.dicData = res.data.data;
});
},
3 years ago
rowSave (row, done, loading) {
3 years ago
row.menuId = row.menuId.join(",");
add(row).then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
done();
}, error => {
loading();
window.console.log(error);
});
},
3 years ago
rowUpdate (row, index, done, loading) {
3 years ago
update(row).then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
done();
}, error => {
loading();
window.console.log(error);
});
},
3 years ago
rowDel (row) {
3 years ago
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
3 years ago
handleDelete () {
3 years ago
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.$refs.crud.toggleSelection();
});
},
3 years ago
beforeOpen (done, type) {
3 years ago
if (["add", "edit"].includes(type)) {
this.initData();
}
if (["edit", "view"].includes(type)) {
getDetail(this.form.id).then(res => {
this.form = res.data.data;
});
}
done();
},
3 years ago
searchReset () {
3 years ago
this.query = {};
this.onLoad(this.page);
},
3 years ago
searchChange (params, done) {
3 years ago
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
3 years ago
selectionChange (list) {
3 years ago
this.selectionList = list;
},
3 years ago
selectionClear () {
3 years ago
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
3 years ago
currentChange (currentPage) {
3 years ago
this.page.currentPage = currentPage;
},
3 years ago
sizeChange (pageSize) {
3 years ago
this.page.pageSize = pageSize;
},
3 years ago
refreshChange () {
3 years ago
this.onLoad(this.page, this.query);
},
3 years ago
onLoad (page, params = {}) {
3 years ago
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>
</style>