<template>
|
<div class="rightContent">
|
<div class="top">
|
<SearchCommonView
|
:add-title="'新建'"
|
:showAdd="false"
|
:placeholder="'请根据单号、产品、业务类型进行搜索'"
|
:amount-view="false"
|
@addCommonClick="addBtnClick"
|
@searchClick="getList"
|
/>
|
</div>
|
<div class="list-view">
|
<div class="table">
|
<TableCommonView
|
ref="tableListRef"
|
:table-list="tableList"
|
@selTableCol="selTableCol"
|
@tableRowClick="tableRowClick"
|
></TableCommonView>
|
</div>
|
<div class="btn-pager">
|
<PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" />
|
</div>
|
</div>
|
<!-- 编辑 -->
|
<AddOverviewDialog v-if="editConfig.visible" :edit-common-config="editConfig" :add-name="this.$route.params.name" />
|
</div>
|
</template>
|
|
<script>
|
import pageMixin from "@/components/makepager/pager/mixin/pageMixin"
|
import { getHistory } from "@/api/reportForm/inventoryRwport"
|
// import { getProductOperatonList } from "@/api/product/product"
|
|
import AddOverviewDialog from "@/views/overview/AddOverviewDialog"
|
|
export default {
|
name: "InboundOutboundDetail",
|
props: {},
|
components: { AddOverviewDialog },
|
mixins: [pageMixin],
|
computed: {},
|
data() {
|
return {
|
tableList: {},
|
showcol: ["状态"],
|
searchOptions: [],
|
commonDetail: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
},
|
editConfig: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
},
|
params: {}
|
}
|
},
|
created() {
|
this.setTable()
|
console.log(this.$route.params)
|
var paramsList = sessionStorage.getItem("paramsList")
|
let params = {}
|
if (paramsList) {
|
params = JSON.parse(sessionStorage.getItem("paramsList"))
|
} else {
|
params = this.$route.params
|
sessionStorage.setItem("paramsList", JSON.stringify(params))
|
}
|
this.params = params
|
console.log(this.params)
|
this.getData()
|
},
|
// 页面销毁之前
|
beforeDestroy() {
|
sessionStorage.removeItem("paramsList")
|
},
|
methods: {
|
setTable() {
|
this.tableList = {
|
tableInfomation: [],
|
selectBox: true,
|
showcol: this.showcol,
|
allcol: [],
|
tableColumn: this.setTableColumn(this.showcol)
|
}
|
let allcol = []
|
for (let i = 0; i < this.tableList.tableColumn.length; i++) {
|
if (!this.tableList.tableColumn[i].default) {
|
const label = this.tableList.tableColumn[i].label
|
allcol.push(label)
|
}
|
}
|
this.tableList.allcol = allcol
|
},
|
setTableColumn(showcol) {
|
let tableColumn = [
|
{
|
label: "日期",
|
prop: "date",
|
isShowColumn: true,
|
default: true,
|
date: true
|
},
|
{
|
label: "单号",
|
prop: "number",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "产品",
|
prop: "productName",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "业务类型",
|
prop: "baseOperationType",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "从",
|
prop: "fromLocation",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "至",
|
prop: "toLocation",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "数量",
|
prop: "amount",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "单位",
|
prop: "unit",
|
isShowColumn: true,
|
default: true
|
},
|
{
|
label: "状态",
|
prop: "status",
|
width: 120,
|
isShowColumn: showcol.includes("状态"),
|
default: false,
|
status: true,
|
isCallMethod: true,
|
getCallMethod: this.getStatus
|
},
|
{
|
label: "完成者",
|
prop: "contactedName",
|
isShowColumn: showcol.includes("完成者"),
|
default: false
|
}
|
]
|
return tableColumn
|
},
|
selTableCol(val) {
|
this.showcol = val
|
this.tableList.tableColumn = this.setTableColumn(val)
|
},
|
// 库存报表跳转请求数据
|
async getData() {
|
if (this.params.name === "报表") {
|
await getHistory({
|
keyWord:this.params.keyWord,
|
produceId:this.params.produceId,
|
unit:this.params.unit,
|
productName:this.params.productName,
|
page: this.pagerOptions.currPage,
|
pageSize: this.pagerOptions.pageSize
|
}).then((res) => {
|
if (res.code === 200) {
|
this.tableList.tableInfomation = res.data
|
this.pagerOptions.totalCount = res.total
|
}
|
})
|
} else {
|
// await getProductOperatonList({
|
// productId: this.params.id,
|
// page: this.pagerOptions.currPage,
|
// pageSize: this.pagerOptions.pageSize
|
// }).then((res) => {
|
// if (res.code === 200) {
|
// const list = res.data.map((item) => {
|
// return {
|
// ...item,
|
// fromLocation: item.fromLocation.name,
|
// toLocation: item.toLocation.name,
|
// productName: this.params.name,
|
// amount: item.details[0].product.amount,
|
// unit: item.details[0].product.unit
|
// }
|
// })
|
// this.tableList.tableInfomation = list || []
|
// this.pagerOptions.totalCount = res.total
|
// }
|
// })
|
await getHistory({
|
page: this.pagerOptions.currPage,
|
pageSize: this.pagerOptions.pageSize
|
}).then((res) => {
|
if (res.code === 200) {
|
this.tableList.tableInfomation = res.data
|
this.pagerOptions.totalCount = res.total
|
}
|
})
|
}
|
},
|
// 搜索
|
getList(val) {
|
console.log(val)
|
// getHistory({
|
// page: this.pagerOptions.currPage,
|
// pageSize: this.pagerOptions.pageSize
|
// }).then((res) => {
|
// if (res.code === 200) {
|
// this.tableList.tableInfomation = res.data
|
// this.pagerOptions.totalCount = res.total
|
// }
|
// })
|
},
|
// 行点击
|
tableRowClick(row) {
|
console.log(row, "行row")
|
this.editConfig.visible = true
|
this.editConfig.title = "查看"
|
this.editConfig.infomation = { ...row }
|
},
|
// 新建
|
addBtnClick() {
|
// this.editConfig.visible = true
|
this.editConfig.title = "新建"
|
},
|
// 状态
|
getStatus(val) {
|
return val === 1 ? "草稿" : val === 3 ? "就绪" : "完成"
|
}
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped></style>
|