VUE3【流程管理-我的流程】elment-plus改造
This commit is contained in:
parent
173c375bce
commit
d0bc7f0814
@ -341,6 +341,18 @@ const remainingRouter: AppRouteRecordRaw[] = [
|
|||||||
title: '代办任务',
|
title: '代办任务',
|
||||||
activeMenu: 'bpm/task/todo/index'
|
activeMenu: 'bpm/task/todo/index'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/bpm/processInstance',
|
||||||
|
component: () => import('@/views/bpm/processInstance/index.vue'),
|
||||||
|
name: 'processInstance',
|
||||||
|
meta: {
|
||||||
|
noCache: true,
|
||||||
|
hidden: true,
|
||||||
|
canTo: true,
|
||||||
|
title: '流程办理',
|
||||||
|
activeMenu: 'bpm/processInstance/index'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,64 +1,215 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 列表 -->
|
<!-- 搜索工作栏 -->
|
||||||
<XTable @register="registerTable">
|
<el-form
|
||||||
<template #toolbar_buttons>
|
class="-mb-15px"
|
||||||
<!-- 操作:新增 -->
|
:model="queryParams"
|
||||||
<XButton
|
ref="queryFormRef"
|
||||||
type="primary"
|
:inline="true"
|
||||||
preIcon="ep:zoom-in"
|
label-width="68px"
|
||||||
title="发起流程"
|
>
|
||||||
v-hasPermi="['bpm:process-instance:query']"
|
<el-form-item label="流程名称" prop="name">
|
||||||
@click="handleCreate"
|
<el-input
|
||||||
|
v-model="queryParams.name"
|
||||||
|
placeholder="请输入流程名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
/>
|
/>
|
||||||
</template>
|
</el-form-item>
|
||||||
<!-- 流程分类 -->
|
<el-form-item label="所属流程" prop="processDefinitionId">
|
||||||
<template #category_default="{ row }">
|
<el-input
|
||||||
<DictTag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="Number(row?.category)" />
|
v-model="queryParams.processDefinitionId"
|
||||||
</template>
|
placeholder="请输入流程定义的编号"
|
||||||
<!-- 当前审批任务 -->
|
clearable
|
||||||
<template #tasks_default="{ row }">
|
@keyup.enter="handleQuery"
|
||||||
<el-button v-for="task in row.tasks" :key="task.id" link>
|
class="!w-240px"
|
||||||
<span>{{ task.name }}</span>
|
|
||||||
</el-button>
|
|
||||||
</template>
|
|
||||||
<!-- 操作 -->
|
|
||||||
<template #actionbtns_default="{ row }">
|
|
||||||
<XTextButton
|
|
||||||
preIcon="ep:view"
|
|
||||||
:title="t('action.detail')"
|
|
||||||
v-hasPermi="['bpm:process-instance:cancel']"
|
|
||||||
@click="handleDetail(row)"
|
|
||||||
/>
|
/>
|
||||||
<XTextButton
|
</el-form-item>
|
||||||
preIcon="ep:delete"
|
<el-form-item label="流程分类" prop="category">
|
||||||
title="取消"
|
<el-select v-model="queryParams.category" placeholder="请选择" clearable>
|
||||||
v-if="row.result === 1"
|
<el-option
|
||||||
v-hasPermi="['bpm:process-instance:query']"
|
v-for="dict in getIntDictOptions(DICT_TYPE.BPM_MODEL_CATEGORY)"
|
||||||
@click="handleCancel(row)"
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-select v-model="queryParams.status" placeholder="请选择" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="结果" prop="result">
|
||||||
|
<el-select v-model="queryParams.result" placeholder="请选择" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getIntDictOptions(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="提交时间" prop="createTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.createTime"
|
||||||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
type="daterange"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期"
|
||||||
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||||
|
class="!w-240px"
|
||||||
/>
|
/>
|
||||||
</template>
|
</el-form-item>
|
||||||
</XTable>
|
<el-form-item>
|
||||||
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||||
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<el-col>
|
||||||
|
<el-row>
|
||||||
|
<el-col>
|
||||||
|
<!-- 操作:新增 -->
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
v-hasPermi="['bpm:process-instance:query']"
|
||||||
|
@click="handleCreate"
|
||||||
|
>发起流程</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<ContentWrap>
|
||||||
|
<el-table v-loading="loading" :data="list">
|
||||||
|
<el-table-column label="流程编号" align="center" prop="id" width="300px" />
|
||||||
|
<el-table-column label="流程名称" align="center" prop="name" />
|
||||||
|
<el-table-column label="流程分类" align="center" prop="category">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.BPM_MODEL_CATEGORY" :value="scope.row.category" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="当前审批任务" align="center" prop="tasks">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button type="primary" v-for="task in scope.row.tasks" :key="task.id" link>
|
||||||
|
<span>{{ task.name }}</span>
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="状态" prop="status">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS" :value="scope.row.status" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="结果" prop="result">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT" :value="scope.row.result" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="提交时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="结束时间"
|
||||||
|
align="center"
|
||||||
|
prop="endTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column label="操作" align="center">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
v-hasPermi="['bpm:process-instance:cancel']"
|
||||||
|
@click="handleDetail(scope.row)"
|
||||||
|
>详情</el-button
|
||||||
|
>
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
v-if="scope.row.result === 1"
|
||||||
|
v-hasPermi="['bpm:process-instance:query']"
|
||||||
|
@click="handleCancel(scope.row)"
|
||||||
|
>取消</el-button
|
||||||
|
>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
</ContentWrap>
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
// 全局相关的 import
|
// 全局相关的 import
|
||||||
import { ElMessageBox } from 'element-plus'
|
import { ElMessageBox } from 'element-plus'
|
||||||
import { DICT_TYPE } from '@/utils/dict'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
|
|
||||||
// 业务相关的 import
|
// 业务相关的 import
|
||||||
import * as ProcessInstanceApi from '@/api/bpm/processInstance'
|
import * as ProcessInstanceApi from '@/api/bpm/processInstance'
|
||||||
import { allSchemas } from './process.data'
|
// import { allSchemas } from './process.data'
|
||||||
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
const loading = ref(true) // 列表的加载中
|
||||||
|
const total = ref(0) // 列表的总页数
|
||||||
|
const list = ref([]) // 列表的数据
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: '',
|
||||||
|
processDefinitionId: undefined,
|
||||||
|
category: undefined,
|
||||||
|
status: undefined,
|
||||||
|
result: undefined,
|
||||||
|
createTime: []
|
||||||
|
})
|
||||||
const router = useRouter() // 路由
|
const router = useRouter() // 路由
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
const { t } = useI18n() // 国际化
|
const { t } = useI18n() // 国际化
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
/** 查询列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true
|
||||||
|
try {
|
||||||
|
const data = await ProcessInstanceApi.getMyProcessInstancePage(queryParams)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value.resetFields()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
// ========== 列表相关 ==========
|
// ========== 列表相关 ==========
|
||||||
const [registerTable, { reload }] = useXTable({
|
// const [reload] = useXTable({
|
||||||
allSchemas: allSchemas,
|
// allSchemas: allSchemas,
|
||||||
getListApi: ProcessInstanceApi.getMyProcessInstancePage
|
// getListApi: ProcessInstanceApi.getMyProcessInstancePage
|
||||||
})
|
// })
|
||||||
|
|
||||||
/** 发起流程操作 **/
|
/** 发起流程操作 **/
|
||||||
const handleCreate = () => {
|
const handleCreate = () => {
|
||||||
@ -87,7 +238,11 @@ const handleCancel = (row) => {
|
|||||||
}).then(async ({ value }) => {
|
}).then(async ({ value }) => {
|
||||||
await ProcessInstanceApi.cancelProcessInstance(row.id, value)
|
await ProcessInstanceApi.cancelProcessInstance(row.id, value)
|
||||||
message.success('取消成功')
|
message.success('取消成功')
|
||||||
reload()
|
// reload()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(() => {
|
||||||
|
getList()
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user