| | |
| | | import vkBeautify from 'vkbeautify' |
| | | import hljs from 'highlight.js' |
| | | import 'highlight.js/styles/atelier-savanna-dark.css' |
| | | import {flowableGetAllDept} from "@/api/system/dept"; |
| | | export default { |
| | | name: "Model", |
| | | components: { |
| | |
| | | /** 指定流程办理人员列表 */ |
| | | getDataList() { |
| | | userList().then(res => { |
| | | console.log(this.modelerStore, "dhg") |
| | | this.modelerStore.userList = res.data; |
| | | }) |
| | | roleList().then(res => { |
| | | this.modelerStore.roleList = res.data; |
| | | }) |
| | | flowableGetAllDept().then(res => { |
| | | this.modelerStore.deptList = res.data; |
| | | }) |
| | | expList().then(res => { |
| | | this.modelerStore.expList = res.data; |
| | | this.dataExit = true; |