fix -- 调整办公管理模块接口

This commit is contained in:
konbai
2022-04-04 17:59:06 +08:00
parent 0858f853df
commit b51c4d91fd
16 changed files with 189 additions and 322 deletions

View File

@@ -79,12 +79,8 @@
</template>
<script>
import { listTodoProcess } from '@/api/workflow/process';
import {
todoList,
complete,
returnList,
returnTask,
rejectTask,
delDeployment,
exportDeployment
} from "@/api/workflow/todo";
@@ -132,7 +128,7 @@ export default {
/** 查询流程定义列表 */
getList() {
this.loading = true;
todoList(this.queryParams).then(response => {
listTodoProcess(this.queryParams).then(response => {
this.todoList = response.rows;
this.total = response.total;
this.loading = false;