ts队列组件,兼容安卓小米升级方案

This commit is contained in:
唐明明
2021-11-15 17:17:18 +08:00
parent 24b23ac13c
commit 0f9b01274f
10 changed files with 649 additions and 283 deletions

View File

@@ -21,8 +21,7 @@
</view>
<block v-if="isAuth">
<view class="ore-lists">
<view class="oct-float ore-item" v-for="(item, index) in crystalArr" :key="index"
:style="{left: item.left + '%', top: item.top + '%'}" @click="ledCrystal(index)">
<view class="oct-float ore-item" v-for="(item, index) in crystalArr" :key="index" :style="{left: item.left + '%', top: item.top + '%'}" @click="ledCrystal(index)">
<block v-if="item.amount !== null">
<view class="oct-icon">
<image src="@/static/icons/crystal-icon.png" mode="widthFix" class="icon" />
@@ -120,18 +119,12 @@
</view>
</template>
<script>
import {
chain,
crystals,
thawlog
} from '@/apis/interfaces/chain'
<script>
import { chain, crystals, thawlog } from '@/apis/interfaces/chain'
import F2 from '@/uni_modules/lime-f2/components/lime-f2/f2.min.js'
import lF2 from '@/uni_modules/lime-f2/components/lime-f2/'
export default {
components: {
lF2
},
components: { lF2 },
data() {
return {
isAuth: false,
@@ -155,7 +148,10 @@
certification: false,
company: false,
vip: false
}
},
// 领取贡献值队列
queueData : [],
queueState : false
};
},
onShow() {