fix: 流程接口入参调整

main
wx-jincw 3 weeks ago
parent 22c21e4d3c
commit ffe793facc

@ -11,6 +11,7 @@ export function listProcess(query) {
// 查询流程列表
export function getProcessForm(query) {
console.log('getProcessForm', query);
return request({
url: '/workflow/process/getProcessForm',
method: 'get',

@ -134,7 +134,7 @@ export default {
/** 查询流程定义列表 */
getList() {
this.loading = true;
listClaimProcess(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
listClaimProcess(this.addDateRange(this.queryParams, this.dateRange).params).then(response => {
this.claimList = response.list;
this.total = response.total;
this.loading = false;

@ -338,7 +338,7 @@ export default {
/** 查询用户列表 */
getList() {
this.userLoading = true;
adminList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
adminList(this.addDateRange(this.queryParams, this.dateRange).params).then(response => {
this.userList = response.list;
this.total = response.total;
this.toggleSelection(this.userMultipleSelection);

@ -201,7 +201,7 @@ export default {
/** 查询流程定义列表 */
getList() {
this.loading = true;
listOwnProcess(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
listOwnProcess(this.addDateRange(this.queryParams, this.dateRange).params).then(response => {
this.ownProcessList = response.list;
this.total = response.total;
this.loading = false;

@ -132,7 +132,7 @@ export default {
/** 查询流程定义列表 */
getList() {
this.loading = true;
listTodoProcess(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
listTodoProcess(this.addDateRange(this.queryParams, this.dateRange).params).then(response => {
this.todoList = response.list;
this.total = response.total;
this.loading = false;

Loading…
Cancel
Save