var jweixin = require('jweixin-module');
import {
	get_jssdk
} from '@/api/index.js' // 分享接口后台提供,用于获取appid,timestamp,nonceStr,signature


var Shares = {
	async get_jssdk(title, href) {
		console.log(title,href, 'YE面数据')
		// let that = this;
		// try {
		// 	const res = await get_jssdk(href)
		// 	console
		// 	console.log('get_jssdk', res)
		// 	jweixin.config({
		// 		debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
		// 		appId: res.jssdk.appId, // 必填,公众号的唯一标识
		// 		timestamp: res.jssdk.timestamp, // 必填,生成签名的时间戳
		// 		nonceStr: res.jssdk.nonceStr, // 必填,生成签名的随机串
		// 		signature: res.jssdk.signature, // 必填,签名
		// 		jsApiList: res.jssdk.jsApiList // 必填,需要使用的JS接口列表
		// 	})
		// 	jweixin.error(function(res) {
		// 		console.log(res, '错误')
		// 	});
		// 	console.log('分享了', res.jssdk.signature);
		// 	jweixin.ready(function() {
		// 		//分享给朋友
		// 		jweixin.onMenuShareAppMessage({
		// 			title: title, // 分享标题
		// 			link: href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
		// 			desc: "【琉璃藏宝阁】数字藏品流转平台,顺利“琉”转,藏品“璃”手",
		// 			imgUrl: "http://yuanjie.n.broing.cn/assets/img/share_logo.jpg", // 分享图标
		// 			success: function() {
		// 				// 用户点击了分享后执行的回调函数
		// 				uni.showToast({
		// 					title: '分享成功',
		// 					duration: 2000
		// 				});
		// 			},
		// 			cancel: function(res) {
		// 				console.log('取消分享')
		// 			}
		// 		});
		// 		jweixin.updateAppMessageShareData({
		// 			title: title, // 分享标题
		// 			link: href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
		// 			desc: "【琉璃藏宝阁】数字藏品流转平台,顺利“琉”转,藏品“璃”手",
		// 			imgUrl: "http://yuanjie.n.broing.cn/assets/img/share_logo.jpg", // 分享图标
		// 			success: function() {
		// 				console.log('设置分享给朋友成功')
		// 			},
		// 			cancel: function(res) {
		// 				console.log('取消分享')
		// 			}
		// 		});
		// 		//分享到朋友圈
		// 		jweixin.onMenuShareTimeline({
		// 			title: title, // 分享标题
		// 			link: href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
		// 			desc: "【琉璃藏宝阁】数字藏品流转平台,顺利“琉”转,藏品“璃”手",
		// 			imgUrl: "http://yuanjie.n.broing.cn/assets/img/share_logo.jpg", // 分享图标
		// 			success: function() {
		// 				// 用户点击了分享后执行的回调函数
		// 				uni.showToast({
		// 					title: '分享成功',
		// 					duration: 2000
		// 				});
		// 			},
		// 			cancel: function(res) {
		// 				console.log('取消分享')
		// 			}
		// 		});
		// 		jweixin.updateTimelineShareData({
		// 			title: title, // 分享标题
		// 			link: href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
		// 			desc: "【琉璃藏宝阁】数字藏品流转平台,顺利“琉”转,藏品“璃”手",
		// 			imgUrl: "http://yuanjie.n.broing.cn/assets/img/share_logo.jpg", // 分享图标
		// 			success: function() {
		// 				console.log('设置分享到朋友圈成功')
		// 			},
		// 			cancel: function(res) {
		// 				console.log('取消分享')
		// 			}
		// 		});
		// 	});
		// 	// 保存数据
		// } catch (err) {
		// 	uni.showToast({
		// 		title: err,
		// 		icon: 'none'
		// 	})
		// 	console.log('get_jssdk', err)
		// }
	}

}

export {
	Shares
}