1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view class="about-container">
- <u-navbar :titleStyle="{ color: '#fff' }" :autoBack="true" title="关于我们" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
- <template #left>
- <view class="u-nav-slot">
- <u-icon name="arrow-left" size="19" color="#fff"></u-icon>
- </view>
- </template>
- </u-navbar>
- <view class="uni-content-header"></view>
- <view class="header-section text-center">
- <image style="width: 150rpx; height: 150rpx" mode="heightFix" :src="useStore.$state.loginLogo" v-if="useStore.$state.loginLogo" />
- <image style="width: 150rpx; height: 150rpx" mode="heightFix" src="@/static/logo200.png" v-else />
- <uni-title type="h2" :title="useStore.$state.loginTitle"></uni-title>
- </view>
- <view class="content-section">
- <view class="menu-list">
- <view class="list-cell list-cell-arrow">
- <view class="menu-item-box">
- <view>版本信息</view>
- <view class="text-right">v{{ version }}</view>
- </view>
- </view>
- <view class="list-cell list-cell-arrow">
- <view class="menu-item-box">
- <view>官方邮箱</view>
- <view class="text-right">{{ email }}</view>
- </view>
- </view>
- <view class="list-cell list-cell-arrow">
- <view class="menu-item-box">
- <view>服务热线</view>
- <view class="text-right">{{ hotline }}</view>
- </view>
- </view>
- <view class="list-cell list-cell-arrow">
- <view class="menu-item-box">
- <view>公司网站</view>
- <view class="text-right">
- <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="copyright">
- <view>Copyright © 2021 - 2025 Usky. All Rights Reserved. 永天股份 版权所有</view>
- </view>
- </view>
- </template>
- <script setup>
- import config from "@/config";
- import { onReady, onLoad, onShow, onNavigationBarButtonTap } from "@dcloudio/uni-app";
- import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
- import { publicStores, useStores } from "@/store/modules/index";
- const useStore = useStores();
- const { proxy } = getCurrentInstance();
- const url = ref(config.appInfo.site_url);
- const version = ref(config.appInfo.version);
- const email = ref(config.appInfo.email);
- const hotline = ref(config.appInfo.hotline);
- onShow(() => {
- //调用系统主题颜色
- proxy.$settingStore.systemThemeColor([1]);
- });
- </script>
- <style lang="scss" scoped>
- .about-container {
- .copyright {
- margin-top: 50rpx;
- text-align: center;
- line-height: 60rpx;
- color: #999;
- }
- .header-section {
- display: flex;
- padding: 30rpx 0 0;
- flex-direction: column;
- align-items: center;
- }
- }
- </style>
|