当前位置:   article > 正文

微信小程序开发跳转京东,淘宝小程序

微信小程序开发跳转京东,淘宝小程序

没有淘宝小程序,所以只能提示他复制链接网页打开

跳转京东小程序
 

获取京东小程序

京东小程序appId:wx91d27dbf599dff74
或者点开京东小程序,查看详情即可获取到京东的appid

店铺页面路径

店铺首页:pages/shop/index/index?shopId=

店铺id

打开h5,点击到自己的店铺下。url路径中index- 后面的那一串数字就是你的店铺Id啦
京东(JD.COM)-正品低价、品质保障、配送及时、轻松购物!


webView.ts

  1. // packageB/external_websites/index.ts
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. url:''
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad(option:any) {
  13. console.log("网站地址",option.url);
  14. let url=JSON.parse(decodeURIComponent(option.url))
  15. this.setData({
  16. url:url
  17. })
  18. console.log("复制",this.data.url);
  19. wx.setClipboardData({
  20. data: url,
  21. success (res) {
  22. console.log(res);
  23. wx.getClipboardData({
  24. success (res) {
  25. console.log(res.data) // data
  26. wx.showToast({
  27. title: '复制链接成功',
  28. icon: 'success',
  29. duration: 2000
  30. });
  31. },
  32. fail: function(err) {
  33. // 复制失败后的回调函数
  34. console.log(err);
  35. }
  36. })
  37. }
  38. })
  39. },
  40. /**
  41. * 生命周期函数--监听页面初次渲染完成
  42. */
  43. onReady() {
  44. },
  45. /**
  46. * 生命周期函数--监听页面显示
  47. */
  48. onShow() {
  49. },
  50. /**
  51. * 生命周期函数--监听页面隐藏
  52. */
  53. onHide() {
  54. },
  55. /**
  56. * 生命周期函数--监听页面卸载
  57. */
  58. onUnload() {
  59. },
  60. /**
  61. * 页面相关事件处理函数--监听用户下拉动作
  62. */
  63. onPullDownRefresh() {
  64. },
  65. /**
  66. * 页面上拉触底事件的处理函数
  67. */
  68. onReachBottom() {
  69. },
  70. /**
  71. * 用户点击右上角分享
  72. */
  73. onShareAppMessage() {
  74. }
  75. })

webView.wxml

<web-view src="{{url}}"/>

goodDetail.ts
 

  1. goUrl(e:any){
  2. let type=e.currentTarget.dataset.type
  3. console.log(e.currentTarget.dataset.url);
  4. // let url=e.currentTarget.dataset.url
  5. let url=''
  6. //
  7. if(type=='jd'){
  8. wx.navigateToMiniProgram({
  9. appId: 'wx91d27dbf599dff74',
  10. path: '/pages/shop/index/index?shopId=******',
  11. envVersion: 'release',
  12. success(res) {
  13. // 打开成功
  14. console.log(res);
  15. }
  16. })
  17. return
  18. }
  19. if(type=='tm'){
  20. //天猫的链接是请求接口 后端传过来的
  21. url=e.currentTarget.dataset.url
  22. }
  23. wx.navigateTo({
  24. url:'/packageB/external_websites/index?url='+encodeURIComponent(JSON.stringify(url))
  25. })
  26. },

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/802509
推荐阅读
相关标签
  

闽ICP备14008679号