123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <div class="content">
- <div class="error" v-if="state.invited_list.length == 0">
- Invite people to hunt treasure with you!
- </div>
- <div class="list" v-else>
- <div class="item" v-for="item in state.invited_list">
- <div class="left">
- <img :src="item.userInfo.avatarUrl" alt="" />
- </div>
- <div class="right">
- <div>{{ item.userInfo.nickName }}</div>
- <div>{{ getTime(item.timestamp) }}</div>
- </div>
- </div>
- </div>
- <div class="footer">
- <v-btn :txt="state.open_btn.txt" :font-size="'17px'" class="btn" :icon="false"
- :disabled="state.open_btn.disabled" @onClick="clickBtn"></v-btn>
- </div>
- </div>
- </template>
- <script setup>
- import VBtn from '@/view/iframe/treasure-hunt/components/btn.vue'
- import { inviteList } from '@/http/treasure'
- import { inject, onMounted } from 'vue'
- var moment = require('moment')
- let state = inject('state')
- state.invited_list = []
- onMounted(() => {
- inviteList({
- params: {
- inviteCode: state.invite_code,
- postId: state.postId,
- pageNum: 1,
- pageSize: 10,
- }
- }).then((res) => {
- if (res.code == 0) {
- state.invited_list = res.data
- }
- })
- // btnStatus()
- })
- const getTime = (timestamp) => {
- let _d1 = moment(new Date().getTime())
- let _d2 = moment(timestamp)
- const plural = (n, s) => {
- let _str = `${n} ${s} ago`
- if (n > 1) {
- _str = `${n} ${s}s ago`
- }
- return _str
- }
- let _d = moment.duration(_d1.diff(_d2)).days()
- if (_d) {
- return plural(_d, 'day')
- }
- let _h = moment.duration(_d1.diff(_d2)).hours()
- if (_h) {
- return plural(_h, 'hour')
- }
- let _m = moment.duration(_d1.diff(_d2)).minutes()
- if (_m) {
- return plural(_m, 'min')
- }
- let _s = moment.duration(_d1.diff(_d2)).seconds()
- return plural(_s, 'sec')
- }
- const clickBtn = () => {
- state.treasureOpen()
- }
- </script>
- <style lang="scss" scoped>
- .content {
- position: relative;
- height: 292px;
- .footer {
- background: #fff;
- padding: 10px 16px 25px 16px;
- }
- .error {
- height: 204px;
- color: #BABABA;
- background-color: #fff;
- font-weight: 500;
- font-size: 15px;
- line-height: 204px;
- text-align: center;
- }
- .list {
- height: 204px;
- overflow-y: auto;
- .item {
- height: 60px;
- display: flex;
- align-items: center;
- .left {
- width: 58px;
- text-align: center;
- img {
- border-radius: 50px;
- 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>
|