586 lines
19 KiB
Vue
586 lines
19 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="60px">
|
|
<!-- <el-form-item label="关联汇报概述ID" prop="summaryId">
|
|
<el-input
|
|
v-model="queryParams.summaryId"
|
|
placeholder="请输入关联汇报概述ID"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item> -->
|
|
<el-form-item label="货物编号" prop="deviceCode">
|
|
<el-input
|
|
v-model="queryParams.deviceCode"
|
|
placeholder="请输入货物编号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="货物类别" prop="category">
|
|
<el-autocomplete
|
|
v-model="queryParams.category"
|
|
:fetch-suggestions="categoryQuerySearch"
|
|
placeholder="请输入货物类别"
|
|
@select="handleCategorySelect"
|
|
clearable
|
|
style="width: 100%"
|
|
/>
|
|
</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="reportDetailList" @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="120px">
|
|
<el-form-item label="货物编号" prop="deviceCode">
|
|
<el-input v-model="form.deviceCode" placeholder="请输入货物编号" />
|
|
</el-form-item>
|
|
<el-form-item label="货物类别" prop="category">
|
|
<el-autocomplete
|
|
v-model="form.category"
|
|
:fetch-suggestions="categoryQuerySearch"
|
|
placeholder="请输入货物类别"
|
|
@select="handleCategorySelectForm"
|
|
style="width: 100%"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="货物说明" prop="deviceDescription">
|
|
<el-input v-model="form.deviceDescription" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="收发货详情" prop="reportDetail">
|
|
<el-input v-model="form.reportDetail" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="图像" prop="ossIds">
|
|
<image-upload v-model="form.ossIds"/>
|
|
</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>
|
|
|
|
<el-dialog :title="title" :visible.sync="expressOpen" width="500px" append-to-body>
|
|
<el-form ref="form" :model="expressForm" :rules="rules" label-width="120px">
|
|
<el-form-item label="物流编号" prop="expressCode">
|
|
<el-input v-model="expressForm.expressCode" placeholder="请输入物流编号"/>
|
|
</el-form-item>
|
|
<el-form-item label="对方姓名" prop="supplyName">
|
|
<el-input v-model="expressForm.supplyName" placeholder="请输入发货方姓名"/>
|
|
</el-form-item>
|
|
<el-form-item label="对方联系方式" prop="supplyPhone">
|
|
<el-input v-model="expressForm.supplyPhone" placeholder="请输入发货方联系方式"/>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="负责人" prop="ownerId">
|
|
<user-select v-model="expressForm.ownerId"></user-select>
|
|
</el-form-item>
|
|
<el-form-item label="负责人手机号" prop="ownerPhone">
|
|
<el-input v-model="expressForm.ownerPhone" placeholder="请输入负责人手机号"/>
|
|
</el-form-item>
|
|
<el-form-item label="计划到货时间" prop="planDate">
|
|
<el-date-picker clearable
|
|
v-model="expressForm.planDate"
|
|
type="datetime"
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
placeholder="请选择计划到货时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="物流公司标识" prop="expressType">
|
|
<el-select v-model="expressForm.expressType" placeholder="请选择物流公司标识">
|
|
<el-option
|
|
v-for="dict in dict.type.oa_express_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="expressForm.remark" type="textarea" placeholder="请输入内容"/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitExpress">确 定</el-button>
|
|
<el-button @click="cancelExpress">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
|
|
<el-drawer
|
|
title="图片列表"
|
|
:visible.sync="imageDrawer"
|
|
direction="rtl"
|
|
>
|
|
<image-preview v-for="img in srcList" :src="img" :width="150" :height="150" />
|
|
</el-drawer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { addExpress, updateExpress } from "@/api/wms/express";
|
|
import { addReportDetail, delReportDetail, getReportDetail, listReportDetail, updateReportDetail } from "@/api/wms/reportDetail";
|
|
import UserSelect from "@/components/KLPService/UserSelect/index.vue";
|
|
|
|
export default {
|
|
name: "ReportDetail",
|
|
dicts:['expressType'],
|
|
components: {UserSelect},
|
|
data() {
|
|
return {
|
|
customColumns: [
|
|
{
|
|
label: '关联汇报概述ID',
|
|
prop: 'summaryId',
|
|
width: 180,
|
|
},
|
|
{
|
|
label: '货物编号',
|
|
prop: 'deviceCode',
|
|
width: 180,
|
|
},
|
|
{
|
|
label: '货物类别',
|
|
prop: 'category',
|
|
width: 180,
|
|
},
|
|
{
|
|
label: '货物说明',
|
|
prop: 'deviceDescription',
|
|
width: 180,
|
|
},
|
|
{
|
|
label: '收发货详情',
|
|
prop: 'reportDetail',
|
|
width: 180,
|
|
},
|
|
{
|
|
label: '图片概况',
|
|
prop: 'ossIds',
|
|
width: 100,
|
|
render: (h, row) => {
|
|
return <image-preview src={row.images} width={50} height={50} />
|
|
}
|
|
},
|
|
{
|
|
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-view" onClick={() => this.handleImageDetail(row)}>图片详情</el-button>)
|
|
actions.push(<el-button type="text" size="mini" icon="el-icon-edit" onClick={() => this.handleAddExpress(row)}>发货</el-button>)
|
|
actions.push(<el-button type="text" size="mini" icon="el-icon-delete" onClick={() => this.handleDelete(row)}>删除</el-button>)
|
|
return actions;
|
|
}
|
|
}
|
|
],
|
|
// 按钮loading
|
|
buttonLoading: false,
|
|
expressOpen:false,
|
|
imageDrawer:false,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 设计项目汇报详情表格数据
|
|
reportDetailList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
summaryId: undefined,
|
|
deviceCode: undefined,
|
|
category: undefined,
|
|
deviceDescription: undefined,
|
|
reportDetail: undefined,
|
|
},
|
|
// 表单参数
|
|
form: {
|
|
detailId: undefined,
|
|
summaryId: this.$route.params && this.$route.params.summaryId,
|
|
deviceCode: undefined,
|
|
category: undefined,
|
|
deviceDescription: "发货",
|
|
reportDetail: undefined,
|
|
ossIds: undefined,
|
|
images: '',
|
|
createBy: undefined,
|
|
createTime: undefined,
|
|
updateBy: undefined,
|
|
updateTime: undefined,
|
|
delFlag: undefined,
|
|
remark: undefined,
|
|
},
|
|
expressForm:{},
|
|
// 表单校验
|
|
rules: {
|
|
detailId: [
|
|
{ required: true, message: "主键ID不能为空", trigger: "blur" }
|
|
],
|
|
summaryId: [
|
|
{ required: true, message: "关联汇报概述ID不能为空", trigger: "blur" }
|
|
],
|
|
deviceCode: [
|
|
{ required: true, message: "货物编号不能为空", trigger: "blur" }
|
|
],
|
|
category: [
|
|
{ required: true, message: "货物类别不能为空", trigger: "blur" }
|
|
],
|
|
deviceDescription: [
|
|
{ required: true, message: "货物说明不能为空", trigger: "blur" }
|
|
],
|
|
reportDetail: [
|
|
{ required: true, message: "收发货详情不能为空", trigger: "blur" }
|
|
],
|
|
ossIds: [
|
|
{ required: true, message: "关联图像 OSS ID 列表不能为空", trigger: "blur" }
|
|
],
|
|
expressId: [
|
|
{required: true, message: "主键id不能为空", trigger: "blur"}
|
|
],
|
|
expressCode: [
|
|
{required: true, message: "物流编号不能为空", trigger: "blur"}
|
|
],
|
|
status: [
|
|
{required: true, message: "数据状态0未确认1进行中2已完成不能为空", trigger: "change"}
|
|
],
|
|
supplyName: [
|
|
{required: true, message: "供应商姓名不能为空", trigger: "blur"}
|
|
],
|
|
supplyPhone: [
|
|
{required: true, message: "供应商联系方式不能为空", trigger: "blur"}
|
|
],
|
|
ownerId: [
|
|
{required: true, message: "负责人id不能为空", trigger: "blur"}
|
|
],
|
|
ownerPhone: [
|
|
{required: true, message: "负责人手机号不能为空", trigger: "blur"}
|
|
],
|
|
planDate: [
|
|
{required: true, message: "计划到货时间不能为空", trigger: "blur"}
|
|
],
|
|
expressType: [
|
|
{required: true, message: "物流公司标识不能为空", trigger: "change"}
|
|
],
|
|
},
|
|
categoryList: [], // 货物类别本地缓存
|
|
imageList:'',
|
|
srcList:[],
|
|
};
|
|
},
|
|
created() {
|
|
this.queryParams.summaryId = this.$route.params && this.$route.params.summaryId;
|
|
this.form.summaryId = this.$route.params && this.$route.params.summaryId;
|
|
this.getList();
|
|
this.initCategoryList();
|
|
},
|
|
|
|
methods: {
|
|
/** 查询设计项目汇报详情列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listReportDetail(this.queryParams).then(response => {
|
|
this.reportDetailList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
// 更新本地类别缓存
|
|
this.updateCategoryList(response.rows);
|
|
});
|
|
},
|
|
// 初始化货物类别缓存
|
|
initCategoryList() {
|
|
listReportDetail({pageSize: 9999}).then(response => {
|
|
this.updateCategoryList(response.rows);
|
|
});
|
|
},
|
|
|
|
// 从rows中提取所有category并去重
|
|
updateCategoryList(rows) {
|
|
const set = new Set(this.categoryList);
|
|
rows.forEach(item => {
|
|
if (item.category) set.add(item.category);
|
|
});
|
|
this.categoryList = Array.from(set);
|
|
},
|
|
// 自动补全方法
|
|
categoryQuerySearch(queryString, cb) {
|
|
const results = queryString
|
|
? this.categoryList
|
|
.filter(cat => cat && cat.toLowerCase().includes(queryString.toLowerCase()))
|
|
.map(cat => ({value: cat}))
|
|
: this.categoryList.map(cat => ({value: cat}));
|
|
cb(results);
|
|
},
|
|
// 搜索表单选择
|
|
handleCategorySelect(item) {
|
|
this.queryParams.category = item.value;
|
|
},
|
|
// 弹窗表单选择
|
|
handleCategorySelectForm(item) {
|
|
this.form.category = item.value;
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
this.resetExpress()
|
|
},
|
|
|
|
cancelExpress(){
|
|
this.expressOpen = false;
|
|
this.reset();
|
|
this.resetExpress()
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
detailId: undefined,
|
|
summaryId: this.$route.params && this.$route.params.summaryId,
|
|
deviceCode: undefined,
|
|
category: undefined,
|
|
deviceDescription: "发货",
|
|
reportDetail: undefined,
|
|
ossIds: undefined,
|
|
images: '',
|
|
createBy: undefined,
|
|
createTime: undefined,
|
|
updateBy: undefined,
|
|
updateTime: undefined,
|
|
delFlag: undefined,
|
|
remark: undefined,
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
|
|
// 表单重置
|
|
resetExpress() {
|
|
this.form = {
|
|
expressId: undefined,
|
|
expressCode: undefined,
|
|
status: undefined,
|
|
supplyName: undefined,
|
|
supplyPhone: undefined,
|
|
ownerId: undefined,
|
|
ownerPhone: undefined,
|
|
planDate: undefined,
|
|
expressType: undefined,
|
|
createBy: undefined,
|
|
createTime: undefined,
|
|
updateBy: undefined,
|
|
updateTime: undefined,
|
|
delFlag: undefined,
|
|
remark: undefined
|
|
};
|
|
this.resetForm("expressForm");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.detailId)
|
|
this.single = selection.length !== 1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加设计项目汇报详情";
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
handleAddExpress(row) {
|
|
this.resetExpress();
|
|
this.expressOpen = true;
|
|
this.expressForm = row.detailId;
|
|
this.title = "新增发货记录";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.loading = true;
|
|
this.reset();
|
|
const detailId = row.detailId || this.ids
|
|
getReportDetail(detailId).then(response => {
|
|
this.loading = false;
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改设计项目汇报详情";
|
|
});
|
|
},
|
|
submitExpress(){
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
this.buttonLoading = true;
|
|
if (this.expressForm.expressId != null) {
|
|
updateExpress(this.expressForm).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
} else {
|
|
addExpress(this.expressForm).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
this.buttonLoading = true;
|
|
if (this.form.detailId != null) {
|
|
updateReportDetail(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
} else {
|
|
addReportDetail(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.detailId || this.ids;
|
|
this.$modal.confirm('是否确认删除编号为"' + ids + '"的数据项?').then(() => {
|
|
this.loading = true;
|
|
return delReportDetail(ids);
|
|
}).then(() => {
|
|
this.loading = false;
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('system/reportDetail/export', {
|
|
...this.queryParams
|
|
}, `reportDetail_${new Date().getTime()}.xlsx`)
|
|
},
|
|
/** 查看图片详情 */
|
|
handleImageDetail(row) {
|
|
this.imageList = row.images;
|
|
this.imageDrawer = true;
|
|
this.getImageList()
|
|
},
|
|
getImageList() {
|
|
let real_src_list = this.imageList.split(",");
|
|
let srcList = [];
|
|
real_src_list.forEach(item => {
|
|
return srcList.push(item);
|
|
});
|
|
this.srcList = srcList;
|
|
},
|
|
}
|
|
};
|
|
</script>
|