| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865 |
- // pages/product-con/index.js
- var app = getApp();
- var wxh = require('../../utils/wxh.js');
- var WxParse = require('../../wxParse/wxParse.js');
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- storeImage: '',//海报产品图
- PromotionCode: '',//二维码图片
- canvasStatus: false,//海报绘图标签
- posterImage:'',//海报路径
- posterImageStatus:false,
- attrName:'',
- attr:'选择商品属性',
- attrValue:'',
- url: app.globalData.urlImages,
- storeInfo: [],
- storeKeyWord:[],
- similarity: [],
- productAttr: [],
- productValue: [],
- productSelect:[
- { image: "" },
- { store_name: "" },
- { price: 0 },
- { unique: "" },
- { stock: 0 },
- ],
- reply: [],
- replyCount:0,
- description:'',
- collect:false,//是否收藏
- indicatorDots: true,//是否显示面板指示点;
- autoplay: true,//是否自动播放;
- interval: 3000,//动画间隔的时间;
- duration: 500,//动画播放的时长;
- indicatorColor: "rgba(51, 51, 51, .3)",
- indicatorActivecolor: "#ffffff",
- id:0,
- num: 1,
- show: false,
- prostatus: false,
- CartCount:0,
- status:0,
- actionSheetHidden:true,
- },
- setTouchMove: function (e) {
- var that = this;
- wxh.home(that, e);
- },
- goPhone: function () {
- wx.request({
- url: app.globalData.url + '/routine/auth_api/get_site_phone?uid=' + app.globalData.uid,
- method: 'GET',
- success: function (res) {
- wx.makePhoneCall({
- phoneNumber: res.data.msg,
- })
- }
- })
- },
- setNumber:function(e){
- var that = this;
- var num = parseInt(e.detail.value);
- that.setData({
- num: num ? num : 1
- })
- },
- goCoupon:function(){
- wx.navigateTo({
- url: "/pages/coupon-status/coupon-status"
- })
- },
- getAttrInfo:function(){
- var that = this;
- wxh.footan(that);
- that.setData({
- status:1
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var that = this;
- var pages = getCurrentPages();
- if (pages.length != 2 && !options.hasOwnProperty('id')) return false;
- app.globalData.openPages = '/pages/product-con/index?id=' + options.id + '&scene=' + app.globalData.uid;
- app.setBarColor();
- that.setData({ id: options.id });
- that.getProductInfo();
- },
- getProductInfo:function(){
- var that = this;
- var header = { 'content-type': 'application/x-www-form-urlencoded' };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/details?uid=' + app.globalData.uid,
- method: 'POST',
- data: { id: that.data.id },
- header: header,
- success: function (res) {
- if (res.data.code == 200) {
- var image = "productSelect.image";
- var store_name = "productSelect.store_name";
- var price = "productSelect.price";
- var unique = "productSelect.unique";
- var stock = "productSelect.stock";
- that.setData({
- storeInfo: res.data.data.storeInfo,
- storeKeyWord: res.data.data.storeInfo.keyword.split(","),
- similarity: res.data.data.similarity,
- productAttr: res.data.data.productAttr,
- productValue: res.data.data.productValue,
- reply: res.data.data.reply,
- replyCount: res.data.data.replyCount,
- description: res.data.data.storeInfo.description,
- collect: res.data.data.storeInfo.userCollect,
- [image]: res.data.data.storeInfo.image,
- [stock]: res.data.data.storeInfo.stock,
- [store_name]: res.data.data.storeInfo.store_name,
- [price]: res.data.data.storeInfo.price,
- [unique]: ''
- })
- that.getCartCount();
- that.downloadFilestoreImage();
- that.downloadFilePromotionCode();
- WxParse.wxParse('description', 'html', that.data.description, that, 0);
- } else {
- if (app.globalData.uid == null) {//是否存在用户信息,如果不存在跳转到首页
- setTimeout(function () { wx.navigateTo({ url: '/pages/loading/loading' }) }, 1500)
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 1000
- });
- setTimeout(function () { wx.navigateBack({}); }, 1200);
- }
- }
- }
- })
- },
- listenerActionSheet: function () {
- this.setData({
- actionSheetHidden: !this.data.actionSheetHidden
- })
- },
- // 保存海报图片
- savePosterPath: function () {
- var that = this;
- wx.getSetting({
- success(res) {
- if (!res.authSetting['scope.writePhotosAlbum']) {
- wx.authorize({
- scope: 'scope.writePhotosAlbum',
- success() {
- wx.saveImageToPhotosAlbum({
- filePath: that.data.posterImage,
- success: function (res) {
- that.posterImageClose();
- wx.showToast({
- title: '保存成功',
- icon: 'success',
- duration: 1500,
- })
- },
- fail: function (res) {
- wx.showToast({
- title: '保存失败',
- icon: 'none',
- duration: 1500,
- })
- },
- complete: function (res) { },
- })
- }
- })
- } else {
- wx.saveImageToPhotosAlbum({
- filePath: that.data.posterImage,
- success: function (res) {
- that.posterImageClose();
- wx.showToast({
- title: '保存成功',
- icon: 'success',
- duration: 1500,
- })
- },
- fail: function (res) {
- wx.showToast({
- title: '保存失败',
- icon: 'none',
- duration: 1500,
- })
- },
- complete: function (res) { },
- })
- }
- }
- })
- },
- //生成海报获取文字
- textByteLength: function(text, num) { // text为传入的文本 num为单行显示的字节长度
- let strLength = 0;
- let rows = 1;
- let str = 0;
- let arr = [];
- for (let j = 0; j < text.length; j++) {
- if (text.charCodeAt(j) > 255) {
- strLength += 2;
- if (strLength > rows * num) {
- strLength++;
- arr.push(text.slice(str, j));
- str = j;
- rows++;
- }
- } else {
- strLength++;
- if (strLength > rows * num) {
- arr.push(text.slice(str, j));
- str = j;
- rows++;
- }
- }
- }
- arr.push(text.slice(str, text.length));
- return [strLength, arr, rows] // [处理文字的总字节长度,每行显示内容的数组,行数]
- },
- //隐藏海报
- posterImageClose: function () {
- this.setData({
- posterImageStatus: false,
- })
- },
- //替换安全域名
- setDomain:function(url){
- if(url.indexOf("https://") > -1) return url;
- else return url.replace('http://','https://');
- },
- //获取海报产品图
- downloadFilestoreImage:function(){
- var that = this;
- wx.downloadFile({
- url: that.setDomain(that.data.storeInfo.image),
- success: function (res) {
- that.setData({
- storeImage : res.tempFilePath
- })
- }
- });
- },
- //获取产品分销二维码
- downloadFilePromotionCode:function(){
- var that = this;
- wx.request({
- url: app.globalData.url + '/routine/auth_api/product_promotion_routine_code?uid=' + app.globalData.uid,
- method: 'GET',
- data: { id: that.data.id, },
- success: function (res) {
- if (res.data.code == 200) {
- wx.downloadFile({
- url: that.setDomain(res.data.msg),
- success: function (res) {
- that.setData({
- PromotionCode: res.tempFilePath
- })
- }
- });
- }else{
- that.setData({
- PromotionCode: ''
- })
- }
- }
- });
- },
- //生成海报
- goPoster:function(){
- var that = this;
- wx.showLoading({
- title: '海报生成中',
- mask: true,
- })
- that.setData({ canvasStatus: true });
- const arr2 = ['/images/posterbackgd.png', that.data.storeImage, that.data.PromotionCode];
- if (arr2[2] == '') {
- wx.request({
- url: app.globalData.url + '/routine/auth_api/product_promotion_code?uid=' + app.globalData.uid,
- method: 'GET',
- data: { id: that.data.id, },
- success: function (res) {
- if (res.data.code == 200) {
- const msgPromotionCode = res.data.msg;
- const ctx = wx.createCanvasContext('myCanvas');
- ctx.clearRect(0, 0, 0, 0);
- wx.downloadFile({
- url: that.setDomain(msgPromotionCode),
- success: function (res) {
- arr2[2] = res.tempFilePath;
- wx.getImageInfo({
- src: arr2[0],
- success: function (res) {
- const WIDTH = res.width;
- const HEIGHT = res.height;
- ctx.drawImage(arr2[0], 0, 0, WIDTH, HEIGHT);
- ctx.drawImage(arr2[1], 0, 0, WIDTH, WIDTH);
- ctx.save();
- let r = 90;
- let d = r * 2;
- let cx = 40;
- let cy = 990;
- ctx.arc(cx + r, cy + r, r, 0, 2 * Math.PI);
- ctx.clip();
- ctx.drawImage(arr2[2], cx, cy, d, d);
- ctx.restore();
- const CONTENT_ROW_LENGTH = 40;
- let [contentLeng, contentArray, contentRows] = that.textByteLength(that.data.storeInfo.store_name, CONTENT_ROW_LENGTH);
- ctx.setTextAlign('center')
- ctx.setFontSize(32);
- let contentHh = 32 * 1.3;
- for (let m = 0; m < contentArray.length; m++) {
- ctx.fillText(contentArray[m], WIDTH / 2, 820 + contentHh * m);
- }
- ctx.setTextAlign('center')
- ctx.setFontSize(48);
- ctx.setFillStyle('red');
- ctx.fillText('¥' + that.data.storeInfo.price, WIDTH / 2, 860 + contentHh);
- ctx.draw(true, function () {
- wx.canvasToTempFilePath({
- canvasId: 'myCanvas',
- fileType: 'png',
- destWidth: WIDTH,
- destHeight: HEIGHT,
- success: function (res) {
- wx.hideLoading();
- that.setData({
- posterImage: res.tempFilePath,
- posterImageStatus: true,
- canvasStatus: false,
- actionSheetHidden: !that.data.actionSheetHidden
- })
- }
- })
- });
- },
- })
- }
- });
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 1500,
- mask: true,
- })
- }
- }
- });
- }else{
- const ctx = wx.createCanvasContext('myCanvas');
- ctx.clearRect(0, 0, 0, 0);
- wx.getImageInfo({
- src: arr2[0],
- success: function (res) {
- const WIDTH = res.width;
- const HEIGHT = res.height;
- ctx.drawImage(arr2[0], 0, 0, WIDTH, HEIGHT);
- ctx.drawImage(arr2[1], 0, 0, WIDTH, WIDTH);
- ctx.save();
- let r = 90;
- let d = r * 2;
- let cx = 40;
- let cy = 990;
- ctx.arc(cx + r, cy + r, r, 0, 2 * Math.PI);
- ctx.clip();
- ctx.drawImage(arr2[2], cx, cy, d, d);
- ctx.restore();
- const CONTENT_ROW_LENGTH = 40;
- let [contentLeng, contentArray, contentRows] = that.textByteLength(that.data.storeInfo.store_name, CONTENT_ROW_LENGTH);
- ctx.setTextAlign('center')
- ctx.setFontSize(32);
- let contentHh = 32 * 1.3;
- for (let m = 0; m < contentArray.length; m++) {
- ctx.fillText(contentArray[m], WIDTH / 2, 820 + contentHh * m);
- }
- ctx.setTextAlign('center')
- ctx.setFontSize(48);
- ctx.setFillStyle('red');
- ctx.fillText('¥' + that.data.storeInfo.price, WIDTH / 2, 860 + contentHh);
- ctx.draw(true, function () {
- wx.canvasToTempFilePath({
- canvasId: 'myCanvas',
- fileType: 'png',
- destWidth: WIDTH,
- destHeight: HEIGHT,
- success: function (res) {
- wx.hideLoading();
- that.setData({
- posterImage: res.tempFilePath,
- posterImageStatus: true,
- canvasStatus: false,
- actionSheetHidden: !that.data.actionSheetHidden
- })
- }
- })
- });
- },
- })
- }
- },
- parameterShow: function () {
- var that = this;
- if (that.data.productSelect.unique != ''){
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/set_cart?uid=' + app.globalData.uid,
- method: 'GET',
- data: {
- productId: that.data.id,
- cartNum: that.data.num,
- uniqueId: that.data.productSelect.unique
- },
- header: header,
- success: function (res) {
- if (res.data.code == 200) {
- wx.showToast({
- title: '添加购物车成功',
- icon: 'success',
- duration: 2000
- })
- that.setData({
- prostatus: false
- })
- that.getCartCount();
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 2000
- })
- }
- }
- })
- } else {
- wxh.footan(that);
- that.setData({
- status: 2
- })
- }
- },
- goOrder: function () {
- var that = this;
- if (that.data.productSelect.unique != '') {
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/now_buy?uid=' + app.globalData.uid,
- method: 'GET',
- data: {
- productId: that.data.id,
- cartNum: that.data.num,
- uniqueId: that.data.productSelect.unique
- },
- header: header,
- success: function (res) {
- if (res.data.code == 200) {
- wx.navigateTo({ //跳转至指定页面并关闭其他打开的所有页面(这个最好用在返回至首页的的时候)
- url: '/pages/order-confirm/order-confirm?id=' + res.data.data.cartId
- })
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 2000
- })
- }
- }
- })
- } else {
- wxh.footan(that);
- that.setData({
- status: 3
- })
- }
- },
- modelbg: function (e) {
- this.setData({
- prostatus: false
- })
- },
- bindMinus: function () {
- var that = this;
- wxh.carmin(that)
- },
- bindPlus: function () {
- var that = this;
- wxh.carjia(that);
- },
- tapsize: function (e) {
- var that = this;
- var key = e.currentTarget.dataset.key;
- var attrValues = [];
- var attrName = that.data.attrName;
- var attrNameArr = attrName.split(",");
- var array = that.data.productAttr;
- for (var i in that.data.productAttr){
- for (var j in that.data.productAttr[i]['attr_values']){
- if (that.data.productAttr[i]['attr_values'][j] == key){
- attrValues = that.data.productAttr[i]['attr_values'];
- }
- }
- }
- for (var ii in attrNameArr) {
- if (that.in_array(attrNameArr[ii],attrValues)){
- attrNameArr.splice(ii, 1);
- }
- }
- attrName = attrNameArr.join(',');
- if (attrName) var eName = e.currentTarget.dataset.key + ',' + attrName;
- else var eName = e.currentTarget.dataset.key;
- attrNameArr = eName.split(",");
- var isBool = false;
- var isattrNameArrLength = 0;
- for (var an in attrNameArr) {
- if (attrNameArr[an]) isattrNameArrLength = isattrNameArrLength + 1;
- }
- for (var b in that.data.productValue) {
- var sukValue = that.data.productValue[b].suk.split(",");
- if (sukValue.length == isattrNameArrLength) {
- if (that.in_array_two(attrNameArr, sukValue)) {
- isBool = true;
- }
- } else {
- isBool = true;
- }
- }
- if (!isBool){
- wx.showToast({
- title: '属性不存在,请重新选择',
- icon: 'none',
- duration: 1500,
- })
- } else {
- that.setData({
- attrName: e.currentTarget.dataset.key + ',' + attrName
- })
- attrNameArr = that.data.attrName.split(",");
- var attrNameArrSort = '';
- for (var jj in that.data.productAttr) {
- for (var jjj in that.data.productAttr[jj]['attr_values']) {
- if (that.in_array(that.data.productAttr[jj]['attr_values'][jjj], attrNameArr)) {
- attrNameArrSort += that.data.productAttr[jj]['attr_values'][jjj] + ',';
- }
- }
- }
- for (var jj in array) {
- for (var jjj in array[jj]['attr_values']) {
- if (that.in_array(array[jj]['attr_values'][jjj], attrNameArr)) {
- array[jj]['attr_value'][jjj].check = true;
- } else {
- array[jj]['attr_value'][jjj].check = false;
- }
- }
- }
- that.setData({
- productAttr: array
- })
- var attrNameArrSortArr = attrNameArrSort.split(",");
- attrNameArrSortArr.pop();
- that.setData({
- attrName: attrNameArrSortArr.join(',')
- })
- var arrAttrName = that.data.attrName.split(",");
- for (var index in that.data.productValue) {
- var strValue = that.data.productValue[index]['suk'];
- var arrValue = strValue.split(",");
- if (that.in_array_two(arrValue, arrAttrName)) {
- var image = "productSelect.image";
- var store_name = "productSelect.store_name";
- var price = "productSelect.price";
- var unique = "productSelect.unique";
- var stock = "productSelect.stock";
- that.setData({
- [image]: that.data.productValue[index]['image'],
- [price]: that.data.productValue[index]['price'],
- [unique]: that.data.productValue[index]['unique'],
- [stock]: that.data.productValue[index]['stock'],
- })
- }
- }
- }
- },
- in_array_two:function(arr1,arr2){
- if (arr1.sort().toString() == arr2.sort().toString()) {
- return true;
- }
- else {
- return false;
- }
- },
- in_array: function (str, arr) {
- for (var f1 in arr) {
- if (arr[f1] == str) {
- return true;
- }
- }
- },
- tapcolor: function (e) {
- var that = this;
- wxh.tapcolor(that, e);
- },
- subBuy:function(e){
- wx.request({
- url: app.globalData.url + '/routine/auth_api/get_form_id?uid=' + app.globalData.uid,
- method: 'GET',
- data: {
- formId: e.detail.formId
- },
- success: function (res) {}
- })
- var that = this;
- if (that.data.num > that.data.productSelect.stock){
- wx.showToast({
- title: '库存不足' + that.data.num,
- icon: 'none',
- duration: 2000
- })
- that.setData({
- num: that.data.productSelect.stock,
- })
- } else if (that.data.productAttr.length > 0 && that.data.productSelect.unique == '') {
- wx.showToast({
- title: '请选择属性',
- icon: 'none',
- duration: 2000
- })
- }else{
- if (that.data.status == 1){
- var attrValueData = [];
- for (var i in that.data.productValue){
- if (that.data.productValue[i].unique == that.data.productSelect.unique) {
- for (var j in that.data.productAttr) {
- for (var k in that.data.productAttr[j].attr_values) {
- var sukArr = that.data.productValue[i].suk.split(',');
- if (that.in_array(that.data.productAttr[j].attr_values[k], sukArr)){
- attrValueData.push(that.data.productAttr[j].attr_name + ':' + that.data.productAttr[j].attr_values[k]) ;
- }
- }
- }
- }
- }
- that.setData({
- attr:'已选',
- attrValue: attrValueData.join(','),
- prostatus: false
- })
- }else if (that.data.status == 2) {
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/set_cart?uid=' + app.globalData.uid,
- method: 'GET',
- data: {
- productId: that.data.id,
- cartNum: that.data.num,
- uniqueId: that.data.productSelect.unique
- },
- header: header,
- success: function (res) {
- if (res.data.code == 200) {
- wx.showToast({
- title: '添加购物车成功',
- icon: 'success',
- duration: 2000
- })
- that.setData({
- prostatus: false
- })
- that.getCartCount();
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 2000
- })
- }
- }
- })
- } else if (that.data.status == 3){
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/now_buy?uid=' + app.globalData.uid,
- method: 'GET',
- data: {
- productId: that.data.id,
- cartNum: that.data.num,
- uniqueId: that.data.productSelect.unique
- },
- header: header,
- success: function (res) {
- if (res.data.code == 200) {
- wx.navigateTo({ //跳转至指定页面并关闭其他打开的所有页面(这个最好用在返回至首页的的时候)
- url: '/pages/order-confirm/order-confirm?id=' + res.data.data.cartId
- })
- } else {
- wx.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 2000
- })
- }
- }
- })
- }
- }
- },
- getCartCount:function(){
- var that = this;
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/get_cart_num?uid=' + app.globalData.uid,
- method: 'POST',
- header: header,
- success: function (res) {
- that.setData({
- CartCount: res.data.data
- })
- }
- })
- },
- setCollect:function(){
- if (this.data.collect) this.unCollectProduct();
- else this.collectProduct();
- },
- unCollectProduct: function () {
- var that = this;
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/uncollect_product?uid=' + app.globalData.uid,
- method: 'POST',
- header: header,
- data: {
- productId: that.data.id
- },
- success: function (res) {
- wx.showToast({
- title: '取消收藏成功',
- icon: 'success',
- duration: 1500,
- })
- that.setData({
- collect: false,
- })
- }
- })
- },
- collectProduct:function(){
- var that = this;
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- };
- wx.request({
- url: app.globalData.url + '/routine/auth_api/collect_product?uid=' + app.globalData.uid,
- method: 'POST',
- header: header,
- data:{
- productId:that.data.id
- },
- success: function (res) {
- wx.showToast({
- title: '收藏成功',
- icon: 'success',
- duration: 1500,
- })
- that.setData({
- collect: true,
- })
- }
- })
- },
- getCar:function(){
- wx.switchTab({
- url: '/pages/buycar/buycar'
- });
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- var that = this;
- that.setData({
- actionSheetHidden: !that.data.actionSheetHidden
- })
- return {
- title: that.data.productSelect.store_name,
- path: app.globalData.openPages,
- // imageUrl: that.data.url + that.data.product.image,
- success: function () {
- wx.showToast({
- title: '分享成功',
- icon: 'success',
- duration: 2000
- })
- }
- }
- }
- })
|