|
@@ -39,14 +39,14 @@ export default function MyCustomerListItem(props) {
|
39
|
39
|
</view>
|
40
|
40
|
<view className='flex-item'>
|
41
|
41
|
<view className='Name flex-h'>
|
42
|
|
- <text className='flex-item'>{data.name}</text>
|
|
42
|
+ <text className='flex-item'>姓名:{data.name}</text>
|
43
|
43
|
{
|
44
|
44
|
data.status - 0 !== 3 &&
|
45
|
45
|
<text>{expStr}</text>
|
46
|
46
|
}
|
47
|
47
|
</view>
|
48
|
48
|
<view className='Time flex-h'>
|
49
|
|
- <text className='flex-item'>{data.phone}</text>
|
|
49
|
+ <text className='flex-item'>手机号:{data.phone}</text>
|
50
|
50
|
{
|
51
|
51
|
data.status - 0 === 3 &&
|
52
|
52
|
<text>无效</text>
|
|
@@ -56,6 +56,10 @@ export default function MyCustomerListItem(props) {
|
56
|
56
|
<text>{BIZ_STATUS[customerStatus] || '报备'}</text>
|
57
|
57
|
}
|
58
|
58
|
</view>
|
|
59
|
+ <view className='Time flex-h'>
|
|
60
|
+ <text className='flex-item'>楼盘名称:{data.buildingName}</text>
|
|
61
|
+
|
|
62
|
+ </view>
|
59
|
63
|
</view>
|
60
|
64
|
</view>
|
61
|
65
|
)
|