wms_vue/src/view/config/index.vue

345 lines
8.3 KiB
Vue

<template>
<page-layout>
<a-row :gutter="[10, 10]">
<!-- 顶部区域 -->
<a-col :span="24">
<a-card>
<!-- 查询参数 -->
<pro-query :searchParam="searchParam" @on-search="search"></pro-query>
</a-card>
</a-col>
<!-- 中心区域 -->
<a-col :span="24">
<a-card>
<!-- 列表 -->
<pro-table ref="tableRef" :fetch="fetch" :columns="columns" :toolbar="toolbar" :operate="operate"
:param="state.param" :pagination="pagination"
:row-selection="{ selectedRowKeys: state.selectedRowKeys, onChange: onSelectChange }">
<!-- 继承至 a-table 的默认插槽 -->
</pro-table>
</a-card>
</a-col>
</a-row>
<save :visible="state.visibleSave" @close="closeSave"></save>
<addConfig :visible="state.visibleAddConfig" @close="closeAddConfig"></addConfig>
<edit :visible="state.visibleEdit" @close="closeEdit" :record="state.recordEdit"></edit>
<info :visible="state.visibleInfo" @close="closeInfo" :record="state.recordInfo"></info>
</page-layout>
</template>
<script>
import save from './modal/save';
import addConfig from './modal/addConfig';
import edit from './modal/edit';
import info from './modal/info';
import {
message,
modal
} from '@hwork/ant-design-vue';
import {
ExclamationCircleOutlined
} from '@ant-design/icons-vue';
import {
page,
remove,
removeBatch
} from "@/api/module/config";
import {
reactive,
createVNode,
ref
} from 'vue';
const removeKey = "remove";
const removeBatchKey = "removeBatch";
export default {
components: {
save,
addConfig,
edit,
info,
},
setup() {
const tableRef = ref()
const switchFormat = {
yes: true,
no: false
};
const columns = [{
dataIndex: "parentCode",
key: "parentCode",
title: "组名",
width: 180,
},
{
dataIndex: "code",
key: "code",
title: "配置编号",
width: 180,
},
{
dataIndex: "value",
key: "value",
title: "值",
width: 200,
},
{
dataIndex: "name",
key: "name",
title: "配置描述",
width: 300,
},
{
dataIndex: "valueType",
key: "valueType",
title: "值类型",
dictionary: {
type: 'tag',
code: 'valueType'
},
width: 100,
},
{
dataIndex: "collectionType",
key: "collectionType",
title: "集合类型",
dictionary: {
type: 'tag',
code: 'collectionType'
},
width: 100,
},
{
dataIndex: "enable",
key: "enable",
title: "状态",
switch: switchFormat,
width: 100,
},
{
dataIndex: "remark",
key: "remark",
title: "描述",
width: 100,
},
{
dataIndex: "createTime",
key: "createTime",
title: "创建时间",
width: 180,
},
{
dataIndex: "updateTime",
key: "updateTime",
title: "修改时间",
width: 180,
},
];
/// 查询配置
const fetch = async (param) => {
var response = await page(param);
return {
total: response.data.total,
data: response.data.record,
};
};
/// 删除配置
const removeMethod = (record) => {
modal.confirm({
title: '您是否确定要删除此配置?',
icon: createVNode(ExclamationCircleOutlined),
okText: '确定',
cancelText: '取消',
onOk() {
message.loading({
content: "提交中...",
key: removeKey
});
remove({
"id": record.id
}).then((response) => {
if (response.success) {
message.success({
content: "删除成功",
key: removeKey,
duration: 1
}).then(() => {
tableRef.value.reload()
})
} else {
message.error({
content: "删除失败",
key: removeKey,
duration: 1
})
}
})
}
});
}
const removeBatchMethod = (ids) => {
modal.confirm({
title: '您是否确定要删除选择配置?',
icon: createVNode(ExclamationCircleOutlined),
okText: '确定',
cancelText: '取消',
onOk() {
message.loading({
content: "提交中...",
key: removeBatchKey
});
removeBatch({
"ids": ids
}).then((response) => {
if (response.success) {
message.success({
content: "删除成功",
key: removeBatchKey,
duration: 1
}).then(() => {
tableRef.value.reload()
})
} else {
message.error({
content: "删除失败",
key: removeBatchKey,
duration: 1
})
}
})
}
});
}
/// 工具栏
const toolbar = [{
label: "新增配置信息",
event: function() {
state.visibleAddConfig = true
}
},
{
label: "新增(原始备份)",
event: function() {
state.visibleSave = true
}
},
{
label: "删除",
event: function() {
removeBatchMethod(state.selectedRowKeys)
}
},
];
/// 行操作
const operate = [{
label: "查看",
event: function(record) {
state.visibleInfo = true, state.recordInfo = record
}
},
{
label: "修改",
event: function(record) {
state.visibleEdit = true, state.recordEdit = record
}
},
{
label: "删除",
event: function(record) {
removeMethod(record)
}
},
];
/// 分页参数
const pagination = {
pageNum: 1,
pageSize: 10,
showSizeChanger: true, // 显示可改变每页条数
pageSizeOptions: ["5", "10", "20", "50"], // 每页条数选项设置
showTotal: total => `${total} 条记录`, // 显示总条数
showSizeChange: (current, pageSize) => (this.pageSize = pageSize) // 改变每页条数时更新显示
};
/// 外置参数 - 当参数改变时, 重新触发 fetch 函数
const state = reactive({
selectedRowKeys: [],
param: {},
visibleSave: false,
visibleConfig: false,
visibleEdit: false,
visibleInfo: false,
recordInfo: {},
recordEdit: {},
})
const onSelectChange = selectedRowKeys => {
state.selectedRowKeys = selectedRowKeys;
};
/// 查询参数
const searchParam = [{
key: "name",
type: "input",
label: "名称"
},
{
key: "key",
type: "input",
label: "Key"
},
]
/// 查询操作
const search = function(value) {
state.param = value
}
const closeSave = function() {
state.visibleSave = false;
tableRef.value.reload()
}
const closeAddConfig = function() {
state.visibleAddConfig = false;
tableRef.value.reload()
}
const closeEdit = function() {
state.visibleEdit = false;
tableRef.value.reload()
}
const closeInfo = function() {
state.visibleInfo = false;
}
return {
state,
fetch,
search,
toolbar,
columns,
operate,
pagination,
searchParam,
onSelectChange,
closeSave,
closeEdit,
closeInfo,
closeAddConfig,
tableRef
};
},
};
</script>