Commit 593e50a6 authored by lizhichao's avatar lizhichao

去掉按钮权限验证

parent 35021ef1
......@@ -65,7 +65,6 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:manager:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
......@@ -76,7 +75,6 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:manager:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
......@@ -87,7 +85,6 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:manager:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
......@@ -98,7 +95,6 @@
size="mini"
:loading="exportLoading"
@click="handleExport"
v-hasPermi="['system:manager:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
......@@ -121,14 +117,12 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:manager:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:manager:remove']"
>删除</el-button>
</template>
</el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment