index.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <view class="auto">
  2. <view wx:for="{{madeList}}" class="f-box mar-t20 custom-list" data-detail="{{item}}" data-state="{{item.customgoodsIsAllow}}" bindtap='customized'>
  3. <view class='cust-img mar-r20 mar-l20 f-box f-align-items-center'>
  4. <image src="{{host}}/{{item.customgoodsNameImgJson}}" mode="aspectFit"></image>
  5. </view>
  6. <view class="f-item mar-l20 mar-t20 mar-r20">
  7. <view class='cup-main'>
  8. <view class='f-s32 mar-t20'>{{item.customgoodsName}}</view>
  9. <view class="mar-t20 f-s30 c-orange">{{item.customgoodsPriceNow}}</view>
  10. <view class='f-box mar-t20 f-s32 f-align-items-center'>
  11. <view class='f-item'>
  12. <view class="{{item.customgoodsIsAllow == '1' ? 'disabled' : ''}} cust-btn f-s30 c-green">去定制</view>
  13. </view>
  14. <view class='tu-icon f-box f-align-items-center'>
  15. <image src='/customized/images/customized/tu_icon.png' mode="aspectFit"></image>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class='footer'>
  23. <view class='footer-box'>
  24. <view class='cust-footer f-box f-justify-content-end'>
  25. <view class='f-item'>
  26. <navigator class='c-green f-s32 vip' bindtap='vipBtn'>VIP专区</navigator>
  27. </view>
  28. <navigator open-type="switchTab" url='/pages/index/index' class='icon-shouye iconfont c-green'></navigator>
  29. <navigator url='/customized/pages/car/car' class='icon-gouwuche iconfont c-green icon-car'>
  30. <view class='car-num bg-green c-white' wx:if="{{carNum && carNum !=null}}">{{carNum}}</view>
  31. </navigator>
  32. <navigator url='/customized/pages/user/user' class='icon-wode iconfont c-green'></navigator>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 密码输入框 -->
  37. <view class='pwd-box' bindtap='close' wx:if="{{pwdStatic}}">
  38. <view class='pwd-main'>
  39. <view class='f-s32 pwd-title mar-b20'>请输入密码</view>
  40. <view class='f-box content'>
  41. <block wx:for="{{Length}}" wx:key="item">
  42. <input class='iptbox' value="{{Value.length>=index+1?Value[index]:''}}" disabled password='{{ispassword}}' catchtap='Tap'></input>
  43. </block>
  44. </view>
  45. <input name="password" password="{{true}}" value='{{Value}}' class='ipt' maxlength="{{Length}}" focus="{{isFocus}}" bindinput="Focus" style='display:none'></input>
  46. <view class='f-box btn-box'>
  47. <view class="btn-area f-s32 btn-del" bindtap='fromDel'>删除</view>
  48. <view class="btn-area f-s32 bg-green c-white" bindtap='formSubmit'>确定</view>
  49. </view>
  50. </view>
  51. </view>