按钮权限
This commit is contained in:
parent
d35aae72e6
commit
0d9f0a7b7f
|
|
@ -36,7 +36,7 @@
|
|||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-col :span="1.5" v-hasPermi="['direct:info:add']">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">直转申请</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
|
|
@ -83,7 +83,8 @@
|
|||
<template slot-scope="scope">
|
||||
<el-button type="text" size="mini" icon="el-icon-search" @click="handleEdit(scope.row, 1)">查看</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.status == '0'"
|
||||
v-show="scope.row.status == '0'"
|
||||
v-hasPermi="['direct:info:edit']"
|
||||
type="text"
|
||||
size="mini"
|
||||
icon="el-icon-edit"
|
||||
|
|
@ -92,7 +93,8 @@
|
|||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.status == '0'"
|
||||
v-show="scope.row.status == '0'"
|
||||
v-hasPermi="['direct:info:delete']"
|
||||
type="text"
|
||||
size="mini"
|
||||
icon="el-icon-delete"
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-col :span="1.5" v-hasPermi="['business:info:add']">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">领料申请</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
|
|
@ -85,7 +85,8 @@
|
|||
<template slot-scope="scope">
|
||||
<el-button type="text" size="mini" icon="el-icon-search" @click="handleEdit(scope.row, 1)">查看</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.taskStatus == '0' || scope.row.taskStatus == '5'"
|
||||
v-show="scope.row.taskStatus == '0' || scope.row.taskStatus == '5'"
|
||||
v-hasPermi="['business:info:edit']"
|
||||
type="text"
|
||||
size="mini"
|
||||
icon="el-icon-edit"
|
||||
|
|
@ -103,7 +104,8 @@
|
|||
业务联系单
|
||||
</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.taskStatus == '0' || scope.row.taskStatus == '5'"
|
||||
v-show="scope.row.taskStatus == '0' || scope.row.taskStatus == '5'"
|
||||
v-hasPermi="['business:info:delete']"
|
||||
type="text"
|
||||
size="mini"
|
||||
icon="el-icon-delete"
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">
|
||||
减免申请--
|
||||
减免申请
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
|
|
|
|||
Loading…
Reference in New Issue