Files
2025-04-30 14:04:34 +08:00

211 lines
4.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page" :style="themeColor">
<view class="flex benben-position-layout flex flex-wrap align-center aboutUs_flex_0"
:style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
<view class='flex flex-wrap align-center justify-between flex-sub aboutUs_fd0_0'>
<view class='flex flex-wrap align-center' @tap.stop="handleJumpDiy" data-type="back" data-url="1">
<text class='fu-iconfont2 aboutUs_fd0_0_c0_c0' @tap.stop="handleJumpDiy" data-type="back"
data-url="1">&#xE794;</text>
</view>
<view class='flex flex-wrap align-stretch justify-center flex-sub'>
<text class='aboutUs_fd0_0_c1_c0'>关于我们</text>
</view>
<view class='flex flex-wrap align-center aboutUs_fd0_0_c2'>
</view>
</view>
</view>
<view :style="{height: (88+StatusBarRpx)+'rpx'}"></view>
<view class="flex flex-direction flex-wrap align-center aboutUs_flex_1">
<image class='aboutUs_fd1_0' mode="aspectFit" src="../../../static/logo.png"></image>
<view class='flex flex-wrap align-center aboutUs_fd1_1'>
<text>当前版本</text>
<text>{{appVersion}}</text>
</view>
</view>
<view class='flex flex-wrap align-center justify-between setUp_fd1_0' @tap.stop="handleJumpDiy"
data-type="navigateTo" :data-url="`/pages/dl/agreementPolicy/agreementPolicy?type=25`" >
<text class='setUp_fd1_0_c0'>公司信息</text>
<text class='fu-iconfont2 system_fd2_0_c0_c1'>&#xE7F2;</text>
</view>
<view class="flex flex-direction align-center benben-position-layout flex aboutUs_flex_2">
<text class='aboutUs_fd2_0'>copyright©2024 萬家商超</text>
<text class='aboutUs_fd2_1'>All Rights Reserved</text>
<!-- #ifndef MP-WEIXIN -->
<text class='aboutUs_fd2_0' @tap.stop="toWaiUrl('https://beian.miit.gov.cn/')" >备案号浙ICP备2023015585号-2A</text>
<!-- #endif -->
</view>
<view :style="{height: '168rpx'}"></view>
</view>
</template>
<script>
export default {
components: {},
data() {
return {};
},
computed: {
themeColor() {
return this.$store.getters.themeColor
},
appVersion() {
// 获取版本号
return this.$store.state.appVersion
}
},
watch: {},
onLoad(options) {
},
onUnload() {
},
onReady() {
},
onShow() {
this.$store.dispatch('getAppVersion') // 更新版本号
},
onHide() {
},
onResize() {
},
onPullDownRefresh() {
},
onReachBottom(e) {
},
onPageScroll(e) {
},
methods: {
toWaiUrl(url) {
// #ifdef APP
plus.runtime.openWeb(url);
// #endif
},
}
};
</script>
<style lang="scss" scoped>
.aboutUs_fd2_0 {
color: #BFBFBF;
font-size: 28rpx;
font-weight: 400;
line-height: 45rpx;
}
.setUp_fd1_0 {
margin: 100rpx 200rpx 0rpx 200rpx;
}
.setUp_fd1_0_c0 {
font-size: 32rpx;
font-weight: 400;
color: #333333;
}
.setUp_fd1_0_c1 {
width: 14rpx;
height: 26rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
margin: 0rpx 32rpx 0rpx 0rpx;
}
.system_fd2_0_c0_c1 {
font-size: 26rpx;
color: rgba(191, 191, 191, 1);
}
.page {
width: 100vw;
overflow-x: hidden;
min-height: calc(100vh - var(--window-bottom));
background: #fff;
background-size: 100% auto !important;
}
.aboutUs_flex_0 {
background: #fff;
width: 750rpx;
height: 88rpx;
overflow: hidden;
z-index: 10;
top: 0rpx;
background-size: 100% auto !important;
}
.aboutUs_fd0_0_c2 {
width: 32rpx;
height: 32rpx;
}
.aboutUs_fd0_0_c1_c0 {
font-size: 36rpx;
font-weight: 500;
color: #333;
line-height: 88rpx;
}
.aboutUs_fd0_0_c0_c0 {
font-size: 32rpx;
font-weight: 500;
color: #333;
line-height: 88rpx;
}
.aboutUs_fd0_0 {
margin: 0rpx 32rpx 0rpx 32rpx;
}
.aboutUs_flex_1 {
padding: 0rpx 0rpx 0rpx 0rpx;
}
.aboutUs_fd1_1 {
padding: 33rpx 0rpx 0rpx 0rpx;
font-size: 28rpx;
color: #333;
font-weight: 400;
}
.aboutUs_fd1_0 {
width: 172rpx;
height: 172rpx;
border-radius: 36rpx 36rpx 36rpx 36rpx;
margin: 97rpx 0rpx 0rpx 0rpx;
}
.aboutUs_flex_2 {
background: #fff;
width: 750rpx;
height: 168rpx;
overflow: hidden;
z-index: 10;
bottom: calc(0rpx + var(--window-bottom));
background-size: 100% auto !important;
}
.aboutUs_fd2_1 {
color: #BFBFBF;
font-size: 28rpx;
font-weight: 400;
line-height: 45rpx;
}
.aboutUs_fd2_0 {
color: #BFBFBF;
font-size: 28rpx;
font-weight: 400;
line-height: 45rpx;
}
</style>