819527061@qq.com
2024-05-11 f73ed7862edc9c3cb78a2610486643a2fa079fde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<template>
    <view>
        <u-popup v-model="jiayouShow" mode="center" width="90%">
            <view class="jiayouShow-box">
                <image class="comOn" src="../../static/image/comeOn.gif" mode="aspectFit"></image>
                <text>加油成功</text>
            </view>
        </u-popup>
    </view>
</template>
 
<script>
    export default {
        name:"comeOn",
        data() {
            return {
                jiayouShow: true
            };
        }
    }
</script>
 
<style lang="scss" scoped>
  .jiayouShow-box{
        padding: 40rpx 0;
        box-sizing: border-box;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .comOn{
            width: 332rpx;
            height: 332rpx;
        }
        text{
            display: inline-block;
            font-size: 32rpx;
            line-height: 2;
            margin: 40rpx 0;
        }
    }
</style>