工单流程VO渲染效果

This commit is contained in:
2025-12-31 12:45:26 +08:00
parent 1ef1b32f5f
commit 4f0eeede37
17 changed files with 184 additions and 272 deletions

View File

@@ -380,7 +380,7 @@
<script setup lang="ts">
import { ref, onMounted, reactive, computed } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
import type { TbWorkcaseDTO, TbWorkcaseProcessDTO } from '@/types/workcase'
import type { TbWorkcaseDTO, TbWorkcaseProcessDTO, WorkcaseProcessVO } from '@/types/workcase'
import type { CustomerServiceVO } from '@/types/workcase/chatRoom'
import { workcaseAPI, fileAPI, workcaseChatAPI } from '@/api'
@@ -401,7 +401,7 @@ const userId = JSON.parse(uni.getStorageSync('loginDomain')).userInfo.userId
const workcase = reactive<TbWorkcaseDTO>({})
// 处理记录
const processList = reactive<TbWorkcaseProcessDTO[]>([])
const processList = reactive<WorkcaseProcessVO[]>([])
// 文件信息缓存
const fileInfoCache = reactive<Map<string, any>>(new Map())