185 lines
5.8 KiB
Vue
185 lines
5.8 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<span>合同号:</span>
|
|
<el-select v-model="contractNumValue" placeholder="合同号" size="small" filterable clearable>
|
|
<el-option
|
|
v-for="item in contractNum"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value">
|
|
<div style="float: left">{{ item.label }}</div>
|
|
<div style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</div>
|
|
</el-option>
|
|
</el-select>
|
|
<span>供应商:</span>
|
|
<el-input v-model="supplierName" placeholder="供应商" size="small" clearable/>
|
|
<el-button
|
|
type="success"
|
|
size="small"
|
|
icon="el-icon-search"
|
|
style="margin-left:10px"
|
|
@click="total1=0;pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table v-loading="" :data="tableData1" stripe border style="width: 100%;max-height: 500px;" height="500px" size="mini">
|
|
<el-table-column label="采购合同编号" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.采购合同编号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="采购合同名称" align="center" min-width="120">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.采购合同名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="规定到货时间" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.规定到货时间.split(' ')[0] }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="供应商" align="center" min-width="250">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.供应商名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="预付款" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.预付款 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="采购员" align="center" min-width="70">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.姓名 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="总金额" align="center" min-width="70">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.含税总金额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="欠款金额" align="center" min-width="70">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.欠款金额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="已付金额" align="center" min-width="70">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.含税总金额 - scope.row.欠款金额 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="付款情况" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
<el-progress
|
|
:text-inside="true"
|
|
:stroke-width="18"
|
|
:percentage="(parseInt(10000*(scope.row.含税总金额 - scope.row.欠款金额)/scope.row.含税总金额)) / 100"
|
|
status="success"/>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block" style="margin-top: 10px;">
|
|
<el-pagination
|
|
:current-page="pageCurrent1"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize1"
|
|
:total="total1"
|
|
style="display:inline-block;width:50%"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange1"
|
|
@current-change="handleCurrentChange1"/>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { initPayState, searchPayState } from '@/api/WorkshopProcurement/PayStateSearch'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: '', // 付款情况查询
|
|
data() {
|
|
return {
|
|
check1: 0,
|
|
check2: 0,
|
|
contractNumValue: '',
|
|
contractNum: [],
|
|
supplierName: '',
|
|
tableData1: [],
|
|
pageSize1: 10,
|
|
pageCurrent1: 1,
|
|
total1: 0,
|
|
dialogVisible1: false
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'sidebar',
|
|
'avatar',
|
|
'name',
|
|
'id' // 人员编号
|
|
])
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
fetchData() {
|
|
initPayState().then(response => {
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
this.contractNum.push({
|
|
label: response.data[i].采购合同编号,
|
|
name: response.data[i].采购合同名称,
|
|
value: response.data[i].采购合同流水号
|
|
})
|
|
}
|
|
})
|
|
},
|
|
searchTable1() {
|
|
this.contractNumValue ? this.check1 = 1 : this.check1 = 0
|
|
this.supplierName ? this.check2 = 1 : this.check2 = 0
|
|
searchPayState(this.pageCurrent1, this.pageSize1, this.check1, this.contractNumValue, this.check2, this.supplierName).then(response => {
|
|
for (let j = 0; j < response.data.rows.length; j++) {
|
|
response.data.rows[j].含税总金额 = parseInt(response.data.rows[j].含税总金额 * 100) / 100
|
|
response.data.rows[j].欠款金额 = parseInt(response.data.rows[j].欠款金额 * 100) / 100
|
|
}
|
|
this.tableData1 = response.data.rows
|
|
this.total1 = response.data.total
|
|
})
|
|
},
|
|
handleSizeChange1(val) {
|
|
this.pageSize1 = val
|
|
this.pageCurrent1 = 1
|
|
this.searchTable1()
|
|
},
|
|
handleCurrentChange1(val) {
|
|
this.pageCurrent1 = val
|
|
this.searchTable1()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-card{
|
|
margin-bottom: 15px;
|
|
}
|
|
.el-select{
|
|
width:200px
|
|
}
|
|
.el-input{
|
|
width:200px
|
|
}
|
|
span{
|
|
margin: 10px 0 10px 10px;
|
|
}
|
|
.searchForm .el-form-item{
|
|
margin-bottom: 5px;
|
|
}
|
|
.el-tag{
|
|
margin: 0
|
|
}
|
|
</style>
|