service.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="container">
  3. <view class="titleLeft">
  4. <em class="iconfont icon--fuwu"></em>
  5. 高频服务
  6. </view>
  7. <view class="gpfwNav">
  8. <ul>
  9. <li>
  10. <view class="lvxd"><em class="iconfont icon-jurassic_nav"></em></view>
  11. <span>旅游向导</span>
  12. </li>
  13. <li>
  14. <view class="xlzx"><em class="iconfont icon-xinlizixun"></em></view>
  15. <span>心里咨询</span>
  16. </li>
  17. <li>
  18. <view class="xswz"><em class="iconfont icon-wenzhen"></em></view>
  19. <span>线上问诊</span>
  20. </li>
  21. <li>
  22. <view @tap="goCooperative" class="gxs"><em class="iconfont icon-gongxiaoshelogo"></em></view>
  23. <span @tap="goCooperative">供销社</span>
  24. </li>
  25. <li>
  26. <view class="xlzx"><em class="iconfont icon-linshijiuzhu"></em></view>
  27. <span>帮扶救助</span>
  28. </li>
  29. <li>
  30. <view class="xswz"><em class="iconfont icon-zhishi1"></em></view>
  31. <span>知识库</span>
  32. </li>
  33. <li>
  34. <view class="lvxd"><em class="iconfont icon-zhibo"></em></view>
  35. <span>直播带货</span>
  36. </li>
  37. <li>
  38. <view class="more"><em class="iconfont life-pic"></em></view>
  39. <span>生活服务</span>
  40. </li>
  41. </ul>
  42. </view>
  43. <view class="titleLeft titleLeftSecond" style="margin-left: 13%;">
  44. <em class="iconfont"></em>
  45. 特色服务
  46. </view>
  47. <view class="gpfwNav specialService">
  48. <ul>
  49. <li>
  50. <view @tap="goLoveAtVillage" class="xchl"><em class="iconfont marriage-pic"></em></view>
  51. <span @tap="goLoveAtVillage">乡村婚恋</span>
  52. </li>
  53. <li>
  54. <view @tap="goLegalService" class="flfw"><em class="iconfont legal-pic"></em></view>
  55. <span @tap="goLegalService">法律服务</span>
  56. </li>
  57. <li>
  58. <view @tap="goFinancialInfrastructure" class="jrjj"><em class="iconfont system-pic"></em></view>
  59. <span @tap="goFinancialInfrastructure">金融基建</span>
  60. </li>
  61. </ul>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. methods: {
  68. goCooperative() {
  69. uni.navigateTo({
  70. url: '/pages/highServer/cooperative/cooperative'
  71. });
  72. },
  73. goLoveAtVillage() {
  74. uni.navigateTo({
  75. url: '/pages/specialService/loveAtVillage/loveAtVillage'
  76. });
  77. },
  78. goLegalService() {
  79. uni.navigateTo({
  80. url: '/pages/specialService/legalService/legalService'
  81. });
  82. },
  83. goFinancialInfrastructure() {
  84. uni.navigateTo({
  85. url: '/pages/specialService/financialInfrastructure/financialInfrastructure'
  86. });
  87. },
  88. }
  89. }
  90. </script>
  91. <style>
  92. @import 'service.css';
  93. .marriage-pic{
  94. background: url('../../../static/images/more/marriage.png') 0 0 no-repeat;
  95. background-size: 100% 100%;
  96. }
  97. .legal-pic{
  98. background: url('../../../static/images/more/legal.png') 0 0 no-repeat;
  99. background-size: 100% 100%;
  100. }
  101. .system-pic{
  102. background: url('../../../static/images/more/system.png') 0 0 no-repeat;
  103. background-size: 100% 100%;
  104. }
  105. .specialService-pic{
  106. background: url('../../../static/images/more/specialService.png') 0 0 no-repeat;
  107. background-size: 100% 100%;
  108. }
  109. .life-pic{
  110. background: url('../../../static/images/more/lifeHelp.png') 0 0 no-repeat;
  111. background-size: 80% 80%;
  112. margin: 10% !important;
  113. }
  114. .titleLeftSecond::after{
  115. content:'';
  116. left: -109px;
  117. width: 12vw;
  118. background: url('../../../static/images/more/specialService.png') 0 0 no-repeat;
  119. background-size: 93% 93%;
  120. position: relative;
  121. }
  122. .gpfwNav ul li view.xchl{
  123. background: none;
  124. }
  125. .gpfwNav ul li view.flfw{
  126. background: none;
  127. }
  128. .gpfwNav ul li view.jrjj{
  129. background: none;
  130. }
  131. .specialService{
  132. width: 100% !important;
  133. }
  134. .specialService li{
  135. width: 20vh;
  136. }
  137. .specialService li view{
  138. width: 100%;
  139. }
  140. </style>