lin
2026-06-25 0ba4575f47bd1498235f9d6ca9ac8b105e7e566c
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<template>
    <view>
        <view class="login-title">
            <image style="height: 200rpx;width: 200rpx;border-radius: 40rpx;" src="@/static/imgs/logo1024.png" mode="scaleToFill"></image>
            <!-- <view class="login-title-1">
                <text>够你所想</text>
                <text>购你所爱</text>
            </view> -->
            <view class="login-title-2">欢迎访问澜品优选</view>
        </view>
        
        <view style="position: absolute;bottom: 100rpx;left: 0;right: 0;">
            <view class="myBeiAn">
                <view >客服热线: {{Config.kefu_phone}}</view>
                <view @tap="goWebUrl('https://beian.mps.gov.cn/#/query/webSearch')">新公网安备65010602001169号</view>
                <view @tap="goWebUrl('http://beian.miit.gov.cn')">APP备案号: {{Config.icp}}</view>
                <view @tap="goWebUrl('http://beian.miit.gov.cn')">Copyright © 2025 新疆数澜科技有限公司 All Rights Reserved.</view>
                <!-- <view @tap="goWebUrl('http://beian.miit.gov.cn')">Copyright © 2025 {{Config.url}} All Rights Reserved.</view> -->
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        components: {
        },
        data() {
            return {
                Config: {put_open: 1},
            }
        },
        onLoad(op) {
            
        },
        onShow() {
            this.getConfig()
        },
        methods: {
            goWebUrl (url) {
                // #ifdef APP-PLUS
                plus.runtime.openURL(url)
                // #endif
            },
            getConfig () {
                let t = this
                t.$util.post('Index/getConfig').then(res => {
                    t.Config = res.data
                })
            },
        }
    }
</script>
 
<style lang="scss" scoped>
    page{
        font-size: 28upx;
        background-color: #fbf8f8;
    }
    .login-title{
        /* padding: 160upx 70upx 70upx 70upx; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20rpx;
        padding-top: 70rpx;
        margin-bottom: 20rpx;
    }
    .login-title-1{
        font-size: 40upx;
        font-weight: 700;
        color: #37AA25;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30rpx;
        letter-spacing: 4rpx;
    }
    .login-title-2{
        font-size: 28upx;
        color: #000000;
    }
    .myBeiAn {
        margin-top: 26px;
        text-align: center;
        font-size: 12px;
        color: #666666;
        line-height: 42rpx;
    }
</style>