|
@@ -1409,25 +1409,28 @@ class CustomerProfile extends Component {
|
|
|
<View className="item flex">
|
|
|
<view className="item-title">母/子公司数:</view>
|
|
|
<view className="item-value">
|
|
|
- <AtInput
|
|
|
- min={0}
|
|
|
- value={dtails.companyCount}
|
|
|
- name='companyCount'
|
|
|
- type='number'
|
|
|
- placeholder='请输入数量'
|
|
|
- size='mini'
|
|
|
- onChange={value => {
|
|
|
- dtails.companyCount = this.addCommas(value);
|
|
|
- this.setState({ dtails })
|
|
|
- }}
|
|
|
- cursor={-1}
|
|
|
- />
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
+ <AtInput
|
|
|
+ min={0}
|
|
|
+ value={dtails.companyCount}
|
|
|
+ name='companyCount'
|
|
|
+ type='number'
|
|
|
+ placeholder='请输入数量'
|
|
|
+ size='mini'
|
|
|
+ onChange={value => {
|
|
|
+ dtails.companyCount = this.addCommas(value);
|
|
|
+ this.setState({ dtails })
|
|
|
+ }}
|
|
|
+ cursor={-1}
|
|
|
+ />
|
|
|
+ </View>
|
|
|
</view>
|
|
|
</View>
|
|
|
|
|
|
<View className="item flex">
|
|
|
<view className="item-title">社保人数:</view>
|
|
|
<view className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.socialSecurityCount}
|
|
@@ -1441,12 +1444,14 @@ class CustomerProfile extends Component {
|
|
|
}}
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
+ </View>
|
|
|
</view>
|
|
|
</View>
|
|
|
|
|
|
<View className="item flex">
|
|
|
<view className="item-title">对外投资控股的企业数:</view>
|
|
|
<view className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.externalInvestCount}
|
|
@@ -1460,6 +1465,7 @@ class CustomerProfile extends Component {
|
|
|
}}
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
+ </View>
|
|
|
</view>
|
|
|
</View>
|
|
|
|
|
@@ -1610,6 +1616,7 @@ class CustomerProfile extends Component {
|
|
|
<View className="item flex">
|
|
|
<View className="item-title">营收(万元):</View>
|
|
|
<View className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.financialRevenue}
|
|
@@ -1623,12 +1630,14 @@ class CustomerProfile extends Component {
|
|
|
}}
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
</View>
|
|
|
|
|
|
<View className="item flex">
|
|
|
<View className="item-title">税收(万元):</View>
|
|
|
<View className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.financialTax}
|
|
@@ -1643,11 +1652,13 @@ class CustomerProfile extends Component {
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
</View>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
|
|
|
<View className="item flex">
|
|
|
<View className="item-title">资产(万元):</View>
|
|
|
<View className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.financialProperty}
|
|
@@ -1662,11 +1673,13 @@ class CustomerProfile extends Component {
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
</View>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
|
|
|
<View className="item flex">
|
|
|
<View className="item-title">研发费用(万元):</View>
|
|
|
<View className="item-value">
|
|
|
+ <View style={{width: '260rpx'}}>
|
|
|
<AtInput
|
|
|
min={0}
|
|
|
value={dtails.financialRd}
|
|
@@ -1681,6 +1694,7 @@ class CustomerProfile extends Component {
|
|
|
cursor={-1}
|
|
|
/>
|
|
|
</View>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
|
|
|
<View className="tit" style={{ margin: '32rpx 0 20rpx;'}}>3.前期沟通情况</View>
|