change.wxml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <view class="item">
  2. <label>今转出资金</label>
  3. <input placeholder-style="color:rgba(203, 203, 203, 1)" type="text" placeholder="请填写"/>
  4. <text>万 <text>(单位)</text></text>
  5. </view>
  6. <view class="item">
  7. <label>今转入资金</label>
  8. <input placeholder-style="color:rgba(203, 203, 203, 1)" type="text" placeholder="请填写"/>
  9. <text>万 <text>(单位)</text></text>
  10. </view>
  11. <view class="item">
  12. <label>账户截图</label>
  13. <view wx:for='{{today_stock_img}}' class="stock_imgs">
  14. <image src="{{item}}" bindtap="prview" data-src="{{item}}"></image>
  15. <view class="edit">
  16. <text bindtap="del" data-id='{{index}}'>删除</text>
  17. </view>
  18. </view>
  19. <view class="upload" bindtap="uploadImg">
  20. <image mode="widthFix" src="../../images/img.png"></image>
  21. 上传图片
  22. </view>
  23. </view>
  24. <view class="item">
  25. <label>规则</label>
  26. <text style="margin: 0;">入金比赛成绩稀释,出金保持成绩不变</text>
  27. </view>
  28. <button bindtap="post">提交</button>