|
@@ -9,7 +9,7 @@
|
|
<el-option v-for="item in contractList" :key="item.id" :label="item.contractNo+'('+item.status+')'" :value="item.contractNo"
|
|
<el-option v-for="item in contractList" :key="item.id" :label="item.contractNo+'('+item.status+')'" :value="item.contractNo"
|
|
style="color: #8890b1" />
|
|
style="color: #8890b1" />
|
|
</el-select>
|
|
</el-select>
|
|
- <span style='padding-left:10px;'>买方:{{buger}}</span>
|
|
|
|
|
|
+ <span style='padding-left:10px;min-width: 235px'>买方:{{buyer}}</span>
|
|
</template>
|
|
</template>
|
|
<template slot="right">
|
|
<template slot="right">
|
|
</template>
|
|
</template>
|
|
@@ -89,9 +89,9 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column width='130' prop="payDeadline" label="支付日期">
|
|
<el-table-column width='130' prop="payDeadline" label="支付日期">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column width='130' prop="createDate" label="录入日期">
|
|
|
|
|
|
+ <el-table-column width='160' prop="createDate" label="录入日期" >
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column width='130' prop="status" label="状态">
|
|
|
|
|
|
+ <el-table-column prop="status" label="状态">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span v-if='scope.row.approveStatus'>{{scope.row.approveStatus}}</span><span v-else>{{scope.row.status}}</span>
|
|
<span v-if='scope.row.approveStatus'>{{scope.row.approveStatus}}</span><span v-else>{{scope.row.status}}</span>
|
|
<i @click="handlerecord(scope.row)" class="el-icon-s-claim"></i>
|
|
<i @click="handlerecord(scope.row)" class="el-icon-s-claim"></i>
|
|
@@ -256,7 +256,7 @@
|
|
year: '',
|
|
year: '',
|
|
title:'',
|
|
title:'',
|
|
costType:1,
|
|
costType:1,
|
|
- buger:'',
|
|
|
|
|
|
+ buyer:'',
|
|
deptBudgetTotal: 0,
|
|
deptBudgetTotal: 0,
|
|
currentPage: 1,
|
|
currentPage: 1,
|
|
recordList:[],
|
|
recordList:[],
|
|
@@ -314,7 +314,7 @@
|
|
this.contractId=this.$route.query.id
|
|
this.contractId=this.$route.query.id
|
|
this.contractNo=this.$route.query.contractNo
|
|
this.contractNo=this.$route.query.contractNo
|
|
this.searchTypeText=this.$route.query.contractNo+'('+this.$route.query.status+')'
|
|
this.searchTypeText=this.$route.query.contractNo+'('+this.$route.query.status+')'
|
|
- this.buger=this.$route.query.buger
|
|
|
|
|
|
+ this.buyer=this.$route.query.buyer
|
|
getcontract({flag:0}).toPromise()
|
|
getcontract({flag:0}).toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
this.contractList=response
|
|
this.contractList=response
|
|
@@ -424,7 +424,7 @@
|
|
this.contractId=this.contractList[i].id
|
|
this.contractId=this.contractList[i].id
|
|
this.contractNo=this.contractList[i].contractNo
|
|
this.contractNo=this.contractList[i].contractNo
|
|
this.searchTypeText=this.contractList[i].contractNo
|
|
this.searchTypeText=this.contractList[i].contractNo
|
|
- this.buger=this.contractList[i].buger
|
|
|
|
|
|
+ this.buyer=this.contractList[i].buyer
|
|
this.getList()
|
|
this.getList()
|
|
}
|
|
}
|
|
|
|
|