|
@@ -2,10 +2,12 @@
|
|
|
<mobile-frame>
|
|
|
<view class="main">
|
|
|
<view class="onemain">
|
|
|
- <scroll-view scroll-y="true" class="scroll-view" scroll-with-animation :scroll-into-view="topItem" @scroll="handleScroll">
|
|
|
+ <scroll-view scroll-y="true" class="scroll-view" scroll-with-animation :scroll-into-view="topItem"
|
|
|
+ @scroll="handleScroll">
|
|
|
<view class="list-scroll-view" id="top">
|
|
|
<view class="one">
|
|
|
- <swiper class="swiper" circular :indicator-dots="true" indicator-color="#ffffff" indicator-active-color="#FB1438" :autoplay="true" :interval="3000" :duration="1000">
|
|
|
+ <swiper class="swiper" circular :indicator-dots="true" indicator-color="#ffffff"
|
|
|
+ indicator-active-color="#FB1438" :autoplay="true" :interval="3000" :duration="1000">
|
|
|
<swiper-item class="list" v-for="(item,index) in bannerList" :key="index">
|
|
|
<image class="image" :src="item.url" mode="aspectFit">
|
|
|
</image>
|
|
@@ -72,7 +74,8 @@
|
|
|
</scroll-view>
|
|
|
</view>
|
|
|
<view class="foot">
|
|
|
- <uni-goods-nav :options="options" :button-group="buttonGroup" @click="onClick" @buttonClick="buttonClick" />
|
|
|
+ <uni-goods-nav :options="options" :button-group="buttonGroup" @click="onClick"
|
|
|
+ @buttonClick="buttonClick" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="collect">
|
|
@@ -83,7 +86,8 @@
|
|
|
<text @click="toMenu" class="iconfont icon-gengduo"></text>
|
|
|
</view>
|
|
|
<view class="menu_1" v-if="menu">
|
|
|
- <view class="title" v-for="(item,index) in barList" :key="index" @click="toPath(item)" v-if="item.is_use=='0'">
|
|
|
+ <view class="title" v-for="(item,index) in barList" :key="index" @click="toPath(item)"
|
|
|
+ v-if="item.is_use=='0'">
|
|
|
<image class="image" :src="item.normal&&item.normal.length>0?item.normal[0].url:''"></image>
|
|
|
<view class="name">{{item.name}}</view>
|
|
|
</view>
|
|
@@ -94,7 +98,8 @@
|
|
|
<uni-popup ref="popup" background-color="#fff" type="bottom">
|
|
|
<view class="content">
|
|
|
<view class="one">
|
|
|
- <image class="image" v-if="specsInfo.file&&specsInfo.file.length>0" :src="specsInfo.file&&specsInfo.file.length>0?specsInfo.file[0].url:''"></image>
|
|
|
+ <image class="image" v-if="specsInfo.file&&specsInfo.file.length>0"
|
|
|
+ :src="specsInfo.file&&specsInfo.file.length>0?specsInfo.file[0].url:''"></image>
|
|
|
<image class="image" v-else :src="info.file&&info.file.length>0?info.file[0].url:''"></image>
|
|
|
<view class="other">
|
|
|
<view class="money">
|
|
@@ -112,14 +117,16 @@
|
|
|
<view class="two">
|
|
|
<view class="two_1">规格</view>
|
|
|
<view class="two_2">
|
|
|
- <text v-for="(item,index) in specs" :key="index" @click="toStyle(item,index)" :class="{ 'style': isActive==index}">{{item.name}}
|
|
|
+ <text v-for="(item,index) in specs" :key="index" @click="toStyle(item,index)"
|
|
|
+ :class="{ 'style': isActive==index}">{{item.name}}
|
|
|
</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="thr">
|
|
|
<text>数量</text>
|
|
|
<view class="count">
|
|
|
- <uni-number-box :min="1" :max="specsInfo.num" :disabled="disabled" v-model="num" @change="toCount">
|
|
|
+ <uni-number-box :min="1" :max="specsInfo.num" :disabled="disabled" v-model="num"
|
|
|
+ @change="toCount">
|
|
|
</uni-number-box>
|
|
|
</view>
|
|
|
<text>库存{{specsInfo.num||0}}</text>
|
|
@@ -128,7 +135,8 @@
|
|
|
<text @click="toBuy(type)" :class="{ 'button': specsInfo._id&&specsInfo.can_group=='0'&&type=='1'}">
|
|
|
{{type=='0'?'加入购物车':'立即购买'}}
|
|
|
</text>
|
|
|
- <text v-if="specsInfo._id&&specsInfo.can_group=='0'&&type=='1'" @click="toGroup" class="button2">参团</text>
|
|
|
+ <text v-if="specsInfo._id&&specsInfo.can_group=='0'&&type=='1'" @click="toGroup"
|
|
|
+ class="button2">参团</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</uni-popup>
|
|
@@ -454,6 +462,7 @@
|
|
|
if (data.specs.length > 0) {
|
|
|
that.$set(that, `specsInfo`, data.specs[0])
|
|
|
that.$set(that, `isActive`, 0)
|
|
|
+ that.disabled = false;
|
|
|
}
|
|
|
that.$set(that, `bannerList`, data.goods.file)
|
|
|
let con = await that.$api(`/goodsRate`, `GET`, {
|