promotionoffline.wxml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <view>
  2. <navbar page-name="我的设备" back-home="true"></navbar>
  3. <view class="page-content2" style='height:calc(100vh - {{navH}}px)'>
  4. <image src="{{imgpath}}" class="imghead"></image>
  5. <view class="halfran"></view>
  6. <view class="info">
  7. <view class="name">
  8. <view class="iconflex">
  9. <image class="nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofname.png'></image>
  10. </view>
  11. <view class="infoflex">
  12. <input value="{{name}}" bindinput="nameInput" maxlength="13" placeholder="请输入您的姓名" placeholder-class="phcolor"
  13. class="nameinput" />
  14. </view>
  15. <view class="otherflex">
  16. </view>
  17. </view>
  18. <view class="line"></view>
  19. <view class="phone">
  20. <view class="iconflex">
  21. <image class="nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofphone.png'></image>
  22. </view>
  23. <view class="infoflex">
  24. <input type="number" value="{{phone}}" bindinput="phoneInput" maxlength="13" placeholder="请输入您的手机号"
  25. placeholder-class="phcolor" class="nameinput" />
  26. </view>
  27. <view class="otherflex">
  28. </view>
  29. </view>
  30. <view class="line"></view>
  31. <view class="phone">
  32. <view class="iconflex">
  33. <image class="nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofdate.png'></image>
  34. </view>
  35. <view class="infoflex">
  36. <picker mode="date" value="{{date}}" start="{{startdate}}" bindchange="bindDateChange" class="dateinput">
  37. <view class="picker">
  38. {{date}}
  39. </view>
  40. </picker>
  41. </view>
  42. <view class="otherflex">
  43. </view>
  44. </view>
  45. <view class="line"></view>
  46. <view class="phone">
  47. <view class="iconflex">
  48. <image class="nameicon" src='https://yuesuo.yueguanjia.com/MiniProgram/images/ofpromotion.png'></image>
  49. </view>
  50. <view class="infoflex">
  51. <picker bindchange="bindPickerChange" value="{{promotionShow}}" range="{{objectArray}}" range-key="po_name" class="dateinput">
  52. <view class="picker">
  53. {{objectArray[promotionShow].po_name?objectArray[promotionShow].po_name:"请选择参加的活动"}}
  54. </view>
  55. </picker>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="tips">注:本礼品仅限参加现场活动时领取</view>
  60. <view class="pay">
  61. <view class="create" bindtap="confirm">提交信息</view>
  62. </view>
  63. </view>
  64. </view>