|
@@ -61,8 +61,12 @@
|
|
<el-table-column prop="procurementPlanNo" label="编号" > </el-table-column>
|
|
<el-table-column prop="procurementPlanNo" label="编号" > </el-table-column>
|
|
<el-table-column prop="buyer" label="发布企业/发布人" >
|
|
<el-table-column prop="buyer" label="发布企业/发布人" >
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="" label="发布平台" > </el-table-column>
|
|
|
|
- <el-table-column prop="" label="类型" > </el-table-column>
|
|
|
|
|
|
+ <el-table-column label="发布平台" >
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <span v-if="scope.row.pcFlag==1">PC端</span>
|
|
|
|
+ <span v-else>移动端</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column prop="goodsName" label="货名" > </el-table-column>
|
|
<el-table-column prop="goodsName" label="货名" > </el-table-column>
|
|
<el-table-column prop="weight" label="重量(吨)" > </el-table-column>
|
|
<el-table-column prop="weight" label="重量(吨)" > </el-table-column>
|
|
<el-table-column prop="procurementPlanType" label="交易类型" > </el-table-column>
|
|
<el-table-column prop="procurementPlanType" label="交易类型" > </el-table-column>
|
|
@@ -70,7 +74,7 @@
|
|
<el-table-column prop="unitPrice" label="价格(元/吨)" > </el-table-column>
|
|
<el-table-column prop="unitPrice" label="价格(元/吨)" > </el-table-column>
|
|
<el-table-column prop="buyerPhone" label="电话" > </el-table-column>
|
|
<el-table-column prop="buyerPhone" label="电话" > </el-table-column>
|
|
<el-table-column prop="updateDate" label="更新时间" width="140"> </el-table-column>
|
|
<el-table-column prop="updateDate" label="更新时间" width="140"> </el-table-column>
|
|
- <el-table-column prop="seller" label="操作" width="180">
|
|
|
|
|
|
+ <el-table-column prop="" label="操作" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div
|
|
<div
|
|
class="record"
|
|
class="record"
|
|
@@ -261,6 +265,13 @@ export default {
|
|
this.currentPage = 1
|
|
this.currentPage = 1
|
|
this.getList()
|
|
this.getList()
|
|
},
|
|
},
|
|
|
|
+ selectExamineType(e) {
|
|
|
|
+ for (var i = 0; i < this.searchTypeList.length; i++) {
|
|
|
|
+ if (this.searchTypeList[i].value == e) {
|
|
|
|
+ this.searchType = this.searchTypeList[i].type
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
//审核通过
|
|
//审核通过
|
|
adopt(row) {
|
|
adopt(row) {
|
|
this.procurementPlanInfo.id = row.id
|
|
this.procurementPlanInfo.id = row.id
|