景徳镇旅游微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.0 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <!-- 无忧服务 -->
  3. <view class="page">
  4. <navbar title="无忧服务" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="picture" >
  6. <!-- <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image> -->
  7. <uv-swiper
  8. :list="banner.service"
  9. indicator
  10. height="420rpx"
  11. keyName="imageContent"></uv-swiper>
  12. </view>
  13. <view class="serve">
  14. <view class="word">
  15. 无忧服务
  16. </view>
  17. <view class="list">
  18. <view class="button1">
  19. <image src="../static/service/carefree/1.png" mode=""></image>
  20. <view class="">
  21. 瓷都美食
  22. </view>
  23. </view>
  24. <view class="button2">
  25. <image src="../static/service/carefree/2.png" mode=""></image>
  26. <view class="">
  27. 精品民宿
  28. </view>
  29. </view>
  30. <view class="button3">
  31. <image src="../static/service/carefree/3.png" mode=""></image>
  32. <view class="">
  33. 无忧租车
  34. </view>
  35. </view>
  36. <view class="button4"
  37. @click="$utils.navigateTo('/pages_order/service/StudyFurther')">
  38. <image src="../static/service/carefree/4.png" mode=""></image>
  39. <view class="">
  40. 我要研学
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <tabber/>
  46. </view>
  47. </template>
  48. <script>
  49. import { mapState } from 'vuex'
  50. export default {
  51. data() {
  52. return {
  53. }
  54. },
  55. computed : {
  56. ...mapState(['banner']),
  57. },
  58. methods: {
  59. }
  60. }
  61. </script>
  62. <style scoped lang="scss">
  63. .page{
  64. .picture{
  65. width: 100%;
  66. }
  67. .serve{
  68. .word{
  69. font-size: 32rpx;
  70. font-weight: 700;
  71. margin: 20rpx;
  72. }
  73. .list{
  74. display: flex;
  75. flex-wrap: wrap;
  76. margin-top: 30rpx;
  77. &>view{
  78. color: white;
  79. width: 335rpx;
  80. height: 200rpx;
  81. margin: 20rpx;
  82. background-color: $uni-color;
  83. border-radius: 16rpx;
  84. display: flex;
  85. justify-content: center;
  86. align-items: center;
  87. flex-direction: column;
  88. font-weight: 700;
  89. image{
  90. width: 80rpx;
  91. height: 80rpx;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. </style>