Browse Source

修改类型

v3
超级管理员 2 years ago
parent
commit
45e488afbd
  1. 2
      src/api/taskapi/types.ts
  2. 6
      src/views/taskplatform/taskmanagement/lookFlowInfo.vue
  3. 1
      src/views/taskplatform/taskmanagement/myrequest.vue
  4. 2
      src/views/taskplatform/taskmanagement/taskcustomerformnew.vue
  5. 3
      src/views/taskplatform/taskmanagement/todolist.vue

2
src/api/taskapi/types.ts

@ -55,6 +55,8 @@ export interface customerFormVersionCont{
editTime:number;
table_structure:string;
dict:string;
classify:number;
flowkeystr:string;
}
//获取工作流步进节点
export interface nodeFlow extends customerFormLogo{

6
src/views/taskplatform/taskmanagement/lookFlowInfo.vue

@ -266,20 +266,20 @@ const sendDraftSubmit = (type: string,val?:any) => {
<el-descriptions
direction="vertical"
:column="4"
size="24px"
:size="24"
border
>
<div v-for="(item,index) in itemss" :key="index">
<el-descriptions-item v-if="!Array.isArray(item)&&index!='logTime'" :label="index">
{{ item }}
</el-descriptions-item>
<el-descriptions-item v-if="Array.isArray(item)&&index!='logTime'" :label="index" span="4">
<el-descriptions-item v-if="Array.isArray(item)&&index!='logTime'" :label="index" :span="4">
<el-descriptions
direction="vertical"
:column="4"
size="24px"
:size="24"
border
>
<el-descriptions-item v-for="(items,indexs) in item[0]" :key="indexs" :label="indexs">

1
src/views/taskplatform/taskmanagement/myrequest.vue

@ -167,6 +167,7 @@ const retractFlowInfo = (val:any) => {
})
.catch(() => {})
}
const searchQuery = () =>{}
</script>
<template>
<div ref="myappbox" class="app_box">

2
src/views/taskplatform/taskmanagement/taskcustomerformnew.vue

@ -71,7 +71,7 @@ const state = reactive<any>({
//
const gainFlowChart = reactive<nodeFlow>({
id:0
id:"0"
})
const flowFactor = reactive<conditionInfo[]>([]) //
const nodelUserList = reactive<nodelPeoples[]>([])

3
src/views/taskplatform/taskmanagement/todolist.vue

@ -64,6 +64,9 @@ const darwOpenOrClose = ref(false)
const lookFlowInfo = (val:any,types:number) => {
flowLogInfo.value = val
darwOpenOrClose.value = true
}
const searchQuery = () =>{
}
</script>
<template>

Loading…
Cancel
Save