|
@@ -34,9 +34,22 @@
|
|
>
|
|
>
|
|
<!--<el-table-column type="selection" align="center"> </el-table-column>-->
|
|
<!--<el-table-column type="selection" align="center"> </el-table-column>-->
|
|
<el-table-column type="index" label="序号" width="50" align="center"></el-table-column>
|
|
<el-table-column type="index" label="序号" width="50" align="center"></el-table-column>
|
|
- <el-table-column property="company_name" label="企业名称" align="center"> </el-table-column>
|
|
|
|
|
|
+ <el-table-column property="company_name" label="企业名称" width="300" align="center"> </el-table-column>
|
|
<el-table-column property="money" label="融资金额(万元)" align="center"> </el-table-column>
|
|
<el-table-column property="money" label="融资金额(万元)" align="center"> </el-table-column>
|
|
- <el-table-column property="use" label="融资用途" align="center"> </el-table-column>
|
|
|
|
|
|
+ <!-- <el-table-column property="use" label="融资用途" align="center"> </el-table-column>-->
|
|
|
|
+
|
|
|
|
+ <el-table-column label="需求状态" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ getDemandState(scope.row)}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+
|
|
|
|
+ <el-table-column label="超时状态" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ getTimeoutState(scope.row)}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+
|
|
<el-table-column property="institution_name" label="金融机构名称" align="center"> </el-table-column>
|
|
<el-table-column property="institution_name" label="金融机构名称" align="center"> </el-table-column>
|
|
<el-table-column property="product_name" label="产品名称" align="center"> </el-table-column>
|
|
<el-table-column property="product_name" label="产品名称" align="center"> </el-table-column>
|
|
|
|
|
|
@@ -52,7 +65,7 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column label="操作" align="center" width="300px">
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" width="150px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<!--<el-button size="mini" type="text" class="other" @click="updateState(scope.row,'9')" v-if="scope.row.current_state === '1'">完成</el-button>
|
|
<!--<el-button size="mini" type="text" class="other" @click="updateState(scope.row,'9')" v-if="scope.row.current_state === '1'">完成</el-button>
|
|
<el-button size="mini" type="text" class="other" @click="updateState(scope.row,'-2')" v-if="scope.row.current_state === '0'">审核</el-button>
|
|
<el-button size="mini" type="text" class="other" @click="updateState(scope.row,'-2')" v-if="scope.row.current_state === '0'">审核</el-button>
|
|
@@ -266,6 +279,39 @@
|
|
return '停用';
|
|
return '停用';
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ getDemandState(val) {
|
|
|
|
+ let match = val.finance_follow.orcredit;
|
|
|
|
+ switch(match)
|
|
|
|
+ {
|
|
|
|
+ case '0':
|
|
|
|
+ return '已接单';
|
|
|
|
+ case '1':
|
|
|
|
+ return '已放款';
|
|
|
|
+ case '2':
|
|
|
|
+ return '已审批';
|
|
|
|
+ case '3':
|
|
|
|
+ return '已拒绝';
|
|
|
|
+ case '9':
|
|
|
|
+ return '已推送';
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ getTimeoutState(val) {
|
|
|
|
+ let match = val.finance_follow.orcredit;
|
|
|
|
+ let timeout = val.next_is_timeout === '1' ? '已超时' : '未超时';
|
|
|
|
+ switch(match)
|
|
|
|
+ {
|
|
|
|
+ case '0':
|
|
|
|
+ return '审批'+ timeout;
|
|
|
|
+ case '1':
|
|
|
|
+ return '';
|
|
|
|
+ case '2':
|
|
|
|
+ return '放款'+ timeout;
|
|
|
|
+ case '3':
|
|
|
|
+ return '';
|
|
|
|
+ case '9':
|
|
|
|
+ return '接单'+ timeout;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
@@ -289,6 +335,11 @@
|
|
/deep/ .el-table td {
|
|
/deep/ .el-table td {
|
|
padding: 11px 0;
|
|
padding: 11px 0;
|
|
}
|
|
}
|
|
|
|
+ /deep/ .el-table .cell {
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ }
|
|
|
|
|
|
.other {
|
|
.other {
|
|
color: #f36302;
|
|
color: #f36302;
|