|
|
|
@ -187,35 +187,35 @@
|
|
|
|
|
<el-table v-loading="loading" :data="infoList" @sort-change="handleSortChange"
|
|
|
|
|
@selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center"/>
|
|
|
|
|
<el-table-column label="产品名称" align="center" prop="productName" sortable='custom' fixed="left" width="100"/>
|
|
|
|
|
<el-table-column label="产品简称" align="center" prop="simpleName" sortable='custom' fixed="left" width="100"/>
|
|
|
|
|
<el-table-column label="产品类型" align="center" prop="productType" sortable='custom' fixed="left" width="100">
|
|
|
|
|
<el-table-column label="产品名称" align="center" prop="productName" sortable='custom' fixed="left" min-width="100"/>
|
|
|
|
|
<!-- <el-table-column label="产品简称" align="center" prop="simpleName" sortable='custom' min-width="100"/> -->
|
|
|
|
|
<el-table-column label="产品类型" align="center" prop="productType" sortable='custom' min-width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.product_type" :value="scope.row.productType"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="产品细类" align="center" prop="productSubtype" sortable='custom' fixed="left" width="100"/>
|
|
|
|
|
<el-table-column label="最高额度(元)" align="center" prop="maxAmount" sortable='custom' fixed="left" width="120"/>
|
|
|
|
|
<el-table-column label="年利率(单利)" align="center" prop="interestRate" sortable='custom' fixed="left" width="120"/>
|
|
|
|
|
<el-table-column label="产品简介" align="center" prop="productIntro" sortable='custom' show-overflow-tooltip
|
|
|
|
|
width="100"/>
|
|
|
|
|
<el-table-column label="产品详情" align="center" prop="productDetail" sortable='custom' show-overflow-tooltip
|
|
|
|
|
width="100"/>
|
|
|
|
|
<el-table-column label="还款周期" align="center" prop="repaymentCycle" sortable='custom' width="100"/>
|
|
|
|
|
<el-table-column label="还款方式" align="center" prop="repaymentMethod" sortable='custom' width="100"/>
|
|
|
|
|
<el-table-column label="展业城市" align="center" prop="businessCity" sortable='custom' width="100" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="综合费率" align="center" prop="combinedRates" sortable='custom' width="100"/>
|
|
|
|
|
<el-table-column label="上架时间起" align="center" prop="listBegin" width="150" sortable='custom'>
|
|
|
|
|
<!-- <el-table-column label="产品细类" align="center" prop="productSubtype" sortable='custom' min-width="100"/> -->
|
|
|
|
|
<el-table-column label="最高额度(元)" align="center" prop="maxAmount" sortable='custom' min-width="120"/>
|
|
|
|
|
<el-table-column label="年利率(单利)" align="center" prop="interestRate" sortable='custom' min-width="120"/>
|
|
|
|
|
<!-- <el-table-column label="产品简介" align="center" prop="productIntro" sortable='custom' show-overflow-tooltip
|
|
|
|
|
min-width="100"/> -->
|
|
|
|
|
<!-- <el-table-column label="产品详情" align="center" prop="productDetail" sortable='custom' show-overflow-tooltip
|
|
|
|
|
min-width="100"/> -->
|
|
|
|
|
<!-- <el-table-column label="还款周期" align="center" prop="repaymentCycle" sortable='custom' min-width="100"/> -->
|
|
|
|
|
<!-- <el-table-column label="还款方式" align="center" prop="repaymentMethod" sortable='custom' min-width="100"/> -->
|
|
|
|
|
<el-table-column label="展业城市" align="center" prop="businessCity" sortable='custom' min-width="150" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="综合费率" align="center" prop="combinedRates" sortable='custom' min-width="100"/>
|
|
|
|
|
<el-table-column label="上架时间起" align="center" prop="listBegin" min-width="120" sortable='custom'>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.listBegin, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="上架时间止" align="center" prop="listEnd" width="150" sortable='custom'>
|
|
|
|
|
<el-table-column label="上架时间止" align="center" prop="listEnd" min-width="120" sortable='custom'>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.listEnd, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" sortable='custom' show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column label="备注" align="center" prop="remark" sortable='custom' show-overflow-tooltip/> -->
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status" sortable='custom' fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.product_status" :value="scope.row.status"/>
|
|
|
|
|