lin
2026-06-04 7d77b3ae0f4250652457f61831a87dbc3f9f9b31
feat:澜品优选 新增“关于我们”页面
2 files modified
2 files added
112 ■■■■■ changed files
pages.json 7 ●●●●● patch | view | raw | blame | history
pages/about/about.vue 91 ●●●●● patch | view | raw | blame | history
pages/my/my.vue 14 ●●●● patch | view | raw | blame | history
static/imgs/logo1024.png patch | view | raw | blame | history
pages.json
@@ -134,6 +134,13 @@
            }
        },
        {
            "path" : "pages/about/about",
            "style" :
            {
                "navigationBarTitleText" : ""
            }
        },
        {
            "path" : "pages/search/search",
            "style" :
            {
pages/about/about.vue
New file
@@ -0,0 +1,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>
pages/my/my.vue
@@ -88,11 +88,14 @@
                            <view>{{item.text}}</view>
                        </view>
                    </template>
                    <view class="mySerCon-v" @tap="toHuishou" >
                      <template v-if="isShop">
                    <view v-if="isShop" class="mySerCon-v" @tap="toHuishou" >
                      <template>
                        <image src="/static/imgs/quanshou.png" mode="widthFix"></image>
                        <text>会员权益</text></template>
                    </view>
                    <view class="mySerCon-v" @tap="goAbout">
                        <image :src="'../../static/imgs/mf1.png'" mode=""></image>
                        <view>关于澜品优选</view>
                    </view>
                </view>
            </view>
@@ -186,6 +189,11 @@
              }
        },
        methods: {
            goAbout() {
                uni.navigateTo({
                    url:'/pages/about/about'
                })
            },
              toHuishou(){
                const _this = this;
                if(!_this.isShop){
static/imgs/logo1024.png