Browse Source

修改数据采集 审核按钮 代码处,不加 template 导致的导致无法弹出 el-popconfirm 组件问题; 加上 template 解决

sakura 1 year ago
parent
commit
cca2f6af97
1 changed files with 8 additions and 4 deletions
  1. 8 4
      src/views/GATHER/index.vue

+ 8 - 4
src/views/GATHER/index.vue

@@ -130,11 +130,15 @@
               <el-button style="margin: 0 2px" size="mini" slot="reference" type="text"  v-hasPermi="['gather:GATHER:report']">上报</el-button>
             </el-popconfirm>
           </template>
-          <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
-            <el-button style="margin: 0 2px" v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1" size="mini" v-hasPermi="['gather:GATHER:approve']" type="text" slot="reference">审核</el-button>
-          </el-popconfirm>
-          <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
+<!--          todo不加 template 会造成浏览器渲染问题 导致无法弹出 el-popconfirm 组件-->
+          <template v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1">
+            <el-popconfirm title="确定提交吗?" @confirm="handleApprove(scope.row)">
+              <el-button style="margin: 0 2px"  size="mini" v-hasPermi="['gather:GATHER:approve']" type="text" slot="reference">审核</el-button>
+            </el-popconfirm>
+          </template>
 
+
+          <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1" size="mini" type="text" @click="handleDetail(scope.row, 0)">查看</el-button>
           <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1 && scope.row.reportStatus == 0 && scope.row.approveStatus == 0" size="mini" type="text" @click="handleDetail(scope.row, 1)">修改</el-button>
         </template>
       </el-table-column>