1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <view class="auto">
- <view wx:for="{{madeList}}" class="f-box mar-t20 custom-list" data-detail="{{item}}" data-state="{{item.customgoodsIsAllow}}" bindtap='customized'>
- <view class='cust-img mar-r20 mar-l20 f-box f-align-items-center'>
- <image src="{{host}}/{{item.customgoodsNameImgJson}}" mode="aspectFit"></image>
- </view>
- <view class="f-item mar-l20 mar-t20 mar-r20">
- <view class='cup-main'>
- <view class='f-s32 mar-t20'>{{item.customgoodsName}}</view>
- <view class="mar-t20 f-s30 c-orange">{{item.customgoodsPriceNow}}</view>
-
- <view class='f-box mar-t20 f-s32 f-align-items-center'>
- <view class='f-item'>
- <view class="{{item.customgoodsIsAllow == '1' ? 'disabled' : ''}} cust-btn f-s30 c-green">去定制</view>
- </view>
- <view class='tu-icon f-box f-align-items-center'>
- <image src='/customized/images/customized/tu_icon.png' mode="aspectFit"></image>
- </view>
- </view>
-
- </view>
-
- </view>
- </view>
- </view>
- <view class='footer'>
- <view class='footer-box'>
- <view class='cust-footer f-box f-justify-content-end'>
- <view class='f-item'>
- <navigator class='c-green f-s32 vip' bindtap='vipBtn'>VIP专区</navigator>
- </view>
-
- <navigator open-type="switchTab" url='/pages/index/index' class='icon-shouye iconfont c-green'></navigator>
- <navigator url='/customized/pages/car/car' class='icon-gouwuche iconfont c-green icon-car'>
- <view class='car-num bg-green c-white' wx:if="{{carNum && carNum !=null}}">{{carNum}}</view>
- </navigator>
- <navigator url='/customized/pages/user/user' class='icon-wode iconfont c-green'></navigator>
- </view>
- </view>
- </view>
- <!-- 密码输入框 -->
- <view class='pwd-box' bindtap='close' wx:if="{{pwdStatic}}">
- <view class='pwd-main'>
- <view class='f-s32 pwd-title mar-b20'>请输入密码</view>
- <view class='f-box content'>
- <block wx:for="{{Length}}" wx:key="item">
- <input class='iptbox' value="{{Value.length>=index+1?Value[index]:''}}" disabled password='{{ispassword}}' catchtap='Tap'></input>
- </block>
- </view>
- <input name="password" password="{{true}}" value='{{Value}}' class='ipt' maxlength="{{Length}}" focus="{{isFocus}}" bindinput="Focus" style='display:none'></input>
- <view class='f-box btn-box'>
- <view class="btn-area f-s32 btn-del" bindtap='fromDel'>删除</view>
- <view class="btn-area f-s32 bg-green c-white" bindtap='formSubmit'>确定</view>
- </view>
- </view>
- </view>
|