|
|
@@ -92,11 +92,6 @@
|
|
|
>
|
|
|
{{ form.investHead ? form.investHead : "请选择项目负责人" }}
|
|
|
</div>
|
|
|
-<!-- <selecDept
|
|
|
- ref="selecDepts"
|
|
|
- @getDeptUserInfo="getDeptUserInfo"
|
|
|
- :deptId="deptId"
|
|
|
- ></selecDept>-->
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="24">
|
|
|
@@ -286,7 +281,7 @@
|
|
|
<fileItem
|
|
|
ref="fileItem"
|
|
|
:id="form.id"
|
|
|
- @getFileList="getFileList"
|
|
|
+ :is-detail="true"
|
|
|
></fileItem>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -511,12 +506,12 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col>
|
|
|
<el-form-item label="BP" prop="bpFile" class="special-el-form-item">
|
|
|
- <fileItem ref="bpFileItem" :id="form.id" @getFileList="getBPFileList" ></fileItem>
|
|
|
+ <fileItem ref="bpFileItem" :id="form.id" :is-detail="true" ></fileItem>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
<el-form-item label="其他附件" prop="otherFile" class="special-el-form-item">
|
|
|
- <fileItem ref="otherFileItem" :id="form.id" @getFileList="getOtherFileList"></fileItem>
|
|
|
+ <fileItem ref="otherFileItem" :id="form.id" :is-detail="true"></fileItem>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
@@ -581,13 +576,12 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import {getPool,getInvestInfo, investmentOpportunityComplete} from "@/api/project/investOpp/pool";
|
|
|
+import {getInvestInfo, investmentOpportunityComplete} from "@/api/project/investOpp/pool";
|
|
|
import { listChannel } from "@/api/invest/channel";
|
|
|
import fileItem from "../../invest/components/fileItem";
|
|
|
import flowBase from "../flowBase.vue";
|
|
|
import { mapGetters } from "vuex";
|
|
|
-import channelItem from "../../invest/components/channelItem.vue";
|
|
|
-import selecDept from "../../invest/components/selecDept.vue";
|
|
|
+
|
|
|
|
|
|
export default {
|
|
|
props: {
|
|
|
@@ -781,14 +775,14 @@ export default {
|
|
|
this.fileList = [];
|
|
|
}
|
|
|
},
|
|
|
- getBPFileList(fileList) {
|
|
|
+ /*getBPFileList(fileList) {
|
|
|
if (fileList && fileList.length > 0) {
|
|
|
this.fileListBP = fileList;
|
|
|
this.$refs.form.clearValidate(["bpFile"]);
|
|
|
} else {
|
|
|
this.fileList = [];
|
|
|
}
|
|
|
- },
|
|
|
+ },*/
|
|
|
getOtherFileList(fileList) {
|
|
|
if (fileList && fileList.length > 0) {
|
|
|
this.fileListOther = fileList;
|