| | |
| | | </a-tab-pane> |
| | | </template> |
| | | |
| | | <template v-if="selectShenpiData.processDefinitionKey"> |
| | | <template v-if="selectShenpiData.procInstId"> |
| | | <a-tab-pane key='3' tab='流程图'> |
| | | <img :src="imageSrc" alt="Fetched Image"/> |
| | | </a-tab-pane> |
| | | </template> |
| | | |
| | | <a-tab-pane key='4' tab='流转节点'> |
| | | <a-card> |
| | |
| | | </a-timeline> |
| | | </a-card> |
| | | </a-tab-pane> |
| | | </template> |
| | | |
| | | |
| | | </a-tabs> |
| | | </a-col> |
| | | |
| | |
| | | /** |
| | | * 主页面点击详情时触发 |
| | | * @param record 主页面列表行记录 |
| | | * |
| | | */ |
| | | handleDetail(record) { |
| | | this.activeTabKey = '1' |
| | | this.detail.dataSource1 = this.detail.dataSource2 = [] |
| | | this.model = Object.assign({}, record) |
| | | this.getFlowTaskListByApi(record) |
| | | this.getFlowChartImageByApi(record) |
| | | this.loadDetail(record.id) |
| | | }, |
| | | |