景徳镇旅游微信小程序
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.

99 lines
2.0 KiB

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