123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <template>
- <ContentWrap>
- <div class="flex justify-between pl-20px items-center">
- <h3 class="font-extrabold">流程模型</h3>
- <!-- 搜索工作栏 -->
- <el-form
- v-if="!isCategorySorting"
- 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']">
- <Icon icon="ep:plus" class="mr-5px" /> 新建模型
- </el-button>
- </el-form-item>
- <el-form-item>
- <el-dropdown @command="(command) => handleCommand(command)" placement="bottom-end">
- <el-button class="w-30px" plain>
- <Icon icon="ep:setting" />
- </el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item command="handleAddCategory">
- <Icon icon="ep:circle-plus" :size="13" class="mr-5px" />
- 新建分类
- </el-dropdown-item>
- <el-dropdown-item command="handleSort">
- <Icon icon="fa:sort-amount-desc" :size="13" class="mr-5px" />
- 分类排序
- </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </el-form-item>
- </el-form>
- <template v-else>
- <el-button type="primary" @click="cancelSort"> 取 消 </el-button>
- <el-button type="primary" @click="saveSort"> 保存排序 </el-button>
- </template>
- </div>
- <el-divider />
- <!-- 分类卡片组 -->
- <div class="px-15px">
- <ContentWrap
- v-loading="loading"
- :body-style="{ padding: 0 }"
- v-for="(list, title) in categoryGroup"
- :key="title"
- >
- <CategoryDraggableModel
- ref="draggableModelRef"
- :isCategorySorting="isCategorySorting"
- :dataList="list"
- :title="title"
- @success="getList"
- />
- </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' })
- const draggableModelRef = ref()
- const loading = ref(true) // 列表的加载中
- const isCategorySorting = ref(false) // 是否正处于排序状态
- 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 {
- // TODO 芋艿:这里需要一个不分页查全部的流程模型接口,并且每条数据都应包含categoryId字段,用于重命名/删除分类。
- const data = await ModelApi.getModelPage(queryParams)
- data.list = mockData
- categoryGroup.value = groupBy(data.list, 'categoryName')
- draggableModelRef.value?.updateTableData()
- } 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: {}
- })
- /** 右上角设置按钮 */
- 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 = () => {}
- /** 初始化 **/
- onMounted(async () => {
- await getList()
- })
- </script>
- <style lang="scss" scoped>
- :deep() {
- .el-card {
- border-radius: 8px;
- }
- }
- </style>
|