<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>
|