var wxApiList = ['updateAppMessageShareData', 'updateTimelineShareData'];//, 'onMenuShareAppMessage', 'onMenuShareTimeline'
$(function () {
function minProgramShare () {
var title = $('title').text().replace(/^\s+|\s+$/g, '');//.replace(/\s+/g, '');
if (title.indexOf('岚岚窑 - ') == 0) {
title = title.replace(/岚岚窑 - /g, '');
}
var path = window.location.href;
var img = '';
if (path.indexOf('/pottery/') > 0) {
img = $('.container img:first').attr('src');
if (img && img.indexOf('../') == 0) {
img = img.replace('../', 'https://www.lanlankiln.cn/');
}
}
wx.miniProgram.postMessage({ data: { title: title, path: path, img: img } });
}
minProgramShare ();
});