From f4f2891ac617aca6e2a5f1dc8f86ba3f054e3392 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 01 八月 2024 08:52:35 +0800
Subject: [PATCH] aa
---
wechat_jiaxuan/pages/detailDis/product.js | 93 +++++++++++++++++++++++++++-------------------
1 files changed, 55 insertions(+), 38 deletions(-)
diff --git a/wechat_jiaxuan/pages/detailDis/product.js b/wechat_jiaxuan/pages/detailDis/product.js
index dabc25d..beb90e7 100644
--- a/wechat_jiaxuan/pages/detailDis/product.js
+++ b/wechat_jiaxuan/pages/detailDis/product.js
@@ -1,42 +1,69 @@
import {
- shareContent,
getProductInfo,
- actionDo
+ actionDo,
+ getMemberInfo
} from '../../api/index'
+import { eventBus } from '../../utils/eventBus'
Page({
-
/**
* 椤甸潰鐨勫垵濮嬫暟鎹�
*/
data: {
bottomLift: 0,
+ current: 0,
id: '',
origin: '',
+ isFold: false,
info: {},
member: {},
showShare: false
},
- /**
- * 鐢熷懡鍛ㄦ湡鍑芥暟--鐩戝惉椤甸潰鍔犺浇
- */
- onLoad(options) {
- var app = getApp().globalData
- this.setData({
- bottomLift: app.bottomLift
- })
- if(options.origin && options.origin == 'b'){
- this.setData({ origin: 'b' })
- }
+ changeFold() {
+ this.setData({ isFold: !this.data.isFold })
+ },
+ onLoadLogin(options) {
this.getDetail(options.id, options.userId || '')
actionDo({
actionType: 'view',
id: options.id
})
- const member = wx.getStorageSync('member')
+ const member = wx.getStorageSync('member') || {}
+ if(!member.id){
+ getMemberInfo().then(res => {
+ this.setData({
+ member: res.data
+ })
+ })
+ }
+ },
+ onShow() {
+ const member = wx.getStorageSync('member') || {}
+ if(member && member.id){
+ this.setData({
+ member
+ })
+ }
+ },
+ onUnload() {
+ console.log('璇︽儏杩涜浜嗛攢姣�');
+ setTimeout(() => {
+ eventBus.emit('productDeBack', this.data.info)
+ }, 500)
+ },
+ onLoad(options) {
+ var app = getApp().globalData
this.setData({
- id: options.id,
- member
+ bottomLift: app.bottomLift
})
+ if (options.origin && options.origin == 'b') {
+ this.setData({ origin: 'b' })
+ }
+ this.setData({
+ id: options.id
+ })
+ },
+ bindchange(e) {
+ this.setData({ current: e.detail.current })
},
priviewBanner(e) {
const url = e.currentTarget.dataset.url
@@ -44,7 +71,7 @@
info
} = this.data
wx.previewImage({
- urls: info.imageurlList,
+ urls: info.bannerImgList,
current: url
})
},
@@ -54,16 +81,15 @@
info
} = this.data
wx.previewImage({
- urls: info.imageurlList,
+ urls: info.spaceList.map(i => i.spaceImg),
current: url
})
},
handleAction(e) {
const actionType = e.currentTarget.dataset.code
const {
- info
+ info, member
} = this.data
- const member = wx.getStorageSync('member')
if (member.authStatus == '0') {
return wx.navigateTo({
url: '/pages/auth/auth',
@@ -79,6 +105,7 @@
})
wx.showToast({
title: actionType == 'collect' ? '鏀惰棌鎴愬姛' : '鍙栨秷鏀惰棌',
+ icon: "none"
})
})
},
@@ -124,7 +151,6 @@
})
},
handleShare() {
- console.log('鐐瑰嚮浜嗗垎浜�');
actionDo({
actionType: 'share',
id: this.data.info.id
@@ -133,13 +159,13 @@
// this.setData({showShare: false})
// })
},
- // onShareAppMessage: function () {
- // // let { productDetail, userInfo } = this.data
- // return {
- // title: productDetail.title,
- // path: '/pages/index/index?id=' + productDetail.id + '&shareuserid=' + userInfo.id + '&type=0'
- // }
- // },
+ onShareAppMessage: function () {
+ let { info } = this.data
+ console.log('鐐瑰嚮浜嗗垎浜�')
+ return {
+ path: '/pages/detailDis/product?id=' + info.id + '&userId=' + info.users.id
+ }
+ },
onClose() {
this.setData({
showShare: false
@@ -187,9 +213,6 @@
onHide() {
},
- onUnload() {
-
- },
onPullDownRefresh() {
},
@@ -197,10 +220,4 @@
},
- /**
- * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜�
- */
- onShareAppMessage() {
-
- }
})
\ No newline at end of file
--
Gitblit v1.9.3