<template>
|
<div class="saleInvoice">
|
<div v-if="isDetail" class="detail-top">
|
<DetailListCommonBtn :query-class-options="queryClassOptions" />
|
<PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" />
|
</div>
|
<div v-else class="top">
|
<SearchCommonView
|
ref="searchCommonView"
|
:query-class-options="queryClassOptions"
|
:search-options="searchOptions"
|
:search-sel="searchSel"
|
@searchClick="searchClick"
|
@resetClick="resetClick"
|
/>
|
<div class="btn-pager">
|
<PublicFunctionBtnView :statistics="true" :operates-list="operatesList" @batchDelete="delClick" />
|
<PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" />
|
</div>
|
</div>
|
<TableCommonView
|
ref="tableListRef"
|
:table-list="tableList"
|
@selClientClick="selClientClick"
|
@selCommonClick="selCommonClick"
|
@getSelectArray="getSelectArray"
|
@selTableCol="selTableCol"
|
>
|
<!-- <template slot="tableButton">
|
<el-table-column label="操作" width="60" fixed="right">
|
<template slot-scope="scope">
|
<el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button>
|
</template>
|
</el-table-column>
|
</template> -->
|
</TableCommonView>
|
<!-- 新建/编辑 -->
|
<AddSaleInvoice v-if="editConfig.visible" :edit-common-config="editConfig" />
|
</div>
|
</template>
|
|
<script>
|
import { getInvoiceList } from "@/api/common/payment"
|
import pageMixin from "@/components/makepager/pager/mixin/pageMixin"
|
import AddSaleInvoice from "@/views/other/payment/saleInvoice/addSaleInvoice.vue"
|
|
export default {
|
name: "SaleInvoice",
|
props: {
|
isDetail: {
|
type: Boolean,
|
default: false
|
},
|
addConfig: {
|
type: Object,
|
default: () => {
|
return {}
|
}
|
},
|
sourceType: {
|
type: Number,
|
default: 1
|
}
|
},
|
mixins: [pageMixin],
|
components: { AddSaleInvoice },
|
computed: {},
|
data() {
|
return {
|
tableList: {},
|
loading: false,
|
activeName: "second",
|
queryClassValue: "1",
|
queryClassOptions: [
|
{ value: "1", label: "全部" },
|
{ value: "2", label: "今日联系" },
|
{ value: "3", label: "本周联系" },
|
{ value: "4", label: "本月联系" }
|
],
|
searchOptions: [],
|
operatesList: [
|
{ id: "1", name: "共享" },
|
{ id: "2", name: "批量编辑" },
|
{ id: "3", name: "导出" },
|
{ id: "4", name: "下载全部附件" },
|
{ id: "5", name: "更改创建人" },
|
{ id: "6", name: "树结构设置" },
|
{ id: "7", name: "审批设置" },
|
{ id: "8", name: "回访预设列宽" }
|
],
|
editConfig: {
|
visible: false,
|
title: "新建",
|
infomation: {}
|
},
|
saleChanceName: "",
|
contactsDeail: {
|
visible: false,
|
infomation: {}
|
},
|
clientDeail: {
|
visible: false,
|
infomation: {}
|
},
|
selValueList: [],
|
searchSel: {
|
value: "topic",
|
label: ""
|
},
|
search_map: {},
|
keyword: "",
|
keywordType: "",
|
tableColumn: [
|
{ label: "发票编号", prop: "invoiceNumber", default: true },
|
{ label: "主题", prop: "subject" },
|
{ label: "客户名称", prop: "client_name" },
|
{ label: "票据类型", prop: "invoiceType_name" },
|
{ label: "开票日期", prop: "invoiceDate" },
|
{ label: "销售负责人", prop: "principalId" },
|
{ label: "产品名称", prop: "name", isProductName: true },
|
{ label: "数量", prop: "amount", isProductAmount: true },
|
{ label: "含税单价", prop: "price", isProductPrice: true },
|
{ label: "价税合计", prop: "total", isProductTotal: true }
|
],
|
showCol: [
|
"发票编号",
|
"主题",
|
"客户名称",
|
"票据类型",
|
"开票日期",
|
"销售负责人",
|
"产品名称",
|
"数量",
|
"含税单价",
|
"价税合计"
|
]
|
}
|
},
|
created() {
|
this.setTable()
|
if (!this.isDetail) {
|
this.keyword = ""
|
this.keywordType = ""
|
} else {
|
this.keyword = this.addConfig.keyword
|
this.keywordType = this.addConfig.keywordType
|
}
|
this.getData()
|
},
|
methods: {
|
setTable() {
|
this.tableList = {
|
selectIndex: true,
|
tableInfomation: [],
|
allcol: [],
|
showcol: this.showCol,
|
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 })
|
}
|
},
|
setColumnVisible(showCol) {
|
return this.tableColumn.map((ele) => {
|
return {
|
...ele,
|
isShowColumn: showCol.includes(ele.label)
|
}
|
})
|
},
|
selTableCol(val) {
|
this.showcol = val
|
this.tableList.tableColumn = this.setColumnVisible(val)
|
},
|
// 请求数据
|
async getData() {
|
this.loading = true
|
await getInvoiceList({
|
keyword: this.keyword,
|
keywordType: this.keywordType,
|
page: this.pagerOptions.currPage,
|
pageSize: this.pagerOptions.pageSize
|
})
|
.then((res) => {
|
if (res.data.code === 200) {
|
if (res.data.data.data && res.data.data.data.length > 0) {
|
const list = res.data.data.data.map((item) => {
|
return {
|
...item,
|
client_name: item.Client.name,
|
invoiceType_name: item.InvoiceType.name
|
// principalId: item.member.name
|
}
|
})
|
this.tableList.tableInfomation = list || []
|
this.pagerOptions.totalCount = res.data.count
|
} else {
|
this.tableList.tableInfomation = []
|
}
|
} else {
|
this.tableList.tableInfomation = []
|
}
|
this.loading = false
|
})
|
.catch((err) => {
|
console.log(err)
|
this.tableList.tableInfomation = []
|
this.loading = false
|
})
|
},
|
// 搜索
|
searchClick(val, content) {
|
this.keyword = content
|
this.keywordType = val.label
|
this.getData()
|
},
|
resetClick() {
|
this.keyword = ""
|
this.keywordType = ""
|
this.getData()
|
},
|
getSelectArray(val) {
|
console.log(val)
|
this.selValueList = []
|
const list = val.map((item) => {
|
return item.id
|
})
|
this.selValueList = list
|
},
|
// 新建
|
addBtnClick() {
|
this.editConfig.visible = true
|
this.editConfig.title = "新建"
|
this.editConfig.sourceType = this.sourceType
|
this.editConfig.infomation = { ...this.addConfig, number: "" }
|
}
|
}
|
}
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style lang="scss" scoped>
|
.saleInvoice {
|
.top {
|
margin-bottom: 20px;
|
.btn-pager {
|
display: flex;
|
.page {
|
margin-left: auto;
|
}
|
}
|
}
|
.detail-top {
|
display: flex;
|
.page {
|
margin-left: auto;
|
}
|
}
|
}
|
</style>
|