pliceOrder.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="下单"></cu-custom>
  3. <view>
  4. <view>
  5. <view class="goodImage">
  6. <image src="{{icon}}"></image>
  7. </view>
  8. <view class="goodName">
  9. <view class="score">
  10. <text>{{name}}</text>
  11. </view>
  12. </view>
  13. <view class="goods_content">
  14. <form bindsubmit="formSubmit">
  15. <view class="info_item">
  16. <view class="info_label mandatory">手机号</view>
  17. <input class="info_input" placeholder="请输入手机号" type='text' name='userMobile'></input>
  18. </view>
  19. <view class="info_item">
  20. <view class="info_label mandatory">姓名</view>
  21. <input class="info_input" placeholder="请输入姓名" type='text' name='userName'></input>
  22. </view>
  23. <view class="info_item">
  24. <view class="info_label mandatory">数量</view>
  25. <input class="info_input" placeholder="请输入数量" type='text' name='num'></input>
  26. </view>
  27. <view class="phone_btm">
  28. <button class="phone_btn1" form-type="submit">提交</button>
  29. </view>
  30. </form>
  31. </view>
  32. </view>
  33. </view>