Files
klp-oa/klp-ui/src/views/wms/rxgood/index.vue
2025-09-13 11:50:11 +08:00

389 lines
12 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="收发货标题" prop="reportTitle">
<el-input
v-model="queryParams.reportTitle"
placeholder="请输入收发货标题"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="收发货日期" prop="reportDate">
<el-date-picker clearable
v-model="queryParams.reportDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择收发货日期">
</el-date-picker>
</el-form-item>
<el-form-item label="经办人" prop="reporter">
<el-input
v-model="queryParams.reporter"
placeholder="请输入经办人"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- <el-form-item label="涉及项目" prop="projectId">
<el-select style="width: 100%;" v-model="form.projectId" placeholder="请输入涉及项目">
<el-option
v-for="item in projectList"
:key="item.projectId"
:label="item.projectName"
:value="item.projectId"
>
{{ item.projectName }}
</el-option>
</el-select>
</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"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<KLPTable v-loading="loading" :data="reportSummaryList" @selection-change="handleSelectionChange" :selectionColumn="true" :indexColumn="true" :customColumns="customColumns" />
<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="50%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="收发货标题" prop="reportTitle">
<el-input v-model="form.reportTitle" placeholder="请输入收发货标题" />
</el-form-item>
<el-form-item label="收发货日期" prop="reportDate">
<el-date-picker clearable
v-model="form.reportDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择收发货日期"
style="width: 100%;">
</el-date-picker>
</el-form-item>
<el-form-item label="经办人" prop="reporter">
<el-input v-model="form.reporter" placeholder="请输入经办人" />
</el-form-item>
<!-- <el-form-item label="涉及项目" prop="projectId">
<el-select style="width: 100%;" v-model="form.projectId" placeholder="请输入涉及项目">
<el-option
v-for="item in projectList"
:key="item.projectId"
:label="item.projectName"
:value="item.projectId"
>
{{ item.projectName }}
</el-option>
</el-select>
</el-form-item>-->
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
// import { listProject } from "@/api/wms/project";
import { addReportSummary, delReportSummary, getReportSummary, listReportSummary, updateReportSummary } from "@/api/wms/reportSummary";
export default {
name: "ReportSummary",
data() {
return {
customColumns: [
{
label: '收发货标题',
prop: 'reportTitle',
render: (h, row) => {
return <router-link class="link-type" to={'/exp/rx/detail/' + row.summaryId}>{row.reportTitle}</router-link>
}
},
{
label: '最近汇报时间',
prop: 'lastUpdateTime',
width: 180,
render: (h, row) => {
return <span>{this.parseTime(row.lastUpdateTime, '{y}-{m}-{d}')}</span>
}
},
{
label: '收发货日期',
prop: 'reportDate',
width: 180,
render: (h, row) => {
return <span>{this.parseTime(row.reportDate, '{y}-{m}-{d}')}</span>
}
},
{
label: '经办人',
prop: 'reporter',
width: 180,
},
{
label: '备注',
prop: 'remark',
width: 180,
eclipse: true
},
{
label: '操作',
width: 150,
fixed: 'right',
render: (h, row) => {
const actions = [];
actions.push(<el-button type="text" size="mini" icon="el-icon-edit" onClick={() => this.handleUpdate(row)}>修改</el-button>)
actions.push(<el-button type="text" size="mini" icon="el-icon-delete" onClick={() => this.handleDelete(row)}>删除</el-button>)
return actions;
}
}
],
// projectList: [],
// 按钮loading
buttonLoading: false,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 涉及项目汇报概述表格数据
reportSummaryList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
reportTitle: undefined,
reportDate: undefined,
reporter: undefined,
projectId: undefined,
type: 2
},
// 表单参数
form: {
summaryId: undefined,
reportTitle: undefined,
reportDate: undefined,
reporter: undefined,
projectId: undefined,
createBy: undefined,
createTime: undefined,
updateBy: undefined,
updateTime: undefined,
delFlag: undefined,
remark: undefined,
type: 2
},
// 表单校验
rules: {
summaryId: [
{ required: true, message: "主键ID不能为空", trigger: "blur" }
],
reportTitle: [
{ required: true, message: "收发货标题不能为空", trigger: "blur" }
],
reportDate: [
{ required: true, message: "收发货日期不能为空", trigger: "blur" }
],
reporter: [
{ required: true, message: "经办人不能为空", trigger: "blur" }
],
projectId: [
{ required: true, message: "涉及项目不能为空", trigger: "blur" }
],
remark: [
{ required: true, message: "备注不能为空", trigger: "blur" }
]
}
};
},
created() {
this.getList();
// this.getProjectList()
},
methods: {
/** 查询涉及项目汇报概述列表 */
getList() {
this.loading = true;
listReportSummary(this.queryParams).then(response => {
this.reportSummaryList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/*getProjectList() {
listProject({ pageSize: 999 }).then(({ rows }) => {
this.projectList = rows;
})
},*/
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
summaryId: undefined,
reportTitle: undefined,
reportDate: undefined,
reporter: undefined,
projectId: undefined,
createBy: undefined,
createTime: undefined,
updateBy: undefined,
updateTime: undefined,
delFlag: undefined,
remark: undefined,
type: 2
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.summaryId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加涉及项目汇报概述";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.loading = true;
this.reset();
const summaryId = row.summaryId || this.ids
getReportSummary(summaryId).then(response => {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改涉及项目汇报概述";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
if (this.form.summaryId != null) {
updateReportSummary(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
} else {
addReportSummary(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.summaryId || this.ids;
this.$modal.confirm('是否确认删除涉及项目汇报概述编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delReportSummary(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/reportSummary/export', {
...this.queryParams
}, `reportSummary_${new Date().getTime()}.xlsx`)
}
}
};
</script>