feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

104
pages/my/about/about.vue Normal file
View File

@ -0,0 +1,104 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 18614 0 7 25 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-logo__box">
<image src="/static/images/common/img_logo.png" class="fui-logo" mode="widthFix"></image>
<view class="fui-title">First UI</view>
<view class="fui-version">Version {{version}}</view>
</view>
<view class="fui-page__bd">
<view class="fui-desc">
<text class="fui-mr">First UI</text> 是一套基于uni-app开发的组件化可复用易扩展低耦合的跨平台移动端UI 组件库
</view>
<fui-list-cell topBorder arrow @click="getLink">
去STAR
</fui-list-cell>
<fui-list-cell arrow @click="href('../updated/updated')">
功能介绍
</fui-list-cell>
<fui-list-cell bottomLeft="0" arrow @click="href('../vip/vip')">
会员介绍
</fui-list-cell>
<fui-footer isFixed text="Copyright © 2023 First UI. All Rights Reserved."></fui-footer>
</view>
</view>
</template>
<script>
import {
mapState
} from 'vuex'
import $fui from '@/components/firstui/fui-clipboard';
export default {
computed: mapState(['version','status']),
data() {
return {
}
},
methods: {
getLink(e) {
// #ifdef MP-BAIDU
if(this.status==0){
this.fui.toast('暂不支持此功能~')
return;
}
// #endif
$fui.getClipboardData('https://github.com/FirstUI/FirstUI', res => {
this.fui.toast('GitHub地址复制成功');
}, e);
},
href(page){
this.fui.href(page)
}
}
}
</script>
<style>
page {
background-color: #fff;
font-weight: normal;
}
.fui-logo__box {
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding-top: 64rpx;
padding-bottom: 64rpx;
}
.fui-logo {
width: 120rpx;
height: 120rpx;
border-radius: 24rpx;
}
.fui-title {
font-size: 36rpx;
padding-top: 24rpx;
}
.fui-version {
padding-top: 8rpx;
font-size: 24rpx;
font-weight: 400;
}
.fui-desc {
font-size: 28rpx;
line-height: 56rpx;
padding: 0 32rpx;
margin-bottom: 64rpx;
box-sizing: border-box;
font-weight: 400;
}
.fui-mr {
margin-right: 8rpx;
}
</style>