index.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view>
  3. <view class="main-btn" @click="toPage(courseUrl)">
  4. <image src="https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/edu-icon/course.png"></image>
  5. <text>培训课程</text>
  6. </view>
  7. <view class="main-btn" @click="toOtherApp">
  8. <image src="https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/edu-icon/net.png"></image>
  9. <text>网络教育</text>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. netAppid: "",
  18. courseUrl: "/pages/goOnEdu/course/index"
  19. };
  20. },
  21. methods: {
  22. toOtherApp() {
  23. if (this.netAppid === "") {
  24. uni.showToast({
  25. title: "跳转其他小程序",
  26. icon: "none"
  27. })
  28. return;
  29. }
  30. uni.navigateToMiniProgram({
  31. appId: this.netAppid, // 替换为你要跳转的小程序的AppID
  32. path: '', // 目标小程序的页面路径,留空则默认为首页
  33. extraData: {
  34. foo: 'bar' // 传递给目标小程序的数据(可选)
  35. },
  36. envVersion: 'release', // 指定要打开的小程序版本: release 或 trial
  37. success(res) {
  38. console.log('成功跳转到小程序', res);
  39. },
  40. fail(err) {
  41. console.error('跳转失败', err);
  42. }
  43. });
  44. },
  45. toPage(url){
  46. uni.navigateTo({
  47. url:url
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .main-btn {
  55. width: 85%;
  56. background-color: #006af4;
  57. border-radius: 20rpx;
  58. margin: 30rpx auto;
  59. padding: 40rpx 30rpx;
  60. display: flex;
  61. align-items: center;
  62. image {
  63. width: 100rpx;
  64. height: 100rpx;
  65. flex: 0 0 auto;
  66. }
  67. text {
  68. margin-left: 20rpx;
  69. color: #fff;
  70. font-size: 40rpx;
  71. }
  72. }
  73. </style>