Commit 9207b462 authored by anxixi's avatar anxixi

服务记录问题修改

parent bda75ca5
......@@ -152,7 +152,7 @@
<el-form-item v-if="subprojectjson.investment===null" label="近三年研发投入 (单位:万)">
<el-input @input="inputchange()" v-model="projectjson.investment" type="number" maxlength="36" placeholder="请输入近三年研发投入"></el-input>
</el-form-item>
<div v-if="subprojectjson.technicalStaff===null">
<div v-if="subprojectjson.technologyTeam===null">
<el-form-item label="主要技术人员">
</el-form-item>
<div v-for="item in technicalStaff" style="margin-top: -0.2rem;">
......@@ -188,13 +188,13 @@
</el-form-item>
<div v-for="item in financingList" style="margin-top: -0.2rem;">
<el-form-item label="" style="position: relative;">
<el-input v-model="item.financingTime" maxlength="36" placeholder="请输入目前估值" style="margin-top: 0.2rem;"></el-input>
<el-select v-model="item.latestFinancingTurn" placeholder="请选择轮次" style="width: 100%;margin-top: 0.2rem;">
<el-input v-model="item.currentValuation" maxlength="36" placeholder="请输入目前估值" style="margin-top: 0.2rem;"></el-input>
<el-select v-model="item.financingTurn" placeholder="请选择轮次" style="width: 100%;margin-top: 0.2rem;">
<el-option v-for="item in latestFinancingTurnData" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey">
</el-option>
</el-select>
<el-input v-model="item.financingMoney" maxlength="36" type="number" placeholder="请输入金额 (单位:万)" style="margin-top: 0.2rem;"></el-input>
<el-input v-model="projectjson.financingInvestor" maxlength="300" placeholder="请输入投资机构" style="margin-top: 0.2rem" type="textarea" :rows="10"></el-input>
<el-input v-model="item.financingInvestor" maxlength="300" placeholder="请输入投资机构" style="margin-top: 0.2rem" type="textarea" :rows="10"></el-input>
</el-form-item>
</div>
<div>
......@@ -202,7 +202,7 @@
</div>
</div>
<el-form-item v-if="subprojectjson.currentFinancingTurn===null" label="本轮融资阶段">
<el-form-item v-if="subprojectjson.financingInvestor===null" label="本轮融资阶段">
<el-input @input="inputchange()" v-model="projectjson.financingInvestor" maxlength="36" placeholder="请输入本轮融资阶段"></el-input>
</el-form-item>
<el-form-item v-if="subprojectjson.preValuation===null" label="当前投前估值 (单位:万)">
......@@ -356,11 +356,11 @@
},
addedit(){
for(let i in this.financingList){
if(this.financingList[i].financingTime!=''&&this.financingList[i].financingTurn!=''&&this.financingList[i].financingMoney!=''&&this.financingList[i].financingInvestor!=''){
if(this.projectjson.financingList==null){
this.projectjson.financingList = [];
if(this.financingList[i].currentValuation!=''&&this.financingList[i].financingTurn!=''&&this.financingList[i].financingMoney!=''&&this.financingList[i].financingInvestor!=''){
if(this.projectjson.historicalFinancing==null){
this.projectjson.historicalFinancing = [];
}
this.projectjson.financingList.push(this.financingList[i])
this.projectjson.historicalFinancing.push(this.financingList[i])
}
}
for(let i in this.stockRight){
......@@ -381,10 +381,10 @@
}
for(let i in this.technicalStaff){
if(this.technicalStaff[i].empName!=''&&this.technicalStaff[i].empPosition!=''&&this.technicalStaff[i].empIntroduction!=''){
if(this.projectjson.technicalStaff==null){
this.projectjson.technicalStaff = [];
if(this.projectjson.technologyTeam==null){
this.projectjson.technologyTeam = [];
}
this.projectjson.technicalStaff.push(this.technicalStaff[i])
this.projectjson.technologyTeam.push(this.technicalStaff[i])
}
}
for(let i in this.coreTeam){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment