沙盘演示系统应用的微信小程序
zuoxiao
2024-12-27 c768d20f2256ba40ebf6bc1be984c667d6bc7a11
添加分享功能
1个文件已添加
2个文件已修改
17 ■■■■■ 已修改文件
images/logo2.jpg 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/home.js 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/home.json 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
images/logo2.jpg
pages/home/home.js
@@ -697,5 +697,19 @@
    const minutes = date.getMinutes().toString().padStart(2, '0');
    const seconds = date.getSeconds().toString().padStart(2, '0');
    return `${hours}:${minutes}:${seconds}`;
  },
  onShareAppMessage: function (options) {
    // 设置分享内容
    return {
      title: '大禹灌溉助手', // 分享标题
      path: '/pages/home/home', // 分享路径,该路径需要是当前小程序存在的页面路径
      imageUrl: '/images/logo2.jpg', // 分享图标,可以是网络图片路径或本地图片路径
      success: function (res) {
        // 分享成功的回调函数
      },
      fail: function (res) {
        // 分享失败的回调函数
      }
    };
  }
})
pages/home/home.json
@@ -12,5 +12,6 @@
    "scope.camera": {  
      "desc": "使用摄像头扫描二维码"
    } 
  }
  },
  "enableShareAppMessage":true
}