|
|
|
@ -46,13 +46,13 @@
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="金额">
|
|
|
|
<el-form-item label="金额">
|
|
|
|
<el-input-number v-model="form.amount" :precision="2" :step="0.01" :min="0" style="width: 240px;" />
|
|
|
|
<el-input-number v-model="form.amount" :precision="2" :step="0.01" :min="0" style="width: 240px;" />万元
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="融资阶段">
|
|
|
|
<el-form-item label="融资阶段">
|
|
|
|
<el-input v-model="form.fund_stage" maxlength="50" />
|
|
|
|
<el-input v-model="form.fund_stage" maxlength="50" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="期望资金属性">
|
|
|
|
<el-form-item label="公司名称">
|
|
|
|
<el-input v-model="form.expect_fund_attr" maxlength="50" />
|
|
|
|
<el-input v-model="form.fund_company" maxlength="50" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="行业类型">
|
|
|
|
<el-form-item label="行业类型">
|
|
|
|
<el-input v-model="form.industry_type" maxlength="50" />
|
|
|
|
<el-input v-model="form.industry_type" maxlength="50" />
|
|
|
|
@ -201,7 +201,7 @@ export default {
|
|
|
|
fund_type: '',
|
|
|
|
fund_type: '',
|
|
|
|
amount: 0,
|
|
|
|
amount: 0,
|
|
|
|
fund_stage: '',
|
|
|
|
fund_stage: '',
|
|
|
|
expect_fund_attr: '',
|
|
|
|
fund_company: '',
|
|
|
|
industry_type: '',
|
|
|
|
industry_type: '',
|
|
|
|
product: '',
|
|
|
|
product: '',
|
|
|
|
desc: '',
|
|
|
|
desc: '',
|
|
|
|
@ -249,7 +249,7 @@ export default {
|
|
|
|
fund_type: '',
|
|
|
|
fund_type: '',
|
|
|
|
amount: 0,
|
|
|
|
amount: 0,
|
|
|
|
fund_stage: '',
|
|
|
|
fund_stage: '',
|
|
|
|
expect_fund_attr: '',
|
|
|
|
fund_company: '',
|
|
|
|
industry_type: '',
|
|
|
|
industry_type: '',
|
|
|
|
product: '',
|
|
|
|
product: '',
|
|
|
|
desc: '',
|
|
|
|
desc: '',
|
|
|
|
@ -274,7 +274,7 @@ export default {
|
|
|
|
fund_type: val.fund_type || '',
|
|
|
|
fund_type: val.fund_type || '',
|
|
|
|
amount: typeof val.amount === 'number' ? val.amount : (parseFloat(val.amount) || 0),
|
|
|
|
amount: typeof val.amount === 'number' ? val.amount : (parseFloat(val.amount) || 0),
|
|
|
|
fund_stage: val.fund_stage || '',
|
|
|
|
fund_stage: val.fund_stage || '',
|
|
|
|
expect_fund_attr: val.expect_fund_attr || '',
|
|
|
|
fund_company: val.fund_company || '',
|
|
|
|
industry_type: val.industry_type || '',
|
|
|
|
industry_type: val.industry_type || '',
|
|
|
|
product: val.product || '',
|
|
|
|
product: val.product || '',
|
|
|
|
desc: val.desc || '',
|
|
|
|
desc: val.desc || '',
|
|
|
|
@ -385,7 +385,7 @@ export default {
|
|
|
|
data.fund_type = this.form.fund_type
|
|
|
|
data.fund_type = this.form.fund_type
|
|
|
|
data.amount = this.form.amount
|
|
|
|
data.amount = this.form.amount
|
|
|
|
data.fund_stage = this.form.fund_stage
|
|
|
|
data.fund_stage = this.form.fund_stage
|
|
|
|
data.expect_fund_attr = this.form.expect_fund_attr
|
|
|
|
data.fund_company = this.form.fund_company
|
|
|
|
data.industry_type = this.form.industry_type
|
|
|
|
data.industry_type = this.form.industry_type
|
|
|
|
data.product = this.form.product
|
|
|
|
data.product = this.form.product
|
|
|
|
data.desc = this.form.desc
|
|
|
|
data.desc = this.form.desc
|
|
|
|
@ -395,7 +395,7 @@ export default {
|
|
|
|
data.fund_type = ''
|
|
|
|
data.fund_type = ''
|
|
|
|
data.amount = 0
|
|
|
|
data.amount = 0
|
|
|
|
data.fund_stage = ''
|
|
|
|
data.fund_stage = ''
|
|
|
|
data.expect_fund_attr = ''
|
|
|
|
data.fund_company = ''
|
|
|
|
data.industry_type = ''
|
|
|
|
data.industry_type = ''
|
|
|
|
data.product = ''
|
|
|
|
data.product = ''
|
|
|
|
data.desc = ''
|
|
|
|
data.desc = ''
|
|
|
|
|