const app = getApp(); Page({ pid: '', onLoad: function (options) { this.pid = options.id; var that = this; app.showLoading(); app.request('product.api.view', {id: this.pid}, { success: function (data, res) { app.html('content', data.product.content, that); }, complete: function(res){ app.hideLoading(); } }) }, /** * 跳转海报分享页面,分享海报 */ toShare: function(){ if(app.isLogin()){ app.location('poster/index?id=' + this.pid); }else{ app.location('login/index'); } }, /** * 立即购买 */ doBuy: function(e){ var that = this; if(app.isLogin()){ app.request('product.api.addCarts', {product_id: this.pid, num: 1}, { success: function (data, res) { app.location('carts/index?id=' + that.pid); } }) } else { app.location('login/index'); } } })