| xqd
@@ -129,12 +129,21 @@
|
|
|
v-if="roleId === 999 ? false : true"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="服务合同模板" >
|
|
|
- <template slot-scope="scope">
|
|
|
+ <el-table-column align="center" label="服务合同模板" v-if="roleId === 0 || roleId === 1 ? true : false">
|
|
|
+ <template slot-scope="scope" >
|
|
|
<el-tag type="primary" style="cursor: pointer; " @click="download(scope.row.templateServiceContractList)">下载
|
|
|
</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" label="服务合同模板" v-if="roleId === 0 || roleId === 1 ? false : true">
|
|
|
+ <template slot-scope="scope" >
|
|
|
+ <el-tag type="primary" style="cursor: pointer; " v-if="scope.row.status === 1 ? true : false" @click="download(scope.row.templateServiceContractList)">下载
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
label="服务费率"
|
| xqd
@@ -147,6 +156,7 @@
|
|
|
{{ scope.row.serviceRate }}%
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
label="利率"
|
| xqd
@@ -160,6 +170,7 @@
|
|
|
{{ scope.row.interest }}%
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
label="服务费率"
|
| xqd
@@ -167,6 +178,7 @@
|
|
|
>
|
|
|
<template slot-scope="scope"> {{ scope.row.serviceRate }}% </template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
label="利率"
|
| xqd
@@ -176,6 +188,7 @@
|
|
|
<template slot-scope="scope"> {{ scope.row.interest }}% </template>
|
|
|
</el-table-column>
|
|
|
|
|
|
+
|
|
|
<el-table-column align="center" label="审核状态" prop="statusText">
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="时间" prop="createdAt" width="200">
|