From 7d77b3ae0f4250652457f61831a87dbc3f9f9b31 Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Thu, 04 Jun 2026 11:43:36 +0800
Subject: [PATCH] feat:澜品优选 新增“关于我们”页面
---
pages/about/about.vue | 91 +++++++++++++++++++++++++++++++++++++++++++++
pages.json | 7 +++
static/imgs/logo1024.png | 0
pages/my/my.vue | 14 +++++-
4 files changed, 109 insertions(+), 3 deletions(-)
diff --git a/pages.json b/pages.json
index f6f3c88..cd4b125 100644
--- a/pages.json
+++ b/pages.json
@@ -134,6 +134,13 @@
}
},
{
+ "path" : "pages/about/about",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
"path" : "pages/search/search",
"style" :
{
diff --git a/pages/about/about.vue b/pages/about/about.vue
new file mode 100644
index 0000000..ac30cc4
--- /dev/null
+++ b/pages/about/about.vue
@@ -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>
diff --git a/pages/my/my.vue b/pages/my/my.vue
index 006a204..ffd23dc 100644
--- a/pages/my/my.vue
+++ b/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){
diff --git a/static/imgs/logo1024.png b/static/imgs/logo1024.png
new file mode 100644
index 0000000..2e5a8ce
--- /dev/null
+++ b/static/imgs/logo1024.png
Binary files differ
--
Gitblit v1.9.3