totaobao.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="content vflex acenter jcenter">
  3. <view class="box">
  4. <view class="title">正在跳转忆象淘宝官方旗舰店</view>
  5. <view class="text">欢迎联系店面客服</view>
  6. <image :src="img" mode="aspectFill"></image>
  7. </view>
  8. <view class="btn" @click="jump">继续跳转</view>
  9. </view>
  10. </template>
  11. <script>
  12. import $api from '@/static/js/api.js'
  13. export default {
  14. data() {
  15. return {
  16. img: 'https://dummyimage.com/279x155/e3e3e3/fff',
  17. src: ''
  18. }
  19. },
  20. onLoad() {
  21. this.getdata()
  22. },
  23. methods: {
  24. getdata() {
  25. var that = this
  26. $api.req({
  27. url: 'config',
  28. data: {
  29. module: 'shop'
  30. }
  31. }, function(res) {
  32. if(res.data.shop_images.length > 0) {
  33. that.img = res.data.shop_images[0]
  34. }
  35. that.src = res.data.shop_url
  36. console.log(res);
  37. })
  38. },
  39. jump() {
  40. uni.navigateTo({
  41. url: '/pages/webview/index?url=' + this.src
  42. })
  43. // if (plus.os.name == 'Android') {
  44. // plus.runtime.launchApplication({
  45. // pname: 'com.taobao.taobao',
  46. // }, function(e) {
  47. // uni.showModal({
  48. // content: '本机未检测到淘宝客户端,请先下载淘宝APP',
  49. // success: function(res) {
  50. // }
  51. // })
  52. // });
  53. // } else if (plus.os.name == 'iOS') {
  54. // plus.runtime.launchApplication({
  55. // action: 'taobao://',
  56. // }, function(e) {
  57. // uni.showModal({
  58. // content: '本机未检测到淘宝客户端,请先下载淘宝APP',
  59. // success: function(res) {
  60. // }
  61. // })
  62. // })
  63. // }
  64. }
  65. }
  66. }
  67. </script>
  68. <style lang="scss">
  69. .content {
  70. background: #F5F5F5;
  71. height: 100vh;
  72. .box {
  73. background: #FFFFFF;
  74. border-radius: 20rpx;
  75. box-sizing: border-box;
  76. padding: 40rpx;
  77. .title {
  78. font-size: 32rpx;
  79. font-family: PingFangSC, PingFang SC;
  80. font-weight: 600;
  81. color: #333333;
  82. }
  83. .text {
  84. font-size: 28rpx;
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 400;
  87. color: #999999;
  88. padding: 24rpx 0 76rpx;
  89. }
  90. image {
  91. width: 510rpx;
  92. height: 510rpx;
  93. }
  94. }
  95. .btn {
  96. width: 662rpx;
  97. height: 88rpx;
  98. background: #00B0B0;
  99. border-radius: 12rpx;
  100. margin: 90rpx 0 0;
  101. font-size: 32rpx;
  102. font-family: PingFangSC, PingFang SC;
  103. font-weight: 400;
  104. color: #FFFFFF;
  105. line-height: 88rpx;
  106. text-align: center;
  107. }
  108. }
  109. </style>