Browse Source

Merge remote-tracking branch 'origin/master'

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

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

@@ -132,24 +132,24 @@
             @click="handleDownload(scope.row)"
             >下载导入模板</el-button
           > -->
-          <template v-if="scope.row.collStatus == 0">
-            <el-button style="margin: 0 2px" size="mini" type="text" v-has-permi="['gather:GATHER:add']"  @click="handleUpdate(scope.row)">录入</el-button>
+
+          <template v-if="scope.row.collStatus == 0 && checkPermi(['gather:GATHER:add'])">
+            <el-button style="margin: 0 2px" size="mini" type="text" @click="handleUpdate(scope.row)">录入</el-button>
           </template>
-          <template v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1">
+          <template v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1 && checkPermi(['gather:GATHER:report'])">
             <el-popconfirm title="确定上报吗?" @confirm="handleReport(scope.row)">
-              <el-button style="margin: 0 2px" size="mini" slot="reference" type="text"  v-hasPermi="['gather:GATHER:report']">上报</el-button>
+              <el-button style="margin: 0 2px" size="mini" slot="reference" type="text">上报</el-button>
             </el-popconfirm>
           </template>
 <!--          todo不加 template 会造成浏览器渲染问题 导致无法弹出 el-popconfirm 组件-->
-          <template v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1">
+          <template v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1 && checkPermi(['gather:GATHER:approve'])">
             <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-button style="margin: 0 2px"  size="mini" 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>
+          <el-button style="margin: 0 2px" v-if="scope.row.collStatus == 1 && scope.row.reportStatus == 0 && scope.row.approveStatus == 0 && checkPermi(['gather:GATHER:edit'])" size="mini" type="text" @click="handleDetail(scope.row, 1)">修改</el-button>
         </template>
       </el-table-column>
     </el-table>