operating.wxml 378 B

1234567891011
  1. <view class="content">
  2. <view class="title">抽奖控制台</view>
  3. <view class="btn-box">
  4. <button type="primary" bindtap='resetLottery'>开始抽奖</button>
  5. </view>
  6. <view class="list">
  7. <view wx:for="{{record}}" wx:key="{{index}}">
  8. <text>{{item.name}}</text><text>{{item.mobile}}</text><text>{{item.ranking+ '等奖'}} </text>
  9. </view>
  10. </view>
  11. </view>