修改部分换算错误的问题

This commit is contained in:
weidizhu_admin 2024-07-15 18:43:18 +08:00
parent 05448e7735
commit ad5d8b35e5
2 changed files with 5 additions and 2 deletions

View File

@ -16,6 +16,9 @@
</view>
<navtab :current="1"></navtab>
<view class="" style="height: 200rpx;">
</view>
</view>
</template>

View File

@ -27,14 +27,14 @@
<view class="item">
<view class="title">步数</view>
<view class="row-date">
<view>{{dataListsNew.stepIndex.data_msg ? dataListsNew.stepIndex.data_msg.step / 10 : '--'}}</view>
<view>{{dataListsNew.stepIndex.data_msg ? dataListsNew.stepIndex.data_msg.step : '--'}}</view>
<text></text>
</view>
</view>
<view class="item">
<view class="title">距离</view>
<view class="row-date">
<view>{{dataListsNew.stepIndex.data_msg ? dataListsNew.stepIndex.data_msg.distance / 1000 : '--'}}</view>
<view>{{dataListsNew.stepIndex.data_msg ? dataListsNew.stepIndex.data_msg.distance / 100 : '--'}}</view>
<text>公里</text>
</view>
</view>