Merge branch 'fix_foton_20240619' into 'master'

Fix foton 20240619

See merge request laws-foton-slrs/foton-laws-system-front!202
This commit is contained in:
王晓勇
2024-06-27 09:50:46 +00:00
4 changed files with 21 additions and 4 deletions
@@ -460,7 +460,7 @@
type="textarea"
v-model="plForm.changePoint"
placeholder="请输入国内标准的差异点"
maxlength="500"
maxlength="1000"
:autosize="{minRows:10,maxRows:10}"
></el-input>
</el-form-item>
@@ -473,7 +473,7 @@
type="textarea"
v-model="plForm.changePoint"
placeholder="请输入国内标准的差异点"
maxlength="500"
maxlength="1000"
:autosize="{minRows:10,maxRows:10}"
></el-input>
</el-form-item>
@@ -413,7 +413,7 @@
type="textarea"
v-model="editForm.changePoint"
placeholder="请输入国内标准的差异点"
maxlength="500"
maxlength="1000"
:autosize="{minRows:10,maxRows:10}"
></el-input>
</el-form-item>
@@ -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();