|
@@ -156,7 +156,7 @@
|
|
|
<el-table-column label="融信类型" :formatter="typeFormat" align="center" prop="zfiCreateType" v-if="uncheckList.zfiCreateType" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="融信产品" align="center" prop="zfpName" v-if="uncheckList.zfpName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="融信金额" align="center" :formatter="moneyFormat" prop="zfiAmount" :show-overflow-tooltip="true" v-if="uncheckList.zfiAmount"/>
|
|
|
- <el-table-column label="融信利率" align="center" prop="zfiRate" :show-overflow-tooltip="true" v-if="uncheckList.zfiRate"/>
|
|
|
+ <el-table-column label="融信利率(%)" align="center" width="100px;" prop="zfiRate" :show-overflow-tooltip="true" v-if="uncheckList.zfiRate"/>
|
|
|
<el-table-column label="签发有效期" align="center" prop="zfiEffectiveDate" :show-overflow-tooltip="true" v-if="uncheckList.zfiEffectiveDate"/>
|
|
|
<el-table-column label="承诺还款日" align="center" prop="zfiExpireDate" :show-overflow-tooltip="true" v-if="uncheckList.zfiExpireDate"/>
|
|
|
<el-table-column label="签收日期" align="center" prop="zfiSignDate" :show-overflow-tooltip="true" v-if="uncheckList.zfiSignDate"/>
|
|
@@ -207,6 +207,13 @@
|
|
|
v-hasPermi="['credit:credit:goFinance']"
|
|
|
v-if="scope.row.zfiStatus == '02'"
|
|
|
>去融资</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ >盖章</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -306,7 +313,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: 'zfiRate',
|
|
|
- value: '融信利率'
|
|
|
+ value: '融信利率(%)'
|
|
|
},
|
|
|
{
|
|
|
label: 'zfiEffectiveDate',
|
|
@@ -477,6 +484,12 @@ export default {
|
|
|
Cookies.set("/credit/goFinance/"+zfiId + "/", this.$route.fullPath)
|
|
|
this.$router.push({ path: "/credit/goFinance/"+zfiId + "/" });
|
|
|
},
|
|
|
+ //盖章
|
|
|
+ seal(row){
|
|
|
+ const zfiId = row.zfiId || this.ids
|
|
|
+ Cookies.set("/credit/creditSeal/"+zfiId + "/", this.$route.fullPath)
|
|
|
+ this.$router.push({ path: "/credit/creditSeal/"+zfiId + "/" });
|
|
|
+ },
|
|
|
//格式化类型
|
|
|
typeFormat(row, column) {
|
|
|
return this.selectDictLabel(this.typeOptions, row.zfiCreateType);
|