|
@@ -0,0 +1,37 @@
|
|
|
+export default{
|
|
|
+ data(){
|
|
|
+ return {
|
|
|
+
|
|
|
+ share:{
|
|
|
+ title:'车蓝图',
|
|
|
+ path:'/pages/index/index',
|
|
|
+ imageUrl:'',
|
|
|
+ desc:'',
|
|
|
+ content:''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onShareAppMessage(res) {
|
|
|
+ return {
|
|
|
+ title:this.share.title,
|
|
|
+ path:this.share.path,
|
|
|
+ imageUrl:this.share.imageUrl,
|
|
|
+ desc:this.share.desc,
|
|
|
+ content:this.share.content,
|
|
|
+ success(res){
|
|
|
+ uni.showToast({
|
|
|
+ title:'分享成功'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fail(res){
|
|
|
+ uni.showToast({
|
|
|
+ title:'分享失败',
|
|
|
+ icon:'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onShareTimeline(res) {
|
|
|
+ return {}
|
|
|
+ },
|
|
|
+}
|