2024-10-15 08:39:11 +08:00
|
|
|
|
<template>
|
|
|
|
|
<ContentWrap>
|
|
|
|
|
<div class="flex justify-between pl-20px items-center">
|
2024-10-14 15:17:05 +08:00
|
|
|
|
<h3 class="font-extrabold">流程模型</h3>
|
2024-10-15 08:39:11 +08:00
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
|
<el-form
|
2024-10-15 16:29:45 +08:00
|
|
|
|
v-if="!isCategorySorting"
|
2024-10-15 08:39:11 +08:00
|
|
|
|
class="-mb-15px flex"
|
|
|
|
|
:model="queryParams"
|
|
|
|
|
ref="queryFormRef"
|
|
|
|
|
:inline="true"
|
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item align="right" prop="key" class="ml-auto">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.key"
|
|
|
|
|
placeholder="搜索流程"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
class="!w-240px"
|
|
|
|
|
>
|
|
|
|
|
<template #prefix>
|
|
|
|
|
<Icon icon="ep:search" class="mx-10px" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" @click="openForm('create')" v-hasPermi="['bpm:model:create']">
|
2024-10-14 15:17:05 +08:00
|
|
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新建模型
|
2024-10-15 08:39:11 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
2024-10-15 16:29:45 +08:00
|
|
|
|
<el-dropdown @command="(command) => handleCommand(command)" placement="bottom-end">
|
2024-10-15 08:39:11 +08:00
|
|
|
|
<el-button class="w-30px" plain>
|
|
|
|
|
<Icon icon="ep:setting" />
|
|
|
|
|
</el-button>
|
|
|
|
|
<template #dropdown>
|
|
|
|
|
<el-dropdown-menu>
|
2024-10-15 16:29:45 +08:00
|
|
|
|
<el-dropdown-item command="handleAddCategory">
|
2024-10-15 08:39:11 +08:00
|
|
|
|
<Icon icon="ep:circle-plus" :size="13" class="mr-5px" />
|
2024-10-14 15:17:05 +08:00
|
|
|
|
新建分类
|
2024-10-15 08:39:11 +08:00
|
|
|
|
</el-dropdown-item>
|
2024-10-15 16:29:45 +08:00
|
|
|
|
<el-dropdown-item command="handleSort">
|
2024-10-15 08:39:11 +08:00
|
|
|
|
<Icon icon="fa:sort-amount-desc" :size="13" class="mr-5px" />
|
2024-10-14 15:17:05 +08:00
|
|
|
|
分类排序
|
2024-10-15 08:39:11 +08:00
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
2024-10-15 16:29:45 +08:00
|
|
|
|
<template v-else>
|
|
|
|
|
<el-button type="primary" @click="cancelSort"> 取 消 </el-button>
|
|
|
|
|
<el-button type="primary" @click="saveSort"> 保存排序 </el-button>
|
|
|
|
|
</template>
|
2024-10-15 08:39:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-divider />
|
|
|
|
|
|
|
|
|
|
<!-- 分类卡片组 -->
|
|
|
|
|
<div class="px-15px">
|
|
|
|
|
<ContentWrap
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:body-style="{ padding: 0 }"
|
|
|
|
|
v-for="(list, title) in categoryGroup"
|
|
|
|
|
:key="title"
|
|
|
|
|
>
|
2024-10-15 15:17:40 +08:00
|
|
|
|
<CategoryDraggableModel
|
|
|
|
|
ref="draggableModelRef"
|
2024-10-15 16:29:45 +08:00
|
|
|
|
:isCategorySorting="isCategorySorting"
|
2024-10-15 15:17:40 +08:00
|
|
|
|
:dataList="list"
|
|
|
|
|
:title="title"
|
|
|
|
|
@success="getList"
|
|
|
|
|
/>
|
2024-10-15 08:39:11 +08:00
|
|
|
|
</ContentWrap>
|
|
|
|
|
</div>
|
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改流程 -->
|
|
|
|
|
<ModelForm ref="formRef" @success="getList" />
|
|
|
|
|
|
|
|
|
|
<!-- 弹窗:表单详情 -->
|
|
|
|
|
<Dialog title="表单详情" v-model="formDetailVisible" width="800">
|
|
|
|
|
<form-create :rule="formDetailPreview.rule" :option="formDetailPreview.option" />
|
|
|
|
|
</Dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import * as ModelApi from '@/api/bpm/model'
|
|
|
|
|
import ModelForm from './ModelForm.vue'
|
|
|
|
|
import { groupBy } from 'lodash-es'
|
|
|
|
|
import { mockData } from './mock'
|
|
|
|
|
import CategoryDraggableModel from './CategoryDraggableModel.vue'
|
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'BpmModel' })
|
|
|
|
|
|
2024-10-15 15:17:40 +08:00
|
|
|
|
const draggableModelRef = ref()
|
2024-10-15 08:39:11 +08:00
|
|
|
|
const loading = ref(true) // 列表的加载中
|
2024-10-15 16:29:45 +08:00
|
|
|
|
const isCategorySorting = ref(false) // 是否正处于排序状态
|
2024-10-15 08:39:11 +08:00
|
|
|
|
const queryParams = reactive({
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
key: undefined,
|
|
|
|
|
name: undefined,
|
|
|
|
|
category: undefined
|
|
|
|
|
})
|
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
|
const categoryGroup = ref<any>({}) // 按照category分组的数据
|
|
|
|
|
|
|
|
|
|
/** 查询列表 */
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
2024-10-15 16:29:45 +08:00
|
|
|
|
// TODO 芋艿:这里需要一个不分页查全部的流程模型接口,并且每条数据都应包含categoryId字段,用于重命名/删除分类。
|
2024-10-15 08:39:11 +08:00
|
|
|
|
const data = await ModelApi.getModelPage(queryParams)
|
|
|
|
|
data.list = mockData
|
|
|
|
|
categoryGroup.value = groupBy(data.list, 'categoryName')
|
2024-10-15 15:17:40 +08:00
|
|
|
|
draggableModelRef.value?.updateTableData()
|
2024-10-15 08:39:11 +08:00
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
|
const formRef = ref()
|
|
|
|
|
const openForm = (type: string, id?: number) => {
|
|
|
|
|
formRef.value.open(type, id)
|
|
|
|
|
}
|
|
|
|
|
/** 流程表单的详情按钮操作 */
|
|
|
|
|
const formDetailVisible = ref(false)
|
|
|
|
|
const formDetailPreview = ref({
|
|
|
|
|
rule: [],
|
|
|
|
|
option: {}
|
|
|
|
|
})
|
|
|
|
|
|
2024-10-15 16:29:45 +08:00
|
|
|
|
/** 右上角设置按钮 */
|
|
|
|
|
const handleCommand = (command: string) => {
|
|
|
|
|
switch (command) {
|
|
|
|
|
case 'handleAddCategory':
|
|
|
|
|
handleAddCategory()
|
|
|
|
|
break
|
|
|
|
|
case 'handleSort':
|
|
|
|
|
handleSort()
|
|
|
|
|
break
|
|
|
|
|
default:
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 新建分类
|
|
|
|
|
const handleAddCategory = () => {}
|
|
|
|
|
// 分类排序
|
|
|
|
|
const handleSort = () => {
|
|
|
|
|
isCategorySorting.value = true
|
|
|
|
|
}
|
|
|
|
|
// 取消排序
|
|
|
|
|
const cancelSort = () => {
|
|
|
|
|
isCategorySorting.value = false
|
|
|
|
|
}
|
|
|
|
|
// 保存排序
|
|
|
|
|
const saveSort = () => {}
|
|
|
|
|
|
2024-10-15 08:39:11 +08:00
|
|
|
|
/** 初始化 **/
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await getList()
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2024-10-15 15:17:40 +08:00
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
:deep() {
|
|
|
|
|
.el-card {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|