fix -- 修复"流程管理"模块权限标识缺失或错误问题

This commit is contained in:
konbai
2022-03-03 01:24:36 +08:00
parent 0da7982b2c
commit b0ead682dd
5 changed files with 64 additions and 26 deletions

View File

@@ -24,7 +24,7 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['flowable:form:add']"
v-hasPermi="['workflow:form:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
@@ -35,7 +35,7 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['flowable:form:edit']"
v-hasPermi="['workflow:form:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
@@ -46,7 +46,7 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['flowable:form:remove']"
v-hasPermi="['workflow:form:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
@@ -56,7 +56,7 @@
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['flowable:form:export']"
v-hasPermi="['workflow:form:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@@ -80,14 +80,14 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['flowable:form:edit']"
v-hasPermi="['workflow:form:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['flowable:form:remove']"
v-hasPermi="['workflow:form:remove']"
>删除</el-button>
</template>
</el-table-column>