|
@@ -473,7 +473,10 @@ export default class myCustomer extends Taro.Component {
|
473
|
473
|
<View className="base-item">项目类型:<View className="con">{customerDetail.demandType || '暂无'}</View></View>
|
474
|
474
|
<View className="base-item">价格区间:<View className="con">{customerDetail.priceRange || '暂无'}</View></View>
|
475
|
475
|
<View className="base-item">客户描述:<View className="con">{customerDetail.describe || '暂无'}</View></View>
|
476
|
|
- <View className="btn" onClick={this.perfectInformation}>完善信息</View>
|
|
476
|
+ <View className="btn-box">
|
|
477
|
+ <View className="btn" onClick={this.addFollow}>添加跟进</View>
|
|
478
|
+ <View className="info-btn" onClick={this.perfectInformation}>完善信息</View>
|
|
479
|
+ </View>
|
477
|
480
|
</View>
|
478
|
481
|
</AtTabsPane>
|
479
|
482
|
<AtTabsPane current={this.state.current} index={1}>
|
|
@@ -544,11 +547,11 @@ export default class myCustomer extends Taro.Component {
|
544
|
547
|
</View>
|
545
|
548
|
</AtTabsPane>
|
546
|
549
|
<AtTabsPane current={this.state.current} index={3}>
|
547
|
|
- <View style="padding:10px 20px 20px 20px">
|
|
550
|
+ <View>
|
548
|
551
|
<ListView
|
549
|
552
|
className="wrap"
|
550
|
553
|
needInit
|
551
|
|
- style="height:calc(100vh - 560rpx)"
|
|
554
|
+ style="height:calc(100vh - 510rpx);padding:10px 20px 20px 20px"
|
552
|
555
|
isEmpty={isEmpty3}
|
553
|
556
|
emptyText="暂无跟进记录~"
|
554
|
557
|
hasMore={hasMore3}
|
|
@@ -579,7 +582,9 @@ export default class myCustomer extends Taro.Component {
|
579
|
582
|
}
|
580
|
583
|
</View>
|
581
|
584
|
</ListView>
|
582
|
|
- <View className="btn" style="margin:40rpx auto;" onClick={this.addFollow}>添加跟进</View>
|
|
585
|
+ <View className="btn-box">
|
|
586
|
+ <View className="btn" onClick={this.addFollow}>添加跟进</View>
|
|
587
|
+ </View>
|
583
|
588
|
</View>
|
584
|
589
|
</AtTabsPane>
|
585
|
590
|
</AtTabs>
|