移动端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

53 lignes
1.0 KiB

  1. <template>
  2. <div class="navigation_main">
  3. <router-link
  4. tag="div"
  5. to="/sunVillage/consulting"
  6. class="flex_wrap"
  7. :class="serialTag == 1 ? 'current' : ''"
  8. >我的咨询</router-link
  9. >
  10. <router-link
  11. tag="div"
  12. to="/sunVillage/consulting/kanban"
  13. class="flex_wrap"
  14. :class="serialTag == 2 ? 'current' : ''"
  15. >民生看板</router-link
  16. >
  17. </div>
  18. </template>
  19. <style scoped lang="scss">
  20. .navigation_main {
  21. margin: 0 24px;
  22. display: flex;
  23. justify-content: space-between;
  24. padding: 30px 0 10px;
  25. .flex_wrap {
  26. height: 80px;
  27. background: #f8f8f8;
  28. color: #07c160;
  29. font-size: 32px;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. width: 340px;
  34. border-radius: 12px;
  35. &.current {
  36. color: #fff;
  37. background: #07c160;
  38. }
  39. }
  40. }
  41. </style>
  42. <script>
  43. export default {
  44. props: ["serialTag"],
  45. data() {
  46. return {};
  47. },
  48. mounted() {},
  49. methods: {},
  50. };
  51. </script>