nav.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <div class="page">
  3. <ul class="list">
  4. <li class="item" @click="jump('/pages/youxuan/profit')">
  5. <div class="name">记录收益</div>
  6. <my-image
  7. class="arrow"
  8. src="/static/common/arrows_left.png"
  9. ></my-image>
  10. </li>
  11. <li class="item" @click="jump('/pages/youxuan/order/index')">
  12. <div class="name">优选订单</div>
  13. <my-image
  14. class="arrow"
  15. src="/static/common/arrows_left.png"
  16. ></my-image>
  17. </li>
  18. <li class="item" @click="jump('/pages/youxuan/brand')">
  19. <div class="name">优选品牌</div>
  20. <my-image
  21. class="arrow"
  22. src="/static/common/arrows_left.png"
  23. ></my-image>
  24. </li>
  25. <li class="item" @click="jump('/pages/youxuan/index')">
  26. <div class="name">分类管理</div>
  27. <my-image
  28. class="arrow"
  29. src="/static/common/arrows_left.png"
  30. ></my-image>
  31. </li>
  32. </ul>
  33. </div>
  34. </template>
  35. <script>
  36. import MyImage from "../../components/image/index";
  37. export default {
  38. name: "",
  39. components: { MyImage },
  40. // 数据
  41. data() {
  42. return {
  43. curShop: {},
  44. };
  45. },
  46. onLoad() {},
  47. async onShow() {},
  48. // 函数
  49. methods: {},
  50. // 数据计算
  51. computed: {
  52. user() {
  53. return this.$store.state.user.user;
  54. },
  55. },
  56. // 数据监听
  57. watch: {},
  58. };
  59. </script>
  60. <style lang="scss" scoped>
  61. .page {
  62. min-height: 100vh;
  63. background-color: #fff;
  64. }
  65. .list {
  66. border-top: 1px solid #f1f1f1;
  67. .item {
  68. height: px(120);
  69. padding: 0 px(35);
  70. font-size: px(44);
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. border-bottom: 1px solid #f1f1f1;
  75. }
  76. .arrow {
  77. width: px(40);
  78. height: px(40);
  79. flex-shrink: 0;
  80. transform: rotate(180deg);
  81. /deep/ img {
  82. width: px(40);
  83. height: px(40);
  84. }
  85. }
  86. }
  87. </style>