show price 8.12
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<view class="container">
|
||||
<view class="item-box" v-for="(item, index) in articleList" :key="index" @click="toDetailsPage(item.article_id)">
|
||||
<view class="video-item" v-if="item">
|
||||
<image class="head" :src="item.article_pic" mode="scaleToFill" v-if="item.type == 1"></image>
|
||||
<image class="head" :src="item.article_pic" mode="aspectFill" v-if="item.type == 1"></image>
|
||||
<view class="header_fist" v-else>
|
||||
<view class="backes"></view>
|
||||
<image class="head" :src="item.article_pic"></image>
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
.backes{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
background: rgba(0,0,0,0.6);
|
||||
// background: rgba(0,0,0,0.6);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
|
||||
@@ -20,12 +20,12 @@
|
||||
</view>
|
||||
<view class="info-goods">
|
||||
<view class="goods-store">
|
||||
<view class="stoer-title">
|
||||
<view class="stoer-title" @click="viewStoreDetails(orderInfo.extend_store.store_id)">
|
||||
<image :src="orderInfo.extend_store.store_avatar" class="store-image"></image>
|
||||
<view class="store-name">{{ orderInfo.extend_store.store_name }}</view>
|
||||
<image src="../static/mine/21.png" class="right-icon"></image>
|
||||
</view>
|
||||
<view v-for="goods in orderInfo.extend_order_goods" :key="goods.goods_id">
|
||||
<view v-for="goods in orderInfo.extend_order_goods" :key="goods.goods_id" @click="viewGoodsDetails(goods.goods_id)">
|
||||
<view class="store-goods">
|
||||
<image :src="goods.goods_image"></image>
|
||||
<view class="goods-info">
|
||||
@@ -118,6 +118,10 @@ export default {
|
||||
text: '拼团中',
|
||||
image: '../static/mine/37.png',
|
||||
},
|
||||
'9': {
|
||||
text: '已取消',
|
||||
image: '../static/mine/33.png',
|
||||
},
|
||||
},
|
||||
orderInfo: {},
|
||||
oid: '',
|
||||
@@ -166,11 +170,27 @@ export default {
|
||||
case 9:
|
||||
state = '8';
|
||||
break;
|
||||
case 10:
|
||||
state = '9';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
this.orderstate = state;
|
||||
},
|
||||
viewStoreDetails(id) {
|
||||
this.$u.route('pageC/merchant/index', {
|
||||
id: id
|
||||
});
|
||||
},
|
||||
viewGoodsDetails(id) {
|
||||
this.$u.route({
|
||||
url: 'pageB/sdetails/index',
|
||||
params: {
|
||||
id: id,
|
||||
}
|
||||
})
|
||||
},
|
||||
setSpikeTime(time) {
|
||||
// console.log(time);
|
||||
this.timer = setInterval(() => {
|
||||
|
||||
Reference in New Issue
Block a user