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.

32 lines
1.1 KiB

  1. <!--Pages/HGBot/Vote/Vote.wxml-->
  2. <!--TODO: 添加input后,下方元素向下平移-->
  3. <view class="ques">
  4. <view> {{userName}} 想要我帮忙</view>
  5. <view style="padding: 0;margin: 0;height: 25px;"></view>
  6. <view> 统计投票结果吗?</view>
  7. </view>
  8. <view class="sent">
  9. 憨憨,总之先给我几个选项吧!
  10. </view>
  11. <view style="display: block;">
  12. <view class="choice">
  13. <view style="display: flex; margin-bottom: 15px;text-align: center;" wx:for="{{array}}" wx:key="*this">
  14. {{item}} 、
  15. <input id="{{item}}" type="text" style="height: 28px;width: 200px;" confirm-type="next" placeholder="_________________________________" bindinput="getInput" />
  16. </view>
  17. </view>
  18. <view class="add">
  19. <button bindtap="onAdd">
  20. <image src="../../../../asset/img/icon-add.png" style="align-items: center;"></image>
  21. </button>
  22. </view>
  23. <view>
  24. <button class="button" bindtap="onOK">好了</button>
  25. </view>
  26. <view class="hg">
  27. <image src="../../../../asset/img/hangou1.png" mode="heightFix"></image>
  28. </view>
  29. </view>