|
|
@ -53,32 +53,42 @@ |
|
|
|
<div class=""> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;"> |
|
|
|
<el-table-column fixed width="60" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column fixed label="操作" align="center" width="100"> |
|
|
|
<el-table-column fixed label="操作" align="center" width="80"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="primary" size="mini" @click="handleConfirm(scope.row)">确认</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="分公司" align="center" width="120"> |
|
|
|
<el-table-column label="资方信审时间" align="center" width="180"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.useOrgName }}</span> |
|
|
|
<el-date-picker v-model="scope.row.capCarefulDate" style="width: 90%" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售部门" align="center" width="150"> |
|
|
|
<el-table-column label="资方信审结果" align="center" width="180"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.orgName }}</span> |
|
|
|
<el-select v-model="scope.row.capCarefulResult" placeholder="请选择" clearable filterable> |
|
|
|
<el-option v-for="item in result_list" :disabled="item.dictValue =='暂无法判定'" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"></el-option> |
|
|
|
</el-select> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售专员" align="center" width="120"> |
|
|
|
<el-table-column label="资方合同号" align="center" width="180"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.staffName }}</span> |
|
|
|
<el-input v-model="scope.row.bankContractNo" clearable placeholder=""/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售合同编号" align="center" width="150"> |
|
|
|
<el-table-column label="见证附件" align="center" width="130"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.contractNo }}</span> |
|
|
|
<div style="display: flex;flex-direction: row;justify-content: center;align-items: center"> |
|
|
|
<upload ref="upload" v-model="images_list" :limit="50" @change="uploadFile($event, scope.row.sid)" bucket="map" :upload-data="{ type: '0001' }"/> |
|
|
|
<el-button type="primary" style="margin-left: 5px" size="mini" @click="lookFile(scope.row)">查看</el-button> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售专员" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.staffName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="客户名称" align="center" width="120"> |
|
|
|
<el-table-column label="客户名称" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.customerName }}</span> |
|
|
|
</template> |
|
|
@ -88,12 +98,12 @@ |
|
|
|
<span>{{ scope.row.loanContractNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="台数" align="center" width="80"> |
|
|
|
<el-table-column label="台数" align="center" width="60"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.num }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="贷款人" align="center" width="100"> |
|
|
|
<el-table-column label="贷款人" align="center" width="90"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.borrowerName }}</span> |
|
|
|
</template> |
|
|
@ -108,29 +118,19 @@ |
|
|
|
<span>{{ scope.row.policyName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="资方信审时间" align="center" width="250"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-date-picker v-model="scope.row.capCarefulDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="资方信审结果" align="center" width="200"> |
|
|
|
<el-table-column label="分公司" align="center" width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select v-model="scope.row.capCarefulResult" placeholder="请选择" clearable filterable> |
|
|
|
<el-option v-for="item in result_list" :disabled="item.dictValue =='暂无法判定'" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"></el-option> |
|
|
|
</el-select> |
|
|
|
<span>{{ scope.row.useOrgName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="资方合同号" align="center" width="200"> |
|
|
|
<el-table-column label="销售部门" align="center" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model="scope.row.bankContractNo" clearable placeholder=""/> |
|
|
|
<span>{{ scope.row.orgName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="见证附件" align="center" width="150"> |
|
|
|
<el-table-column label="销售合同编号" align="center" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> |
|
|
|
<upload ref="upload" v-model="images_list" :limit="50" @change="uploadFile($event, scope.row.sid)" bucket="map" :upload-data="{ type: '0001' }"/> |
|
|
|
<el-button type="primary" size="mini" @click="lookFile(scope.row)">查看</el-button> |
|
|
|
</div> |
|
|
|
<span>{{ scope.row.contractNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|