|
@@ -71,6 +71,11 @@
|
|
<span v-else-if="scope.row.type == 1">月报表数据</span>
|
|
<span v-else-if="scope.row.type == 1">月报表数据</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="异常数据名称" align="center" prop="gatherFeeName">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ {{ scope.row.gatherFeeName }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="异常详细数据值" align="center" prop="errValue">
|
|
<el-table-column label="异常详细数据值" align="center" prop="errValue">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.errValue }}
|
|
{{ scope.row.errValue }}
|
|
@@ -113,7 +118,8 @@
|
|
align="center"
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
class-name="small-padding fixed-width"
|
|
>
|
|
>
|
|
- <template slot-scope="scope">
|
|
|
|
|
|
+ <!-- 状态是“已解除”时不显示 -->
|
|
|
|
+ <template slot-scope="scope" v-if="scope.row.status != '1'">
|
|
<el-popconfirm title="确定处理吗?" @confirm="handleDeal(scope.row)">
|
|
<el-popconfirm title="确定处理吗?" @confirm="handleDeal(scope.row)">
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|