weather.wxml 454 B

12345678
  1. <view class="container">
  2. <text>{{weather.city.text}} : {{weather.city.data}}</text>
  3. <text>{{weather.weather.text}} : {{weather.weather.data}}</text>
  4. <text>{{weather.temperature.text}} : {{weather.temperature.data}} ℃</text>
  5. <text>风速 : {{weather.winddirection.data}} {{weather.windpower.data}}</text>
  6. <text>{{weather.humidity.text}} : {{weather.humidity.data}}</text>
  7. <text>更新时间 : {{weather.liveData.reporttime}}</text>
  8. </view>