解决非admin用户的一些操作权限问题

This commit is contained in:
luckyxz
2022-06-28 14:49:24 +08:00
parent a4cec682a7
commit 6db67e0195
8 changed files with 49 additions and 6 deletions

View File

@@ -107,7 +107,7 @@
<script>
import { listOwnProcess, stopProcess, delProcess } from '@/api/workflow/process';
import { listCategory } from '@/api/workflow/category';
import { listAllCategory } from '@/api/workflow/category';
export default {
name: "Own",
components: {
@@ -165,7 +165,7 @@ export default {
methods: {
/** 查询流程分类列表 */
getCategoryList() {
listCategory().then(response => this.categoryOptions = response.rows)
listAllCategory().then(response => this.categoryOptions = response.rows)
},
/** 查询流程定义列表 */
getList() {