|
|
@@ -186,27 +186,17 @@
|
|
|
disabled
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="立项资料"
|
|
|
- prop="listFile"
|
|
|
- class="special-el-form-item"
|
|
|
- >
|
|
|
- <fileItem
|
|
|
- ref="fileItemLXApply"
|
|
|
- :id="formLXApply.id"
|
|
|
- ></fileItem>
|
|
|
+ <el-form-item label="立项申请报告" prop="listFile" class="special-el-form-item">
|
|
|
+ <fileItem ref="fileItemLXApply" :id="formLXApply.id" :is-detail="true"></fileItem>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="通知名单"
|
|
|
- prop="participants"
|
|
|
- class="special-el-form-item"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- rows="4"
|
|
|
- type="textarea"
|
|
|
- v-model="formLXApply.participants"
|
|
|
- disabled
|
|
|
- />
|
|
|
+ <el-form-item label="项目行研报告" prop="industryListFile" class="special-el-form-item">
|
|
|
+ <fileItem ref="industryFileItem" :id="formLXApply.id" :is-detail="true"></fileItem>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="项目技术报告" prop="technicalListFile" class="special-el-form-item">
|
|
|
+ <fileItem ref="technicalFileItem" :id="formLXApply.id" :is-detail="true"></fileItem>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="其他附件" prop="otherListFile" class="special-el-form-item">
|
|
|
+ <fileItem ref="otherFileItem" :id="formLXApply.id" :is-detail="true"></fileItem>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div
|
|
|
@@ -217,14 +207,14 @@
|
|
|
暂无数据
|
|
|
</div>
|
|
|
</el-tab-pane>
|
|
|
- <el-tab-pane label="项目立项评估评审汇总表">
|
|
|
+<!-- <el-tab-pane label="项目立项评估评审汇总表">
|
|
|
<tableForm
|
|
|
:formType="2"
|
|
|
ref="approvalTableForm"
|
|
|
:readonly="true"
|
|
|
:showBack="false"
|
|
|
></tableForm>
|
|
|
- </el-tab-pane>
|
|
|
+ </el-tab-pane>-->
|
|
|
</el-tabs>
|
|
|
</div>
|
|
|
<div v-if="activeName === '4'">
|
|
|
@@ -267,8 +257,10 @@
|
|
|
<fileItem
|
|
|
ref="fileItemTJApply"
|
|
|
:id="formTJApply.id"
|
|
|
+ :is-detail="true"
|
|
|
></fileItem>
|
|
|
</el-form-item>
|
|
|
+<!--
|
|
|
<el-form-item
|
|
|
label="通知名单"
|
|
|
prop="participants"
|
|
|
@@ -280,6 +272,9 @@
|
|
|
v-model="formTJApply.participants"
|
|
|
disabled
|
|
|
/>
|
|
|
+ </el-form-item>-->
|
|
|
+ <el-form-item label="其他附件" prop="otherListFile" class="special-el-form-item">
|
|
|
+ <fileItem ref="otherFileItem" :id="formTJApply.id" :is-detail="true"></fileItem>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div
|
|
|
@@ -354,7 +349,7 @@ import meetingList from "../invest/components/meetingList";
|
|
|
import projectList from "../invest/components/projectList";
|
|
|
import tableForm from "../invest/components/tableForm";
|
|
|
import listAllfile from "../invest/components/listAllfile";
|
|
|
-import dueDiligenceList from "../invest/components/dueDiligenceList";
|
|
|
+import dueDiligenceList from "../project/investigate/dueDiligenceList";
|
|
|
import fileItem from "../invest/components/fileItem";
|
|
|
|
|
|
import {
|
|
|
@@ -540,11 +535,22 @@ export default {
|
|
|
if (response && response.data) {
|
|
|
that.formLXApply = response.data;
|
|
|
setTimeout(() => {
|
|
|
- that.$refs.fileItemLXApply.handleButton();
|
|
|
- that.$refs.fileItemLXApply.fileList = [];
|
|
|
- that.$refs.fileItemLXApply.getListFileBusinessId(
|
|
|
- that.formLXApply.id
|
|
|
- );
|
|
|
+ //立项申请报告
|
|
|
+ this.$refs.fileItemLXApply.handleButton();
|
|
|
+ this.$refs.fileItemLXApply.fileList = [];
|
|
|
+ this.$refs.fileItemLXApply.getListFileBusinessId(that.formLXApply.id,"10");
|
|
|
+ //项目行研报告
|
|
|
+ this.$refs.industryFileItem.handleButton();
|
|
|
+ this.$refs.industryFileItem.fileList = [];
|
|
|
+ this.$refs.industryFileItem.getListFileBusinessId(that.formLXApply.id, "12");
|
|
|
+ //项目技术报告
|
|
|
+ this.$refs.technicalFileItem.handleButton();
|
|
|
+ this.$refs.technicalFileItem.fileList = [];
|
|
|
+ this.$refs.technicalFileItem.getListFileBusinessId(that.formLXApply.id, "13");
|
|
|
+ //其他附件
|
|
|
+ this.$refs.otherFileItem.handleButton();
|
|
|
+ this.$refs.otherFileItem.fileList = [];
|
|
|
+ this.$refs.otherFileItem.getListFileBusinessId(that.formLXApply.id, "0");
|
|
|
}, 300);
|
|
|
}
|
|
|
});
|
|
|
@@ -556,11 +562,13 @@ export default {
|
|
|
if (response && response.data) {
|
|
|
that.formTJApply = response.data;
|
|
|
setTimeout(() => {
|
|
|
- that.$refs.fileItemTJApply.handleButton();
|
|
|
- that.$refs.fileItemTJApply.fileList = [];
|
|
|
- that.$refs.fileItemTJApply.getListFileBusinessId(
|
|
|
- that.formTJApply.id
|
|
|
- );
|
|
|
+ this.$refs.fileItemTJApply.handleButton();
|
|
|
+ this.$refs.fileItemTJApply.fileList = [];
|
|
|
+ this.$refs.fileItemTJApply.getListFileBusinessId(that.formTJApply.id,"11");
|
|
|
+ //其他附件
|
|
|
+ this.$refs.otherFileItem.handleButton();
|
|
|
+ this.$refs.otherFileItem.fileList = [];
|
|
|
+ this.$refs.otherFileItem.getListFileBusinessId(that.formTJApply.id, "0");
|
|
|
}, 300);
|
|
|
}
|
|
|
});
|