123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <div class="sort">
- <div
- class="sort-item"
- v-for="item in list"
- :class="{ select: current == item.type }"
- @click="$emit('changeSort', item.type)"
- >
- {{ item.label }}
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "Sort",
- props: {
- current: {
- type: Number,
- default: 1,
- },
- list: {
- type: Array,
- default() {
- return [
- { label: "默认排序", type: 1 },
- { label: "按时间升序", type: 2 },
- { label: "按时间降序", type: 3 },
- ];
- },
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .sort {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- user-select: none;
- .sort-item {
- width: 110px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- background: white;
- border-radius: 20px;
- font-size: 16px;
- cursor: pointer;
- }
- .sort-item:not(:first-child) {
- margin-left: 10px;
- }
- .select {
- background: #0054f7;
- color: white;
- }
- }
- </style>
|