1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <div class="list">
- <div class="item">
- <div class="left">
- <img :src="require('@/assets/svg/icon-btn-box.svg')" alt="" />
- </div>
- <div class="right">
- <div>@Ambrose1283</div>
- <div>3 min ago</div>
- </div>
- </div>
- <div class="item">
- <div class="left">
- <img :src="require('@/assets/svg/icon-btn-box.svg')" alt="" />
- </div>
- <div class="right">
- <div>@Ambrose1283</div>
- <div>3 min ago</div>
- </div>
- </div>
- </div>
- <div class="info">
- Invite people to hunt treasure with you!
- </div>
- </template>
- <script setup>
- import { reactive } from 'vue'
- let state = reactive({
- page: '封面'
- })
- </script>
- <style lang="scss" scoped>
- .info {
- color: #BABABA;
- font-weight: 500;
- font-size: 15px;
- }
- .list {
- .item {
- height: 60px;
- display: flex;
- align-items: center;
- .left {
- width: 58px;
- text-align: center;
- img {
- width: 30px;
- height: 30px;
- }
- }
- .right {
- flex: 1;
- border-bottom: 1px solid #D9D9D9;
- display: flex;
- align-items: center;
- height: 100%;
- justify-content: space-between;
- div:nth-child(1) {
- color: #000000;
- font-weight: 500;
- font-size: 15px;
- }
- div:nth-child(2) {
- color: #A6A6A6;
- font-weight: 400;
- font-size: 12px;
- margin-right: 17px;
- }
- }
- }
- }
- </style>
|