|
|
|
|
@ -208,6 +208,7 @@ import { detailProcess } from '@/api/workflow/process'
|
|
|
|
|
import Parser from '@/utils/generator/parser'
|
|
|
|
|
import { complete, delegate, transfer, rejectTask, returnList, returnTask } from '@/api/workflow/task'
|
|
|
|
|
import { selectUser, deptTreeSelect } from '@/api/system/user'
|
|
|
|
|
import { adminList } from "@/api/systemadmin";
|
|
|
|
|
import ProcessViewer from '@/components/ProcessViewer'
|
|
|
|
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
|
|
|
|
import Treeselect from '@riophae/vue-treeselect'
|
|
|
|
|
@ -330,14 +331,14 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 查询部门下拉树结构 */
|
|
|
|
|
getTreeSelect() {
|
|
|
|
|
deptTreeSelect().then(response => {
|
|
|
|
|
this.deptOptions = response.data;
|
|
|
|
|
});
|
|
|
|
|
// deptTreeSelect().then(response => {
|
|
|
|
|
// this.deptOptions = response.data;
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
/** 查询用户列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.userLoading = true;
|
|
|
|
|
selectUser(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
|
|
|
adminList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
|
|
|
this.userList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.toggleSelection(this.userMultipleSelection);
|
|
|
|
|
|