浏览代码

审批按钮权限

hejizheng 1 年之前
父节点
当前提交
e4b4d6beee
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/views/task/index.vue

+ 4 - 4
src/views/task/index.vue

@@ -54,15 +54,15 @@
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template slot-scope="scope">
           <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleExamine(scope.row)"
-            v-hasPermi="['business:INSTACTIONTASK:task']">详情</el-button>
+            v-hasPermi="['business:INSTACTIONTASK:query']">详情</el-button>
 
           <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handlePass(scope.row)"
-            v-hasPermi="['business:INSTACTIONTASK:task']">通过审核</el-button>
+            v-hasPermi="['task:instaction:approve']">通过审核</el-button>
           <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleReject(scope.row)"
-            v-hasPermi="['business:INSTACTIONTASK:task']">驳回</el-button>
+            v-hasPermi="['task:instaction:approve']">驳回</el-button>
 
           <el-button size="mini" type="text" @click="handleDetail(scope.row)"
-            v-hasPermi="['business:INSTACTIONTASK:detail']" v-if="scope.row.status != '0'">详情</el-button>
+            v-hasPermi="['business:INSTACTIONTASK:query']" v-if="scope.row.status != '0'">详情</el-button>
         </template>
       </el-table-column>
     </el-table>