Commit ff599571 authored by danfuman's avatar danfuman

修改

parent 80bfbece
...@@ -42,7 +42,14 @@ ...@@ -42,7 +42,14 @@
<el-table-column label="序号" width="60" align="left" fixed> <el-table-column label="序号" width="60" align="left" fixed>
<template slot-scope="scope">{{ queryParams.pageNum * queryParams.pageSize - queryParams.pageSize + scope.$index + 1 }}</template> <template slot-scope="scope">{{ queryParams.pageNum * queryParams.pageSize - queryParams.pageSize + scope.$index + 1 }}</template>
</el-table-column> </el-table-column>
<el-table-column label="监控对象" align="left" prop="companyName"></el-table-column> <el-table-column label="监控对象" align="left" prop="companyName">
<template slot-scope="scope">
<div v-if="scope.row.companyId">
<router-link :to="`/monitoring/MonitoringReportDetails/${scope.row.companyId}`" tag="a" class="a-link companyName">{{scope.row.companyName}}</router-link>
</div>
<div v-else>{{scope.row.companyName}}</div>
</template>
</el-table-column>
<el-table-column label="风险动态" align="left"> <el-table-column label="风险动态" align="left">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="color1 span">高风险 {{scope.row.highRiskCount}}</span> <span class="color1 span">高风险 {{scope.row.highRiskCount}}</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment