|
@@ -75,7 +75,7 @@
|
|
|
<div v-if="scope.row.featureText && ['4','8'].indexOf(scope.row.statutesId) ==-1 ">
|
|
|
<div v-if="scope.row.featureGen == 0">
|
|
|
<span :class="getFeatureDel(scope.row)?'del':''" v-html="scope.row.featureText"></span>
|
|
|
- <span v-if="['2','3','4','8'].indexOf(scope.row.statutesId) !=-1">
|
|
|
+ <span v-if="['4','8'].indexOf(scope.row.statutesId) ==-1 && scope.row.featureText">
|
|
|
<el-popover
|
|
|
popper-class="reasonAndEvidence"
|
|
|
placement="bottom"
|
|
@@ -115,6 +115,20 @@
|
|
|
<template v-if="item.value == 'feature1'">
|
|
|
<div>
|
|
|
<span v-html=" getFeatureCommon(scope.row,1) "></span>
|
|
|
+ <span v-if="['4','8'].indexOf(scope.row.statutesId) ==-1 && getFeatureCommon(scope.row,1)">
|
|
|
+ <el-popover
|
|
|
+ popper-class="reasonAndEvidence"
|
|
|
+ placement="bottom"
|
|
|
+ width="100"
|
|
|
+ trigger="click"
|
|
|
+ >
|
|
|
+ <div class="menuList">
|
|
|
+ <div class="menuListLi" v-if="!getFeatureDel(scope.row)" @click="delFeature(scope.row)">删除</div>
|
|
|
+ <div class="menuListLi" @click="checkHistory(scope.row,2)">查看</div>
|
|
|
+ </div>
|
|
|
+ <i slot="reference" class="el-icon-caret-bottom"></i>
|
|
|
+ </el-popover>
|
|
|
+ </span>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!-- 第一次答辩意见 -->
|
|
@@ -154,8 +168,22 @@
|
|
|
</template>
|
|
|
<!-- 第二次修改后权要特征 -->
|
|
|
<template v-if="item.value == 'feature2'">
|
|
|
- <div v-html=" getFeatureCommon(scope.row,2) ">
|
|
|
-
|
|
|
+ <div>
|
|
|
+ <span v-html=" getFeatureCommon(scope.row,2) "></span>
|
|
|
+ <span v-if="['4','8'].indexOf(scope.row.statutesId) ==-1 && getFeatureCommon(scope.row,2)">
|
|
|
+ <el-popover
|
|
|
+ popper-class="reasonAndEvidence"
|
|
|
+ placement="bottom"
|
|
|
+ width="100"
|
|
|
+ trigger="click"
|
|
|
+ >
|
|
|
+ <div class="menuList">
|
|
|
+ <div class="menuListLi" v-if="!getFeatureDel(scope.row)" @click="delFeature(scope.row)">删除</div>
|
|
|
+ <div class="menuListLi" @click="checkHistory(scope.row,2)">查看</div>
|
|
|
+ </div>
|
|
|
+ <i slot="reference" class="el-icon-caret-bottom"></i>
|
|
|
+ </el-popover>
|
|
|
+ </span>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!-- 第二次答辩意见 -->
|