254 lines
9.5 KiB
Vue
254 lines
9.5 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<el-card>
|
||
<el-input v-model="billNames" clearable filterable size="small" placeholder="供应商或合同编号" style="width: 200px;margin: 5px"/>
|
||
<el-select v-model="personValue" placeholder="采购员" size="small" style="width: 120px" clearable>
|
||
<el-option
|
||
v-for="item in person"
|
||
:key="item.value"
|
||
:label="item.label"
|
||
:value="item.value"/>
|
||
</el-select>
|
||
<span style="margin-left: 0">提交时间:</span>
|
||
<el-date-picker
|
||
v-model="dateRange"
|
||
size="small"
|
||
type="daterange"
|
||
align="center"
|
||
style="width: 300px"
|
||
value-format="yyyy-MM-dd"
|
||
format="yyyy-MM-dd"
|
||
range-separator="~"
|
||
start-placeholder="开始日期"
|
||
end-placeholder="结束日期"/>
|
||
<el-button type="primary" plain size="small" icon="el-icon-search" style="margin-left: 10px" @click="total1=0;pageCurrent1=1;pageSize1=50;searchTable1()">查询</el-button>
|
||
<el-radio v-model="radio" label="1" style="margin: 0 0 0 10px">全部</el-radio>
|
||
<el-radio v-model="radio" label="2" style="margin: 0 0 0 10px">通过</el-radio>
|
||
<el-radio v-model="radio" label="3" style="margin: 0 0 0 10px">未过</el-radio>
|
||
<el-button type="success" size="small" icon="el-icon-download" style="margin-left:10px;margin-top: 3px;margin-right: 20px;float: right" plain @click="exportTable('')">导出</el-button>
|
||
</el-card>
|
||
<el-card style="margin-top: 5px">
|
||
<el-table v-loading="loading1" :data="tableData1" size="mini" border stripe style="width: 100%" height="600px" highlight-current-row>
|
||
<el-table-column label="采购合同编号" align="center" width="120">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.采购合同编号 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="供应商" align="center" min-width="150" show-overflow-tooltip>
|
||
<template slot-scope="scope">
|
||
{{ scope.row.供应商名称 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="采购员" align="center" width="70">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.姓名 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="合同金额(元)" align="center" min-width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.合同总额 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="提交时间" align="center" width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.操作时间 ? scope.row.操作时间.split(' ')[0] : '' }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审核人" align="center" width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审核人姓名 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审核时间" align="center" width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审核时间 ? scope.row.审核时间.split(' ')[0] : '' }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审核结果" align="center" min-width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审核情况内容 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审核未过原因" align="center" width="80">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.未通过审核原因 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审批人" align="center" width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审批人姓名 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审批时间" align="center" min-width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审批时间 ? scope.row.审批时间.split(' ')[0] : '' }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审批结果" align="center" min-width="90">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.审批情况内容 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="审批未过原因" align="center" width="80">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.未通过审批原因 }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="操作" align="center" width="80px" fixed="right">
|
||
<template slot-scope="scope">
|
||
<el-tooltip :open-delay="1000" effect="dark" content="查看详情" placement="top">
|
||
<div style="display: inline-block">
|
||
<el-button type="text" size="mini" @click="searchTable2(scope.row)">详情</el-button>
|
||
</div>
|
||
</el-tooltip>
|
||
<el-tooltip :open-delay="1000" effect="dark" content="撤销审核" placement="top">
|
||
<div style="display: inline-block">
|
||
<el-button type="text" size="mini" @click="editSubmit(scope.row)">撤销</el-button>
|
||
</div>
|
||
</el-tooltip>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
<div class="block" style="margin-top: 10px;">
|
||
<el-pagination
|
||
:current-page="pageCurrent1"
|
||
:page-sizes="[50, 100, 150, 200]"
|
||
: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>
|
||
|
||
<el-dialog v-el-drag-dialog :visible.sync="dialogFormVisible" title="合同审核通知" center style="min-height: 300px;" width="900px">
|
||
<div style="min-height:500px;margin: 0px auto;width:800px;border:1px solid black" v-html="returns"/>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { initBuyer, searchTable1, searchTable2, editsubmit } from '@/api/ManufacturingCenter/ContractApprovalQuery'
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
radio: '1',
|
||
billNames: '',
|
||
person: [],
|
||
personValue: '',
|
||
dateRange: '',
|
||
total1: 0,
|
||
pageCurrent1: 1,
|
||
pageSize1: 50,
|
||
tableData1: [],
|
||
loading1: false,
|
||
dialogFormVisible: false,
|
||
returns: ''
|
||
}
|
||
},
|
||
created() {
|
||
this.fetchData()
|
||
this.searchTable1()
|
||
},
|
||
methods: {
|
||
fetchData() {
|
||
this.person = []
|
||
initBuyer().then(response => {
|
||
for (let i = 0; i < response.data.length; i++) {
|
||
this.person.push({
|
||
label: response.data[i].姓名,
|
||
value: response.data[i].人员编号
|
||
})
|
||
}
|
||
})
|
||
},
|
||
searchTable1() {
|
||
this.loading1 = true
|
||
var check1, check2, check3
|
||
this.billNames ? check1 = 1 : check1 = 0
|
||
this.dateRange ? check2 = 1 : (check2 = 0, this.dateRange = '')
|
||
this.personValue ? check3 = 1 : check3 = 0
|
||
searchTable1(this.radio, check1, this.billNames, check2, this.dateRange[0], this.dateRange[1], check3, this.personValue, this.pageCurrent1, this.pageSize1).then(response => {
|
||
console.log(response.data)
|
||
this.loading1 = false
|
||
this.tableData1 = response.data.rows
|
||
this.total1 = response.data.total
|
||
})
|
||
},
|
||
exportTable() {
|
||
var check1, check2, check3
|
||
this.billNames ? check1 = 1 : check1 = 0
|
||
this.dateRange ? check2 = 1 : (check2 = 0, this.dateRange = '')
|
||
this.personValue ? check3 = 1 : check3 = 0
|
||
var param = []
|
||
param[0] = ['查询全部', this.radio]
|
||
param[1] = ['供应商名称_check', check1]
|
||
param[2] = ['供应商名称', this.billNames]
|
||
param[3] = ['时间段_check', check2]
|
||
if (check2 === 0) {
|
||
param[4] = ['开始时间', '']
|
||
param[5] = ['结束时间', '']
|
||
} else {
|
||
param[4] = ['开始时间', this.dateRange[0]]
|
||
param[5] = ['结束时间', this.dateRange[1]]
|
||
}
|
||
param[6] = ['人员编号_check', check3]
|
||
param[7] = ['人员编号', this.personValue]
|
||
var Data = this.CreateData('2001', '报表_采购管理_合同审核查询_查询数据', param)
|
||
this.exportExcel_NPOI(Data)
|
||
},
|
||
searchTable2(row) {
|
||
this.contractValue = parseInt(row.采购合同流水号)
|
||
searchTable2(this.contractValue).then(response => {
|
||
this.returns = response.data[0].合同内容
|
||
this.dialogFormVisible = true
|
||
})
|
||
},
|
||
editSubmit(row) {
|
||
if (row.审批情况流水号 !== '3') {
|
||
this.$message.error('该合同已审批,无法撤回!')
|
||
} else {
|
||
this.$confirm('确定撤回?', '提示', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
}).then(() => {
|
||
editsubmit(row.采购合同流水号).then(response => {
|
||
if (response.data[0].result === '1') {
|
||
this.$message.success('撤销成功')
|
||
} else {
|
||
this.$message.error('操作失败')
|
||
}
|
||
})
|
||
}).catch(() => {
|
||
this.$message({
|
||
type: 'info',
|
||
message: '已取消撤回'
|
||
})
|
||
})
|
||
}
|
||
this.searchTable1()
|
||
},
|
||
handleSizeChange1(val) {
|
||
this.pageCurrent1 = 1
|
||
this.pageSize1 = val
|
||
this.searchTable1()
|
||
},
|
||
handleCurrentChange1(val) {
|
||
this.pageCurrent1 = val
|
||
this.searchTable1()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
</style>
|
||
<style>
|
||
#table .el-form-item {
|
||
margin: 0;
|
||
}
|
||
</style>
|