sort.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <div class="sort">
  3. <div
  4. class="sort-item"
  5. v-for="item in list"
  6. :class="{ select: current == item.type }"
  7. @click="$emit('changeSort', item.type)"
  8. >
  9. {{ item.label }}
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: "Sort",
  16. props: {
  17. current: {
  18. type: Number,
  19. default: 1,
  20. },
  21. list: {
  22. type: Array,
  23. default() {
  24. return [
  25. { label: "默认排序", type: 1 },
  26. { label: "按时间升序", type: 2 },
  27. { label: "按时间降序", type: 3 },
  28. ];
  29. },
  30. },
  31. },
  32. };
  33. </script>
  34. <style lang="scss" scoped>
  35. .sort {
  36. display: flex;
  37. align-items: center;
  38. justify-content: flex-start;
  39. user-select: none;
  40. .sort-item {
  41. width: 110px;
  42. height: 40px;
  43. line-height: 40px;
  44. text-align: center;
  45. background: white;
  46. border-radius: 20px;
  47. font-size: 16px;
  48. cursor: pointer;
  49. }
  50. .sort-item:not(:first-child) {
  51. margin-left: 10px;
  52. }
  53. .select {
  54. background: #0054f7;
  55. color: white;
  56. }
  57. }
  58. </style>