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

98 lines
1.9 KiB

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. </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. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
  33. <view class="">
  34. 我要研学
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <tabber/>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. }
  47. },
  48. methods: {
  49. }
  50. }
  51. </script>
  52. <style scoped lang="scss">
  53. .page{
  54. .picture{
  55. width: 100%;
  56. image{
  57. width: 100%;
  58. height: 600rpx;
  59. }
  60. }
  61. .serve{
  62. .word{
  63. font-size: 32rpx;
  64. font-weight: 700;
  65. margin: 20rpx;
  66. }
  67. .list{
  68. display: flex;
  69. flex-wrap: wrap;
  70. margin-top: 30rpx;
  71. &>view{
  72. color: white;
  73. width: 335rpx;
  74. height: 200rpx;
  75. margin: 20rpx;
  76. background-color: $uni-color;
  77. border-radius: 16rpx;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. flex-direction: column;
  82. font-weight: 700;
  83. image{
  84. width: 80rpx;
  85. height: 80rpx;
  86. }
  87. }
  88. }
  89. }
  90. }
  91. </style>