|
@@ -1,107 +1,225 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <ex-table
|
|
|
- v-loading="loading"
|
|
|
- :table="table"
|
|
|
- :data="tableData"
|
|
|
- :columns="table13"
|
|
|
- :page="pageInfo"
|
|
|
- :size="size"
|
|
|
- @page-curr-change="handlePageChange"
|
|
|
- @page-size-change="handleSizeChange"
|
|
|
- @screen-reset="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- @screen-submit="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- @selection="selection_change"
|
|
|
- >
|
|
|
- <template #table-header="{}">
|
|
|
- <div style="width: 100%">
|
|
|
- <el-row style="padding: 0 0 0 80px">
|
|
|
-
|
|
|
- <el-col :span="6" style="width: 463px;">
|
|
|
- <periodDatePickerActive
|
|
|
- :start="parmValue.start_date"
|
|
|
- :end="parmValue.end_date"
|
|
|
- :placeholder="'产品操作'"
|
|
|
- :width="'205px'"
|
|
|
- :size="searchSize"
|
|
|
- @timeReturned="time"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
- <el-col :span="4" style="width: 66px; float: right">
|
|
|
- <el-button type="primary" style="margin-left:30px;" @click="download" :size="searchSize" class="fr">
|
|
|
- 导出
|
|
|
- </el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="3" style="width: 66px; float: right">
|
|
|
- <el-button
|
|
|
- :size="searchSize"
|
|
|
- type="primary"
|
|
|
- style="float: right; margin-left: 5px"
|
|
|
- @click="searchList"
|
|
|
- >
|
|
|
- 刷新
|
|
|
- </el-button>
|
|
|
- </el-col>
|
|
|
-
|
|
|
- </el-row>
|
|
|
- <el-row style="padding: 10px 0 0 0" gutter="10">
|
|
|
- <el-col :span="6" style="width: 240px">
|
|
|
- <el-input
|
|
|
- clearable
|
|
|
- placeholder="采购维护人"
|
|
|
- v-model="parmValue.xiugai1"
|
|
|
- maxlength="40"
|
|
|
- :size="searchSize"
|
|
|
- @blur="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- >
|
|
|
- </el-input>
|
|
|
- </el-col>
|
|
|
- <el-col :span="6" style="width: 240px">
|
|
|
- <el-input
|
|
|
- clearable
|
|
|
- placeholder="供应商名称"
|
|
|
- v-model="parmValue.xiugai2"
|
|
|
- maxlength="40"
|
|
|
- :size="searchSize"
|
|
|
- @blur="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- >
|
|
|
- </el-input>
|
|
|
- </el-col>
|
|
|
- <el-col :span="4" style="width: 66px; float: right">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- class="fr"
|
|
|
- :size="searchSize"
|
|
|
- @click="restSearch"
|
|
|
- >
|
|
|
- 重置
|
|
|
- </el-button>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
+ <div>
|
|
|
+ <ex-table
|
|
|
+ v-loading="loading"
|
|
|
+ :table="table"
|
|
|
+ :data="tableData"
|
|
|
+ :columns="table13"
|
|
|
+ :page="pageInfo"
|
|
|
+ :size="size"
|
|
|
+ @page-curr-change="handlePageChange"
|
|
|
+ @page-size-change="handleSizeChange"
|
|
|
+ @screen-reset="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ @screen-submit="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ @selection="selection_change"
|
|
|
+ >
|
|
|
+ <template #table-header="{}">
|
|
|
+ <div style="width: 100%">
|
|
|
+ <el-row style="padding: 0 0 0 80px">
|
|
|
+ <el-col :span="6" style="width: 463px">
|
|
|
+ <periodDatePickerActive
|
|
|
+ :start="parmValue.start_date"
|
|
|
+ :end="parmValue.end_date"
|
|
|
+ :placeholder="'产品操作'"
|
|
|
+ :width="'205px'"
|
|
|
+ :size="searchSize"
|
|
|
+ @timeReturned="time"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="4" style="width: 66px; float: right">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ style="margin-left: 30px"
|
|
|
+ @click="download"
|
|
|
+ :size="searchSize"
|
|
|
+ class="fr"
|
|
|
+ >
|
|
|
+ 导出
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="3" style="width: 66px; float: right">
|
|
|
+ <el-button
|
|
|
+ :size="searchSize"
|
|
|
+ type="primary"
|
|
|
+ style="float: right; margin-left: 5px"
|
|
|
+ @click="searchList"
|
|
|
+ >
|
|
|
+ 刷新
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row style="padding: 10px 0 0 0" gutter="10">
|
|
|
+ <el-col :span="6" style="width: 240px">
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ placeholder="采购维护人"
|
|
|
+ v-model="parmValue.creater"
|
|
|
+ maxlength="40"
|
|
|
+ :size="searchSize"
|
|
|
+ @blur="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6" style="width: 240px">
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ placeholder="供应商名称"
|
|
|
+ v-model="parmValue.supplier_name"
|
|
|
+ maxlength="40"
|
|
|
+ :size="searchSize"
|
|
|
+ @blur="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="4" style="width: 66px; float: right">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ class="fr"
|
|
|
+ :size="searchSize"
|
|
|
+ @click="restSearch"
|
|
|
+ >
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
|
|
|
-
|
|
|
- </ex-table>
|
|
|
- </div>
|
|
|
+ <template #operation="{ scope }">
|
|
|
+ <el-tooltip effect="dark" content="修改内容对比" placement="top">
|
|
|
+ <i class="el-icon-view tb-icon" @click="dlgTable(scope.row)"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
+ </ex-table>
|
|
|
|
|
|
-
|
|
|
+ <el-dialog
|
|
|
+ title="产品修改差异对比"
|
|
|
+ :visible.sync="dialogTableVisible"
|
|
|
+ :center="true"
|
|
|
+ align="left"
|
|
|
+ top="3vh"
|
|
|
+ width="1040px"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
+ @close="dialogTableVisible = false"
|
|
|
+ >
|
|
|
+ <el-table
|
|
|
+ :data="showData"
|
|
|
+ :size="searchSize"
|
|
|
+ border
|
|
|
+ stripe
|
|
|
+ max-height="750px"
|
|
|
+ style="width: 100%; margin: -20px 0 0"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ prop="key_name"
|
|
|
+ label="修改字段名称"
|
|
|
+ width="130px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="key"
|
|
|
+ label="修改字段"
|
|
|
+ width="130px"
|
|
|
+ show-overflow-tooltip
|
|
|
+ />
|
|
|
+ <el-table-column prop="before" label="修改前" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.key === 'good_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.before"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ class="fl"
|
|
|
+ v-viewer
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.key === 'good_info_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.after"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ v-viewer
|
|
|
+ class="fl"
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.key === 'good_thumb_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.after"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ v-viewer
|
|
|
+ class="fl"
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else>{{ scope.row.before }}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="after" label="修改后" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.key === 'good_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.after"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ v-viewer
|
|
|
+ class="fl"
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.key === 'good_info_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.after"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ v-viewer
|
|
|
+ class="fl"
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.key === 'good_thumb_img'">
|
|
|
+ <img
|
|
|
+ v-for="(si, sii) in scope.row.after"
|
|
|
+ :key="si + sii"
|
|
|
+ :src="si"
|
|
|
+ alt=""
|
|
|
+ v-viewer
|
|
|
+ class="fl"
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div v-else>{{ scope.row.after }}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
@@ -109,36 +227,38 @@ import resToken from "@/mixins/resToken";
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
import asyncRequest from "@/apis/service/reportQuery/purchaseReport";
|
|
|
import periodDatePickerActive from "../period-date-picker/main.vue";
|
|
|
-import { table13} from "./columns";
|
|
|
+import { table13, editTable13 } from "./columns";
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
|
export default {
|
|
|
name: "purchaseOrder",
|
|
|
mixins: [mixinPage, resToken],
|
|
|
components: {
|
|
|
- periodDatePickerActive
|
|
|
+ periodDatePickerActive,
|
|
|
},
|
|
|
computed: {
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
|
-
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ editOld: {},
|
|
|
+ editNew: {},
|
|
|
+ dialogTableVisible: false,
|
|
|
//选中数组
|
|
|
changeList: [],
|
|
|
+ showData: [],
|
|
|
//全局url
|
|
|
fileUrl: urlConfig.baseURL,
|
|
|
//loading
|
|
|
loading: false,
|
|
|
//请求参数集合
|
|
|
parmValue: {
|
|
|
- xiugai1:"", //咨询订单号
|
|
|
- xiugai2:"",
|
|
|
+ creater: "", //采购维护人
|
|
|
+ supplier_name: "", // 供应商名称
|
|
|
start_date: "", //起始时间
|
|
|
end_date: "", // 结束时间
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
-
|
|
|
},
|
|
|
// 表格 - 数据集合
|
|
|
tableData: [],
|
|
@@ -154,16 +274,55 @@ export default {
|
|
|
curr: 1,
|
|
|
total: 0,
|
|
|
},
|
|
|
- // 表格表头 - 列参数
|
|
|
+
|
|
|
table13: table13,
|
|
|
+ editTable13,
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
-
|
|
|
this.searchList();
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ dlgTable(row) {
|
|
|
+ this.showData = [];
|
|
|
+ const { before_info, after_info } = row;
|
|
|
+
|
|
|
+ let keyList = [];
|
|
|
+ for (let key in after_info) {
|
|
|
+ keyList.push(key);
|
|
|
+ }
|
|
|
+
|
|
|
+ for (let i = 0; i < keyList.length; i++) {
|
|
|
+
|
|
|
+ let model = {
|
|
|
+ key: keyList[i],
|
|
|
+ key_name:
|
|
|
+ (editTable13.find((s) => s.prop === keyList[i]) || {}).label ||
|
|
|
+ "--",
|
|
|
+ before: this.get_key_value(keyList[i], before_info),
|
|
|
+ after: this.get_key_value(keyList[i], after_info),
|
|
|
+ };
|
|
|
+ // console.log(model.key_name)
|
|
|
+ this.showData.push(model);
|
|
|
+ }
|
|
|
+ this.dialogTableVisible = true;
|
|
|
+ },
|
|
|
+ get_key_value(key, info) {
|
|
|
+ if (key === "good_img") {
|
|
|
+ return info[key] ? (info[key] || "").split(",") : [];
|
|
|
+ }
|
|
|
+ else if(key === "good_info_img") {
|
|
|
+ return info[key] ? (info[key] || "").split(",") : [];
|
|
|
+ }
|
|
|
+ else if(key === "good_thumb_img") {
|
|
|
+ return info[key] ? (info[key] || "").split(",") : [];
|
|
|
+ }
|
|
|
+ // else if(key === "cat_id") {
|
|
|
+ // return info[key] ? (info[key] || "").split(",") : [];
|
|
|
+ // }
|
|
|
+ return info[key];
|
|
|
+ },
|
|
|
//初始化http请求
|
|
|
async searchList() {
|
|
|
if (
|
|
@@ -173,10 +332,10 @@ export default {
|
|
|
this.$message.warning("时间区间不完整!");
|
|
|
return;
|
|
|
}
|
|
|
- return;
|
|
|
+ // return;
|
|
|
this.loading = true;
|
|
|
-
|
|
|
- const res = await asyncRequest.list(this.parmValue);
|
|
|
+ const res = await asyncRequest.reportchangeloglist(this.parmValue);
|
|
|
+ console.log(res);
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
this.pageInfo.total = Number(res.data.count);
|
|
@@ -185,13 +344,16 @@ export default {
|
|
|
} else {
|
|
|
this.tableData = [];
|
|
|
this.pageInfo.total = 0;
|
|
|
+ this.$message.warning(res.message);
|
|
|
}
|
|
|
this.loading = false;
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
//重置
|
|
|
restSearch() {
|
|
|
this.parmValue = {
|
|
|
+ creater: "", //采购维护人
|
|
|
+ supplier_name: "", // 供应商名称
|
|
|
start_date: "", //新建起始时间
|
|
|
end_date: "", // 新建结束时间
|
|
|
page: 1, // 页码
|
|
@@ -205,7 +367,7 @@ export default {
|
|
|
};
|
|
|
this.searchList();
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
// 时间函数
|
|
|
async time(e) {
|
|
|
this.parmValue.start_date = e.startTime || "";
|
|
@@ -213,13 +375,13 @@ export default {
|
|
|
await this.searchList();
|
|
|
},
|
|
|
|
|
|
- //选中触发函数
|
|
|
+ //选中触发函数
|
|
|
selection_change(e) {
|
|
|
const { list } = e;
|
|
|
//选中的数组集合
|
|
|
this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
|
|
|
},
|
|
|
- //导出文件
|
|
|
+ //导出文件
|
|
|
async download() {
|
|
|
// if(this.changeList.length<=0){
|
|
|
// this.$message.warning("请选择有效数据")
|
|
@@ -228,23 +390,23 @@ export default {
|
|
|
let start_date = new Date(this.parmValue.start_date).valueOf();
|
|
|
let end_date = new Date(this.parmValue.end_date).valueOf();
|
|
|
let flag = end_date - start_date > 30 * 24 * 60 * 60 * 1000;
|
|
|
- if(this.parmValue.start_date != "" && this.parmValue.end_date != ""){
|
|
|
- if(flag){
|
|
|
- this.$message.warning("导出文件的时间区间不能超过30天")
|
|
|
+ if (this.parmValue.start_date != "" && this.parmValue.end_date != "") {
|
|
|
+ if (flag) {
|
|
|
+ this.$message.warning("导出文件的时间区间不能超过30天");
|
|
|
return;
|
|
|
}
|
|
|
- }else{
|
|
|
- this.$message.warning("请选择导出文件的时间区间")
|
|
|
+ } else {
|
|
|
+ this.$message.warning("请选择导出文件的时间区间");
|
|
|
return;
|
|
|
}
|
|
|
- let model = JSON.parse(JSON.stringify(this.parmValue))
|
|
|
+ let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
// model.is_export = 1;
|
|
|
if (!this.loading) {
|
|
|
this.loading = true;
|
|
|
let httpType = `aplication/zip`;
|
|
|
axios({
|
|
|
method: "post",
|
|
|
- url: this.fileUrl + "admin/reportgoodofflineexport",
|
|
|
+ url: this.fileUrl + "admin/reportchangelogeexport",
|
|
|
responseType: "blob",
|
|
|
data: model,
|
|
|
headers: {
|
|
@@ -261,13 +423,13 @@ export default {
|
|
|
let url = window.URL.createObjectURL(
|
|
|
new Blob([res.data], {
|
|
|
// type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
- type: httpType
|
|
|
+ type: httpType,
|
|
|
})
|
|
|
);
|
|
|
let link = document.createElement("a");
|
|
|
link.style.display = "none";
|
|
|
link.href = url;
|
|
|
- let excelName = "产品下线报表.zip";
|
|
|
+ let excelName = "产品修改报表.zip";
|
|
|
link.setAttribute("download", excelName);
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|
|
@@ -297,5 +459,11 @@ export default {
|
|
|
.purchaseOrder {
|
|
|
// text-align: right;
|
|
|
}
|
|
|
+/deep/ .el-dialog {
|
|
|
+ width: 80%;
|
|
|
+ // height: 50vh;
|
|
|
+ min-width: 800px;
|
|
|
+ min-height: 500px;
|
|
|
+}
|
|
|
</style>
|
|
|
|