14 lines
459 B
Plaintext
14 lines
459 B
Plaintext
<!--pages/myActivityInfo/myActivityInfo.wxml-->
|
|
<van-cell-group>
|
|
<block wx:for="{{datas}}" wx:key="index">
|
|
<van-cell title="{{item.title}}" value="{{item.value}}" wx:if="{{item.is_image == 0}}"/>
|
|
<view wx:if="{{item.is_image == 1}}" class="inbox">
|
|
<text>{{item.title}}</text>
|
|
<view wx:for="{{item.value}}" wx:for-item='info' class="imgBopx">
|
|
<image src="{{info}}"></image>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</van-cell-group>
|
|
<shopfoot></shopfoot>
|