Explorar el Código

Merge branch 'master' of http://39.164.159.226:3000/hnsh-smart-steward/smart-steward-admin

闪电 hace 3 semanas
padre
commit
1719682e47

+ 1 - 1
apps/web-ele/src/api/workflow/instance/index.ts

@@ -81,7 +81,7 @@ export function workflowInstanceActive(instanceId: ID, active: boolean) {
81 81
  * @returns PageResult<Flow>
82 82
  */
83 83
 export function pageByCurrent(params?: PageQuery) {
84
-  return requestClient.get<PageResult<TaskInfo>>('/workOrder/order/list',
84
+  return requestClient.get<PageResult<TaskInfo>>('/workOrder/order/myList',
85 85
     { params },
86 86
   );
87 87
 }

+ 1 - 1
apps/web-ele/src/views/system/menu/index.vue

@@ -39,7 +39,7 @@ const formOptions: VbenFormProps = {
39 39
 const gridOptions: VxeGridProps = {
40 40
   columns,
41 41
   size: 'medium',
42
-  height: 'auto',
42
+  height: '750px',
43 43
   keepSource: true,
44 44
   proxyConfig: {
45 45
     ajax: {

+ 2 - 2
apps/web-ele/src/views/workflow/components/actions/flow-actions.vue

@@ -401,11 +401,11 @@ async function handleBack() {
401 401
 // 延时审批
402 402
 function handleApproveDelay() {
403 403
   // 重置表单数据
404
+  console.log('props', props);
404 405
   approveDelayFormData.approveRemark = '';
405 406
   approveDelayFormData.approveStatus = '1';
406
-  approveDelayFormData.delayId = props.task!.taskId;
407
+  approveDelayFormData.delayId = Number(props.task!.id);
407 408
   approveDelayFormData.newDeadline = '';
408
-
409 409
   // 打开抽屉
410 410
   approveDelayDrawerVisible.value = true;
411 411
 }