Merge remote-tracking branch 'origin/fix_foton_20240619' into fix_foton_20240619
This commit is contained in:
@@ -64,6 +64,9 @@
|
||||
<ProcessTitle>
|
||||
<template slot="title">拆分信息</template>
|
||||
</ProcessTitle>
|
||||
<div style="margin:5px 0">
|
||||
<el-button size="mini" type="primary" @click="exportInfo">导出</el-button>
|
||||
</div>
|
||||
<el-table border
|
||||
ref="filterTable"
|
||||
:data="itemList"
|
||||
@@ -319,6 +322,8 @@
|
||||
</div>
|
||||
</el-dialog>
|
||||
<loading :loading="loading">加载中...</loading>
|
||||
<!-- 导出 -->
|
||||
<ExportDialog ref="exportDialogRef" @exportName="exportName" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -326,6 +331,7 @@
|
||||
import ProcessHeader from '../../components/ProcessHeader'
|
||||
import ProcessFooter from '../../components/ProcessFooter'
|
||||
import ProcessTitle from '../../components/ProcessTitle'
|
||||
import ExportDialog from '@/components/hzwlComponents/exportDialog'
|
||||
import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew} from 'api/process'
|
||||
import axios from "axios";
|
||||
import ReceiptDescription from '@/components/hzwlComponents/ReceiptDescription'
|
||||
@@ -371,9 +377,20 @@
|
||||
ReceiptDescription,
|
||||
ProcessHeader,
|
||||
ProcessFooter,
|
||||
ProcessTitle
|
||||
ProcessTitle,
|
||||
ExportDialog
|
||||
},
|
||||
methods: {
|
||||
exportInfo () {
|
||||
this.$refs.exportDialogRef.openModel()
|
||||
},
|
||||
exportName (name) {
|
||||
const exportURL = '/api/lawss/activiti/exportStandardReadInfo?exportFileName=' + name + '&taskId=' + this.taskIds
|
||||
window.open(exportURL)
|
||||
this.$refs.exportDialogRef.cancel()
|
||||
this.$message.success('导出信息成功')
|
||||
this.exportLoading = false
|
||||
},
|
||||
handleResize() {
|
||||
this.$nextTick(()=> {
|
||||
this.$refs.filterTable.doLayout();
|
||||
|
||||
Reference in New Issue
Block a user