123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <view class="content vflex acenter">
- <view class="top vflex acenter">
- <image src="../static/logo.png" mode="aspectFill"></image>
- <view class="name">忆象</view>
- <view class="verison">{{version}}</view>
- </view>
- <view class="center">
- <u-cell-group :border="false">
- <u-cell size="large" title="访问官方网站" :isLink="true"></u-cell>
- <u-cell size="large" title="去评分" :isLink="true" @click="toshop"></u-cell>
- <!-- <u-cell size="large" title="联系我们" :isLink="true"></u-cell> -->
- </u-cell-group>
- <u-collapse :border="false">
- <u-collapse-item title="联系我们">
- <text class="u-collapse-content">手机号:13642510729;邮箱:liu@3346.com</text>
- </u-collapse-item>
- </u-collapse>
- </view>
- <view class="bottom hflex acenter">
- <text @click="toxieyi('user')">《忆象用户服务协议》</text>
- <text @click="toxieyi('yinsi')">《个人信息保护政策》</text>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return {
- version: '',
- }
- },
- onLoad() {
- const systemInfo = uni.getSystemInfoSync();
- // #ifdef H5
- this.version = systemInfo.appVersion;
- // #endif
- // #ifndef H5
- this.version = systemInfo.appWgtVersion;
- // #endif
- },
- onShow() {
-
- },
- onPullDownRefresh() {
-
- },
- onReachBottom() {
-
- },
- methods: {
- toshop() {
- if (plus.os.name == "Android") {
- // 跳转安卓应用市场
- let appurl = "market://details?id=com.autonavi.minimap" //这个是通用应用市场,如果想指定某个应用商店,需要单独查这个应用商店的包名或scheme及参数
- plus.runtime.openURL(appurl)
- } else {
- // 跳转AppStore
- let appleId = 纯数字id
- plus.runtime.launchApplication({
- action: `itms-apps://itunes.apple.com/cn/app/id${appleId}`,
- })
- }
- },
- toxieyi(type) {
- uni.navigateTo({
- url: '/pageC/xieyi?type=' + type
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .content {
- height: 100vh;
- background: #FFFFFF;
- padding: 0 28rpx;
- .bottom {
- position: absolute;
- bottom: 64rpx;
- text {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- }
- .center {
- width: 100%;
- }
- .top {
- padding: 54rpx 0 78rpx;
- image {
- width: 150rpx;
- height: 150rpx;
- background: #D8D8D8;
- border-radius: 50%;
- }
- .name {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #333333;
- padding: 32rpx 0 16rpx;
- }
- .verison {
- font-size: 28rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #333333;
- }
- }
- }
- </style>
|