<template>
|
<div class="product-manage">
|
<div class="filter">
|
<div class="filter-card">
|
<!-- <SearchCommonView-->
|
<!-- ref="searchCommonView"-->
|
<!-- :search-options="searchOptions"-->
|
<!-- @searchClick="searchClick"-->
|
<!-- @resetClick="resetClick"-->
|
<!-- />-->
|
|
<CommonSearch
|
:show-add="false"
|
:show-download="false"
|
:amount-view="false"
|
:show-action-btn="false"
|
:placeholder="'请输入产品名称/供应商'"
|
@searchClick="onFilterSearch"
|
/>
|
|
<div class="add-view">
|
<!-- <el-button type="primary" size="mini" @click="addBtnClick">新建</el-button>-->
|
</div>
|
</div>
|
</div>
|
<div class="body">
|
<div class="body-card">
|
<div class="list-view">
|
<TableCommonView
|
ref="tableListRef"
|
:table-list="tableList"
|
@selCommonClick="selCommonClick"
|
@selTableCol="selTableCol"
|
>
|
<!-- <template slot="tableButton">
|
<el-table-column label="操作" width="120">
|
<template slot-scope="scope">
|
<el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button>
|
<el-button @click="delClick(scope.row.id)" type="text" size="small">删除</el-button>
|
</template>
|
</el-table-column>
|
</template> -->
|
</TableCommonView>
|
</div>
|
<div class="btn-pager">
|
<PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" />
|
</div>
|
</div>
|
|
</div>
|
<!-- 新建/编辑产品 -->
|
<AddProduct v-if="editConfig.visible" :add-common-config="editConfig" />
|
<!-- 详情 -->
|
<DetailProduct v-if="commonDetail.visible" :common-detail="commonDetail" />
|
</div>
|
</template>
|
|
<script>
|
import pageMixin from "@/components/makepager/pager/mixin/pageMixin"
|
import { getProductList, deleteProduct } from "@/api/productManage/product"
|
import DetailProduct from "@/views/productManage/product/DetailProduct"
|
import AddProduct from "@/views/productManage/product/AddProduct"
|
|
export default {
|
name: "PruductManage",
|
props: {},
|
components: { DetailProduct, AddProduct },
|
mixins: [pageMixin],
|
computed: {},
|
data() {
|
return {
|
searchText:'',
|
tableList: {},
|
searchOptions: [],
|
commonDetail: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
},
|
editConfig: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
},
|
tableColumn: [
|
{ label: "产品编码", prop: "number", min: 190, isCommonClick: true },
|
{ label: "产品名称", prop: "name", min: 130 ,default:true},
|
{ label: "供应商", prop: "supplierName", min: 130 },
|
{ label: "产品类别", prop: "productType", min: 130 },
|
{ label: "规格", prop: "specifications", min: 130 },
|
{ label: "型号", prop: "modelNumber", min: 130 },
|
{ label: "单位", prop: "unit", min: 60 },
|
{ label: "价格", prop: "purchasePrice", min: 130 },
|
{ label: "最低库存", prop: "minimumStock", min: 80 },
|
{ label: "最高库存", prop: "maximumStock", min: 80 }
|
],
|
showCol: ['产品编码', '产品名称', '供应商', '产品类别', '规格', '价格', '最低库存', '最高库存']
|
}
|
},
|
created() {
|
this.setTable()
|
this.getData()
|
},
|
methods: {
|
setColumnVisible(showCol){
|
return this.tableColumn.map(ele=>{
|
return {
|
...ele,
|
isShowColumn:showCol.includes(ele.label)
|
}
|
})
|
},
|
setTable() {
|
this.tableList = {
|
tableInfomation: [],
|
selectIndex: true,
|
showcol: this.showCol,
|
allcol: [],
|
tableColumn:this.setColumnVisible(this.showCol)
|
}
|
this.tableList.allcol = this.tableList.tableColumn.filter(ele=>!ele.default).map(ele=>ele.label);
|
|
this.searchOptions = []
|
for (let i = 0; i < this.tableList.tableColumn.length; i++) {
|
const label = this.tableList.tableColumn[i].label
|
const value = this.tableList.tableColumn[i].prop
|
this.searchOptions.push({ value: value, label: label })
|
}
|
},
|
selTableCol(val) {
|
this.showcol = val;
|
this.tableList.tableColumn = this.setColumnVisible(val);
|
},
|
// 请求数据
|
async getData() {
|
await getProductList({
|
keyword: this.searchText,
|
page: this.pagerOptions.currPage,
|
pageSize: this.pagerOptions.pageSize
|
}).then((res) => {
|
if (res.data.code === 200) {
|
const list = res.data.data.list.map((item) => {
|
return {
|
...item,
|
supplierNumber: item.supplier.number
|
}
|
})
|
this.tableList.tableInfomation = list || []
|
this.pagerOptions.totalCount = res.data.data.total
|
}
|
})
|
},
|
// 搜索
|
// searchClick(val, content) {
|
// console.log(val, content)
|
// this.getData(val.value, content)
|
// },
|
|
onFilterSearch(val){
|
this.searchText = val ?? ''
|
this.pagerOptions.currPage = 1
|
this.getData()
|
},
|
|
// resetClick() {
|
// this.getData()
|
// },
|
// 新建
|
addBtnClick() {
|
this.editConfig.visible = true
|
this.editConfig.title = "新建"
|
},
|
// 编辑
|
handleClick(row) {
|
console.log(row)
|
this.editConfig.visible = true
|
this.editConfig.title = "编辑"
|
this.editConfig.infomation = { ...row }
|
},
|
// 删除
|
delClick(val) {
|
this.$confirm("是否确认删除?", "警告", {
|
confirmButtonText: "确定",
|
cancelButtonText: "取消",
|
type: "warning"
|
})
|
.then(() => {
|
deleteProduct({ id: val }).then((response) => {
|
if (response.code === 200) {
|
this.$message.success("删除成功")
|
this.getData()
|
} else {
|
this.$message.warning("删除失败")
|
}
|
})
|
})
|
.catch(() => {})
|
},
|
// 详情
|
selCommonClick(row) {
|
console.log(row)
|
this.commonDetail.visible = true
|
this.commonDetail.infomation = { ...row }
|
}
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped>
|
.product-manage{
|
height: 100%;
|
overflow: hidden;
|
.filter{
|
height: 80px;
|
display: flex;
|
align-items: center;
|
padding: 12px 20px 0 20px;
|
&-card{
|
height: 80px;
|
display: flex;
|
align-items: center;
|
box-sizing: border-box;
|
padding: 10px 20px;
|
flex: 1;
|
border-radius: 12px;
|
background-color: #fff;
|
}
|
}
|
.body{
|
box-sizing: border-box;
|
padding: 10px 20px;
|
border-radius: 12px;
|
height: calc(100% - 92px);
|
.body-card {
|
background-color: #fff;
|
border-radius: 12px;
|
height: 100%;
|
overflow: hidden;
|
}
|
|
.supplier-search {
|
display: flex;
|
align-items: center;
|
.add-view {
|
margin-left: auto;
|
margin-right: 20px;
|
}
|
}
|
.list-view {
|
height: calc(100% - 60px);
|
overflow: hidden;
|
}
|
.btn-pager {
|
display: flex;
|
.page {
|
margin-left: auto;
|
}
|
}
|
}
|
}
|
</style>
|