You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
444 B
10 lines
444 B
<view class="weather">
|
|
<!-- <image src='{{weatherUrl}}' style='width:40rpx;height:40rpx'></image> -->
|
|
<text>{{weatherData}}</text>
|
|
<view wx:for="{{weather_data}}" wx:key="{{weather_data}}" wx:for-index="index" wx:for-item="item">
|
|
<text>{{item.date}} : </text>
|
|
<image src='{{item.dayPictureUrl}}' style='width:40rpx;height:40rpx'></image>
|
|
<image src='{{item.nightPictureUrl}}' style='width:40rpx;height:40rpx'></image>
|
|
|
|
</view>
|
|
</view> |