Commit 7fdcdfde authored by 华国豪's avatar 华国豪 🙄

兑换商城,商品详情

parent f3348843
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 1; -webkit-line-clamp: 1;
overflow: hidden; overflow: hidden;
cursor: pointer;
} }
.shoppingMall .content .item .bottom{ .shoppingMall .content .item .bottom{
background-color: white; background-color: white;
...@@ -181,7 +182,7 @@ ...@@ -181,7 +182,7 @@
<div class="img_box"> <div class="img_box">
<img :src="item.imgs[0]" alt=""> <img :src="item.imgs[0]" alt="">
</div> </div>
<span class="info" :title="item.name">{{item.name}}</span> <span class="info" @click="goDetails(item.id)" :title="item.name">{{item.name}}</span>
<span class="_d">可兑换:<span>{{item.residue}}</span></span> <span class="_d">可兑换:<span>{{item.residue}}</span></span>
</div> </div>
<div class="bottom"> <div class="bottom">
...@@ -200,7 +201,6 @@ ...@@ -200,7 +201,6 @@
<span v-if="item.residue < 1" class="no_dui">兑换</span> <span v-if="item.residue < 1" class="no_dui">兑换</span>
<span v-else @click="setExchangeGoods(item.id)">兑换</span> <span v-else @click="setExchangeGoods(item.id)">兑换</span>
</template> </template>
</div> </div>
</div> </div>
</el-col> </el-col>
...@@ -219,6 +219,10 @@ export default { ...@@ -219,6 +219,10 @@ export default {
hoverBank: 1, hoverBank: 1,
} }
},methods:{ },methods:{
// 跳转商品详情
goDetails: function (id) {
this.$router.push({ path: 'productDetail', query: {id: id}})
},
// 兑换 // 兑换
setExchangeGoods: function (goodsId) { setExchangeGoods: function (goodsId) {
let msg = { let msg = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment