1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { BpmProcessInstanceApi } from '#/api/bpm/processInstance';
 
import { h } from 'vue';
 
import { Page, prompt } from '@vben/common-ui';
import {
  BpmModelFormType,
  BpmProcessInstanceStatus,
  DICT_TYPE,
} from '@vben/constants';
 
import { Button, message, Textarea, Tooltip } from 'ant-design-vue';
 
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { getProcessDefinition } from '#/api/bpm/definition';
import {
  cancelProcessInstanceByStartUser,
  getProcessInstanceMyPage,
} from '#/api/bpm/processInstance';
import { DictTag } from '#/components/dict-tag';
import { $t } from '#/locales';
import { router } from '#/router';
 
import { useGridColumns, useGridFormSchema } from './data';
 
defineOptions({ name: 'BpmProcessInstanceMy' });
 
/** 刷新表格 */
function handleRefresh() {
  gridApi.query();
}
 
/** 查看流程实例 */
function handleDetail(row: BpmProcessInstanceApi.ProcessInstance) {
  router.push({
    name: 'BpmProcessInstanceDetail',
    query: { id: row.id },
  });
}
 
/** 重新发起流程 */
async function handleCreate(row?: BpmProcessInstanceApi.ProcessInstance) {
  if (row?.id) {
    const processDefinitionDetail = await getProcessDefinition(
      row.processDefinitionId,
    );
    if (processDefinitionDetail?.formType === BpmModelFormType.CUSTOM) {
      if (!processDefinitionDetail.formCustomCreatePath) {
        message.error('未配置业务表单的提交路由,无法重新发起');
        return;
      }
      await router.push({
        path: processDefinitionDetail.formCustomCreatePath,
        query: {
          id: row.businessKey,
        },
      });
      return;
    } else if (processDefinitionDetail?.formType === BpmModelFormType.NORMAL) {
      await router.push({
        name: 'BpmProcessInstanceCreate',
        query: { processInstanceId: row.id },
      });
      return;
    }
  }
  await router.push({
    name: 'BpmProcessInstanceCreate',
    query: row?.id ? { processInstanceId: row.id } : {},
  });
}
 
/** 取消流程实例 */
function handleCancel(row: BpmProcessInstanceApi.ProcessInstance) {
  prompt({
    component: () => {
      return h(Textarea, {
        placeholder: '请输入取消原因',
        allowClear: true,
        rows: 2,
      });
    },
    content: '请输入取消原因',
    title: '取消流程',
    modelPropName: 'value',
  }).then(async (reason) => {
    if (reason) {
      await cancelProcessInstanceByStartUser(row.id, reason);
      message.success('取消成功');
      handleRefresh();
    }
  });
}
 
const [Grid, gridApi] = useVbenVxeGrid({
  formOptions: {
    schema: useGridFormSchema(),
  },
  gridOptions: {
    columns: useGridColumns(),
    height: 'auto',
    keepSource: true,
    proxyConfig: {
      ajax: {
        query: async ({ page }, formValues) => {
          return await getProcessInstanceMyPage({
            pageNo: page.currentPage,
            pageSize: page.pageSize,
            ...formValues,
          });
        },
      },
    },
    rowConfig: {
      keyField: 'id',
      isHover: true,
    },
    toolbarConfig: {
      refresh: true,
      search: true,
    },
  } as VxeTableGridOptions<BpmProcessInstanceApi.ProcessInstance>,
});
</script>
 
<template>
  <Page auto-content-height><Grid table-title="流程状态">
      <template #slot-summary="{ row }">
        <Tooltip
          v-if="row.summary && row.summary.length > 0"
          placement="topLeft"
        >
          <template #title>
            <div v-for="(item, index) in row.summary" :key="index">
              {{ item.key }} : {{ item.value }}
            </div>
          </template>
          <div class="truncate max-w-[200px] cursor-pointer">
            <span
              v-for="(item, index) in row.summary"
              :key="index"
            >
              <span class="text-gray-500">
                {{ item.key }} : {{ item.value }}
              </span>
              <span v-if="index < row.summary.length - 1" class="mx-1 text-gray-300">|</span>
            </span>
          </div>
        </Tooltip>
        <div v-else>-</div>
      </template>
      <template #slot-status="{ row }">
        <template
          v-if="
            row.status === BpmProcessInstanceStatus.RUNNING &&
            row.tasks?.length! > 0
          "
        >
          <!-- 单人审批 -->
          <template v-if="row.tasks!.length === 1">
            <span>
              <Button type="link" @click="handleDetail(row)">
                {{ row.tasks![0]!.assigneeUser?.nickname }}
              </Button>
              ({{ row.tasks![0]!.name }}) 审批中
            </span>
          </template>
          <!-- 多人审批 -->
          <template v-else>
            <span>
              <Button type="link" @click="handleDetail(row)">
                {{ row.tasks![0]!.assigneeUser?.nickname }}
              </Button>
              等 {{ row.tasks!.length }} 人 ({{ row.tasks![0]!.name }})审批中
            </span>
          </template>
        </template>
        <!-- 非审批中状态 -->
        <template v-else>
          <DictTag
            :type="DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS"
            :value="row.status"
          />
        </template>
      </template>
      <template #actions="{ row }">
        <TableAction
          :actions="[
            {
              label: $t('common.detail'),
              type: 'link',
              icon: ACTION_ICON.VIEW,
              auth: ['bpm:process-instance:query'],
              onClick: handleDetail.bind(null, row),
            },
            {
              label: $t('ui.actionTitle.cancel'),
              type: 'link',
              danger: true,
              icon: ACTION_ICON.DELETE,
              ifShow: row.status === BpmProcessInstanceStatus.RUNNING,
              auth: ['bpm:process-instance:cancel'],
              onClick: handleCancel.bind(null, row),
            },
            {
              label: '重新发起',
              type: 'link',
              icon: ACTION_ICON.ADD,
              ifShow: row.status !== BpmProcessInstanceStatus.RUNNING,
              auth: ['bpm:process-instance:create'],
              onClick: handleCreate.bind(null, row),
            },
          ]"
        />
      </template>
    </Grid>
  </Page>
</template>