2、购物车列表点击管理 点击收藏功能去掉 3、下单点击积分抵扣没反应 4、待收货 列表查看物流点击没反应,详情查看物流可以点 5、添加地址选择地区无效 6、个人中心我的余额点进去点击账单记录一直正在加载中,点击下全部就出来了,应该你没带默认参数 8、订单点击评价没反应 9、小程序订单核销没上 你那边先根据路径判断隐藏下 10、我的推广,里面样式有问题,点击海报里面空白 11、分类点击 会分类Tab页分类一级比一级低 12、拼团详情客服功能隐藏去掉,其他地方有客服功能的都去掉
49 lines
1.4 KiB
Vue
49 lines
1.4 KiB
Vue
<template>
|
|
<view class="orderGoods">
|
|
<view class="total">共{{ cartInfo.length }}件商品</view>
|
|
<view class="goodWrapper">
|
|
<view class="item acea-row row-between-wrapper" v-for="cart in cartInfo" :key="cart.id">
|
|
<view class="pictrue">
|
|
<image :src="cart.productInfo.image" class="image" />
|
|
</view>
|
|
<view class="text">
|
|
<view class="acea-row row-between-wrapper">
|
|
<view class="name line1">{{ cart.productInfo.storeName }}</view>
|
|
<view class="num">x {{ cart.cartNum }}</view>
|
|
</view>
|
|
<view
|
|
class="attr line1"
|
|
v-if="cart.productInfo.attrInfo"
|
|
>{{ cart.productInfo.attrInfo.suk }}</view>
|
|
<view class="money font-color-red">¥{{ cart.truePrice }}</view>
|
|
<view class="evaluate" v-if="evaluate == 3" @click="routerGo(cart)">评价</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "OrderGoods",
|
|
props: {
|
|
evaluate: Number,
|
|
cartInfo: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
},
|
|
data: function() {
|
|
return {};
|
|
},
|
|
mounted: function() {},
|
|
methods: {
|
|
routerGo(cart) {
|
|
this.$yrouter.push({
|
|
path: "/pages/shop/GoodsEvaluate/index",
|
|
query: { id: cart.unique }
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|