|
@@ -1,16 +1,16 @@
|
|
<view class="auto">
|
|
<view class="auto">
|
|
<view wx:for="{{madeList}}" class="f-box mar-t20 custom-list" data-state="{{item.state}}" bindtap='customized'>
|
|
<view wx:for="{{madeList}}" class="f-box mar-t20 custom-list" data-state="{{item.state}}" bindtap='customized'>
|
|
<view class='cust-img mar-r20 mar-l20 f-box f-align-items-center'>
|
|
<view class='cust-img mar-r20 mar-l20 f-box f-align-items-center'>
|
|
- <image src="{{item.src}}" mode="aspectFit"></image>
|
|
|
|
|
|
+ <image src="{{host}}/{{item.customgoodsNameImgJson}}" mode="aspectFit"></image>
|
|
</view>
|
|
</view>
|
|
<view class="f-item mar-l20 mar-t20 mar-r20">
|
|
<view class="f-item mar-l20 mar-t20 mar-r20">
|
|
<view class='cup-main'>
|
|
<view class='cup-main'>
|
|
- <view class='f-s32 mar-t20'>{{item.name}}</view>
|
|
|
|
- <view class="mar-t20 f-s30 c-orange">{{item.price}}</view>
|
|
|
|
|
|
+ <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-box mar-t20 f-s32 f-align-items-center'>
|
|
<view class='f-item'>
|
|
<view class='f-item'>
|
|
- <navigator class="{{item.btnDisabled ? 'disabled' : ''}} cust-btn f-s30 c-green">{{item.btnText}}</navigator>
|
|
|
|
|
|
+ <navigator class="{{item.customgoodsIsAllow === '1' ? 'disabled' : ''}} cust-btn f-s30 c-green">去定制</navigator>
|
|
</view>
|
|
</view>
|
|
<view class='tu-icon f-box f-align-items-center'>
|
|
<view class='tu-icon f-box f-align-items-center'>
|
|
<image src='/customized/images/customized/tu_icon.png' mode="aspectFit"></image>
|
|
<image src='/customized/images/customized/tu_icon.png' mode="aspectFit"></image>
|
|
@@ -29,6 +29,10 @@
|
|
<view class='footer'>
|
|
<view class='footer'>
|
|
<view class='footer-box'>
|
|
<view class='footer-box'>
|
|
<view class='cust-footer f-box f-justify-content-end'>
|
|
<view class='cust-footer f-box f-justify-content-end'>
|
|
|
|
+ <view class='f-item'>
|
|
|
|
+ <navigator class='icon-VIP iconfont c-green' bindtap='vipBtn'></navigator>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
<navigator open-type="switchTab" url='/pages/index/index' class='icon-shouye iconfont c-green'></navigator>
|
|
<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'>
|
|
<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>
|
|
<view class='car-num bg-green c-white' wx:if="{{carNum && carNum !=null}}">{{carNum}}</view>
|
|
@@ -38,6 +42,22 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+<!-- 密码输入框 -->
|
|
|
|
+<view class='pwd-box' bindtap='close' wx:if="{{pwdStatic}}">
|
|
|
|
+<view class='pwd-main'>
|
|
|
|
+<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-orange c-white" bindtap='formSubmit'>确定</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+</view>
|
|
|
|
|
|
|
|
|