通知审批流优化

This commit is contained in:
‘huanghaiixia’
2026-01-12 17:49:22 +08:00
parent 8df05f6179
commit 673f87fdd6
7 changed files with 79 additions and 28 deletions

View File

@ -47,9 +47,10 @@
<FormInformation v-else :key="randKey" ref="formInformation" :disabled="false" :formAssignmentData="data.formAssignmentData" :formInfos="data.formInfos" :opinions="data.opinions" :opinionsComponents="data.opinionsComponents" />
</div>
</div>
<div v-if="rQuery.type == 'update'">
<Title :font-size="18" default-value="流转信息"></Title>
<flow-history :items="historyList"></flow-history>
<div v-if="rQuery.type == 'update'" class="formViewStyle">
<Card title="流转信息" :bordered="false" >
<flow-history :items="historyList"></flow-history>
</Card>
</div>
<a-modal :visible="showFlowChart" centered class="geg" closable title="流程图" width="1200px" @cancel="closeFlowChart">
<process-information :process-id="processId" :xml="data.xml" />
@ -63,6 +64,7 @@
</template>
<script setup>
import { Card } from 'ant-design-vue';
import { useRouter } from 'vue-router';
import userTaskItem from '/@/views/workflow/task/hooks/userTaskItem';
import FormInformation from '/@/views/secondDev/FormInformation.vue';