Browse Source

fix(market): 修复首页数据展示问题

- 将静态数据替换为动态绑定的 infoData属性
- 修复成交率、试听率和跟进率的显示错误
- 更新相应的人数显示
master
liutong 12 months ago
parent
commit
05a446b986
  1. 12
      pages/market/data/index.vue

12
pages/market/data/index.vue

@ -77,28 +77,28 @@
<view class="right"> <view class="right">
<view class="item"> <view class="item">
<view class="title" style="color: #12E7E8;"> <view class="title" style="color: #12E7E8;">
成交率<text>(93.77%)</text> 成交率<text>({{infoData.cj_lv}}%)</text>
</view> </view>
<view class="title" style="color: #12E7E8;"> <view class="title" style="color: #12E7E8;">
11239<text></text> {{infoData.cj_count}}<text></text>
</view> </view>
</view> </view>
<view class="item"> <view class="item">
<view class="title" style="color: #4DA3FF;"> <view class="title" style="color: #4DA3FF;">
试听率<text>(93.77%)</text> 试听率<text>({{infoData.st_lv}}%)</text>
</view> </view>
<view class="title" style="color: #4DA3FF;"> <view class="title" style="color: #4DA3FF;">
11239<text></text> {{infoData.st_count}}<text></text>
</view> </view>
</view> </view>
<view class="item"> <view class="item">
<view class="title" style="color: #FFCB31;"> <view class="title" style="color: #FFCB31;">
跟进率<text>(93.77%)</text> 跟进率<text>({{infoData.gj_count}}%)</text>
</view> </view>
<view class="title" style="color: #FFCB31;"> <view class="title" style="color: #FFCB31;">
11239<text></text> {{infoData.gj_count}}<text></text>
</view> </view>
</view> </view>
</view> </view>

Loading…
Cancel
Save