|
@@ -68,11 +68,11 @@
|
|
<!-- 其它配件 -->
|
|
<!-- 其它配件 -->
|
|
<sticky-section>
|
|
<sticky-section>
|
|
<sticky-header>
|
|
<sticky-header>
|
|
- <view class="nav-right-title flex align_center justify_between" @click="showOther=!showOther">
|
|
|
|
- 其它配件 <text>{{showOther?'隐藏':'展开'}}</text>
|
|
|
|
|
|
+ <view class="nav-right-title flex align_center justify_between">
|
|
|
|
+ 其它配件
|
|
</view>
|
|
</view>
|
|
</sticky-header>
|
|
</sticky-header>
|
|
- <list-view v-if="showOther">
|
|
|
|
|
|
+ <list-view>
|
|
<otherPartItem
|
|
<otherPartItem
|
|
v-for="(item,index) in partList"
|
|
v-for="(item,index) in partList"
|
|
:key="index"
|
|
:key="index"
|
|
@@ -129,7 +129,7 @@
|
|
@afterleave="closeCart">
|
|
@afterleave="closeCart">
|
|
<div class="cpb_cart-box">
|
|
<div class="cpb_cart-box">
|
|
<div class="cpb_close flex align_center justify_center" @click="showCart=false">
|
|
<div class="cpb_close flex align_center justify_center" @click="showCart=false">
|
|
- <uni-icons size="26" type="close"></uni-icons>
|
|
|
|
|
|
+ <uni-icons size="26" type="closeempty"></uni-icons>
|
|
</div>
|
|
</div>
|
|
<div class="cpb_cart-tit">
|
|
<div class="cpb_cart-tit">
|
|
已选配件
|
|
已选配件
|
|
@@ -137,7 +137,9 @@
|
|
<scroll-view type="list" scroll-y="true" class="cpb_cart-list">
|
|
<scroll-view type="list" scroll-y="true" class="cpb_cart-list">
|
|
<view class="nav-right-item flex" v-for="(item, index) in partListData" :key="item.productSn">
|
|
<view class="nav-right-item flex" v-for="(item, index) in partListData" :key="item.productSn">
|
|
<view class="uni-col-2">
|
|
<view class="uni-col-2">
|
|
- <u-image :src="item.images+'?x-oss-process=image/resize,m_fixed,h_75,w_75,color_ffffff'" border-radius="30" width="150" height="150" bg-color="#EBEBEB" ></u-image>
|
|
|
|
|
|
+ <u-image
|
|
|
|
+ :src="item.images ? item.images+'?x-oss-process=image/resize,m_fixed,h_80,w_80,color_ffffff' : '/static/def_imgs.png'"
|
|
|
|
+ border-radius="30" width="150" height="150" bg-color="#EBEBEB" ></u-image>
|
|
</view>
|
|
</view>
|
|
<view class="item-info uni-col-10">
|
|
<view class="item-info uni-col-10">
|
|
<view class="item-name">
|
|
<view class="item-name">
|
|
@@ -173,7 +175,7 @@
|
|
<!-- 去认证 -->
|
|
<!-- 去认证 -->
|
|
<uni-popup ref="showPopup" type="center" :is-mask-click="false">
|
|
<uni-popup ref="showPopup" type="center" :is-mask-click="false">
|
|
<view class="popu-modal">
|
|
<view class="popu-modal">
|
|
- <view class="popu-close" @click="$refs.showPopup.close()"><uni-icons type="close" size="26"></uni-icons></view>
|
|
|
|
|
|
+ <view class="popu-close" @click="$refs.showPopup.close()"><uni-icons type="closeempty" size="26"></uni-icons></view>
|
|
<image width="533" height="415" style="width: 533rpx;height: 415rpx;" src="/static/authimg.jpg"></image>
|
|
<image width="533" height="415" style="width: 533rpx;height: 415rpx;" src="/static/authimg.jpg"></image>
|
|
<view style="padding-top:1rem;" class="flex justify_center">
|
|
<view style="padding-top:1rem;" class="flex justify_center">
|
|
<button @click="toAuthStore()" shape="circle" :style="{background:'#066cff',color:'#fff',width:'350rpx'}">开始认证</button>
|
|
<button @click="toAuthStore()" shape="circle" :style="{background:'#066cff',color:'#fff',width:'350rpx'}">开始认证</button>
|
|
@@ -183,7 +185,7 @@
|
|
<!-- 价格查看 -->
|
|
<!-- 价格查看 -->
|
|
<uni-popup ref="showPriceModal" type="center">
|
|
<uni-popup ref="showPriceModal" type="center">
|
|
<view class="show-price-modal popu-modal" v-if="tempData">
|
|
<view class="show-price-modal popu-modal" v-if="tempData">
|
|
- <view class="popu-close" @click="$refs.showPriceModal.close()"><uni-icons type="close" size="26"></uni-icons></view>
|
|
|
|
|
|
+ <view class="popu-close" @click="$refs.showPriceModal.close()"><uni-icons type="closeempty" size="26"></uni-icons></view>
|
|
<view class="itemlist">
|
|
<view class="itemlist">
|
|
<text>产品编码</text>
|
|
<text>产品编码</text>
|
|
<text>{{tempData.code||'--'}}</text>
|
|
<text>{{tempData.code||'--'}}</text>
|
|
@@ -239,7 +241,7 @@
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- showOther: false,
|
|
|
|
|
|
+ showOther: true,
|
|
showPriceModal: false,
|
|
showPriceModal: false,
|
|
theme: '',
|
|
theme: '',
|
|
vinNumber: '',
|
|
vinNumber: '',
|