Commit 00dd0f7c authored by 786817560's avatar 786817560

'收藏和取消'

parent 03593a4d
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-10-22 20:26:28 * @Date: 2019-10-22 20:26:28
* @LastEditTime: 2019-10-24 12:28:54 * @LastEditTime: 2019-10-25 16:02:57
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \hls-xcmg-vue-app\src\pages\myProductCollection\my-product-list.Vue * @FilePath: \hls-xcmg-vue-app\src\pages\myProductCollection\my-product-list.Vue
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
</div> </div>
</div> </div>
<list-item v-for="item in productList" :key="item.product_id"> <list-item v-for="item in productList" :key="item.product_id">
<item :proportion="[1,4]" @click.native="goDetailed(item.product_id,item.collect_status)"> <item :proportion="[1,4]" @click.native="goDetailed(item.product_id,item.collect_status,item.bp_id)">
<div slot="name" class="item-pic"> <div slot="name" class="item-pic">
<img src="@/assets/homePage/WechatIMG2 Copy@2x.png" alt=""> <img src="@/assets/homePage/WechatIMG2 Copy@2x.png" alt="">
</div> </div>
...@@ -71,9 +71,9 @@ export default { ...@@ -71,9 +71,9 @@ export default {
}, },
beforeRouteEnter (to, from, next) { beforeRouteEnter (to, from, next) {
next(vm => { next(vm => {
if (from.name === 'MyInfo') { // if (from.name === 'MyInfo') {
vm.getList() vm.getList()
} // }
}) })
}, },
methods: { methods: {
...@@ -92,12 +92,13 @@ export default { ...@@ -92,12 +92,13 @@ export default {
}) })
}, },
// val:产品id, status: 收藏状态 // val:产品id, status: 收藏状态
goDetailed (val, status) { // 进入产品查询功能明细页面 goDetailed (val, status, bp_id) { // 进入产品查询功能明细页面
window.sessionStorage.setItem('collect_status', status) window.sessionStorage.setItem('collect_status', status)
this.$router.push({ this.$router.push({
name: 'ProDetailed', name: 'ProDetailed',
params: { params: {
product_id: val, product_id: val,
bp_id: bp_id,
// collect_status: status, // collect_status: status,
}, },
}) })
......
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