2021-06-13 17:54:48 +08:00
|
|
|
|
2021-05-13 11:03:32 +08:00
|
|
|
<template>
|
2021-05-14 17:31:40 +08:00
|
|
|
<view class="edition-intro">
|
2021-08-17 17:10:19 +08:00
|
|
|
<image :src="config.logo" class="logo" />
|
2021-06-11 17:58:49 +08:00
|
|
|
<h1> {{config.name}}</h1>
|
2021-06-13 17:54:48 +08:00
|
|
|
<view class='version'>
|
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
|
Version {{localVersion.version}}
|
|
|
|
<!-- #endif -->
|
2022-09-23 08:44:44 +08:00
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
|
|
小程序版本: {{localVersion.version}} {{ localVersion.envVersion}}
|
|
|
|
<!-- #endif -->
|
2021-05-14 17:31:40 +08:00
|
|
|
</view>
|
2021-06-11 17:58:49 +08:00
|
|
|
|
2021-06-13 17:54:48 +08:00
|
|
|
<!-- {{localVersion}} -->
|
|
|
|
<u-cell-group class="cell" :border="false">
|
2021-06-11 17:58:49 +08:00
|
|
|
<!-- #ifdef APP-PLUS -->
|
2021-06-13 17:54:48 +08:00
|
|
|
<u-cell-item v-if="IosWhether" @click="checkStar" title="去评分"></u-cell-item>
|
|
|
|
<u-cell-item title="功能介绍" @click="navigateTo('/pages/mine/set/versionFunctionList')"></u-cell-item>
|
2021-06-11 17:58:49 +08:00
|
|
|
<u-cell-item title="检查更新" @click="checkUpdate"></u-cell-item>
|
|
|
|
<!-- #endif -->
|
2022-09-23 08:44:44 +08:00
|
|
|
|
2022-10-28 11:28:26 +08:00
|
|
|
<u-cell-item title="证照信息" @click="navigateTo('/pages/mine/help/tips?type=LICENSE_INFORMATION')"></u-cell-item>
|
|
|
|
<u-cell-item title="服务协议" @click="navigateTo('/pages/mine/help/tips?type=USER_AGREEMENT')"></u-cell-item>
|
|
|
|
<u-cell-item title="隐私协议" @click="navigateTo('/pages/mine/help/tips?type=PRIVACY_POLICY')"></u-cell-item>
|
|
|
|
<u-cell-item title="关于我们" :border-bottom="false" @click="navigateTo('/pages/mine/help/tips?type=ABOUT')"></u-cell-item>
|
2021-06-11 17:58:49 +08:00
|
|
|
|
|
|
|
</u-cell-group>
|
|
|
|
|
|
|
|
<view class="intro">
|
2021-08-17 17:10:19 +08:00
|
|
|
<view>{{config.customerServiceMobile ? `客服热线:${config.customerServiceMobile}` : ``}}</view>
|
|
|
|
<view style="margin:20rpx 0 0 0;">{{config.customerServiceEmail ? `客服邮箱:${config.customerServiceEmail}` : ``}}</view>
|
2021-06-11 17:58:49 +08:00
|
|
|
|
|
|
|
<view>
|
2021-08-17 17:10:19 +08:00
|
|
|
<view style="margin:20rpx 0; color:#003a8c;" @click="navigateTo('/pages/mine/help/tips?type=user')">《{{config.name}}用户协议》</view>
|
2022-08-10 18:28:06 +08:00
|
|
|
<view>CopyRight ©{{config.name}} </view>
|
2021-05-14 17:31:40 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
2021-05-13 11:03:32 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-06-13 17:54:48 +08:00
|
|
|
import APPUpdate from "@/plugins/APPUpdate";
|
2021-06-11 17:58:49 +08:00
|
|
|
import config from "@/config/config";
|
2021-06-13 17:54:48 +08:00
|
|
|
import { getAppVersion } from "@/api/message.js";
|
2021-05-14 17:31:40 +08:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-06-11 17:58:49 +08:00
|
|
|
config,
|
2021-06-13 17:54:48 +08:00
|
|
|
IosWhether: false, //是否是ios
|
2021-05-14 17:31:40 +08:00
|
|
|
editionHistory: [], //版本历史
|
2021-06-13 17:54:48 +08:00
|
|
|
versionData: {}, //版本信息
|
|
|
|
localVersion: "", //当前版本信息
|
2021-05-14 17:31:40 +08:00
|
|
|
params: {
|
|
|
|
pageNumber: 1,
|
|
|
|
pageSize: 5,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
onLoad() {
|
2021-08-17 17:10:19 +08:00
|
|
|
// #ifdef APP-PLUS
|
2021-06-13 17:54:48 +08:00
|
|
|
const platform = uni.getSystemInfoSync().platform;
|
|
|
|
/**
|
|
|
|
* 获取是否是安卓
|
|
|
|
*/
|
|
|
|
if (platform === "android") {
|
2021-05-14 17:31:40 +08:00
|
|
|
this.params.type = 0;
|
|
|
|
} else {
|
2021-06-13 17:54:48 +08:00
|
|
|
this.IosWhether = true;
|
2021-05-14 17:31:40 +08:00
|
|
|
this.params.type = 1;
|
|
|
|
}
|
2021-06-13 17:54:48 +08:00
|
|
|
this.getVersion(platform);
|
|
|
|
|
|
|
|
plus.runtime.getProperty(plus.runtime.appid, (inf) => {
|
|
|
|
this.localVersion = {
|
|
|
|
versionCode: inf.version.replace(/\./g, ""),
|
|
|
|
version: inf.version,
|
|
|
|
};
|
|
|
|
});
|
2021-08-17 17:10:19 +08:00
|
|
|
// #endif
|
2022-09-23 08:44:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
// #ifdef MP-WEIXIN
|
|
|
|
const accountInfo = wx.getAccountInfoSync();
|
|
|
|
console.log("===========accountInfo==============");
|
|
|
|
console.log(accountInfo);
|
|
|
|
this.version_number = accountInfo.miniProgram.version // 小程序 版本号
|
|
|
|
this.localVersion = {
|
|
|
|
versionCode: accountInfo.miniProgram.version.replace(/\./g, ""),
|
|
|
|
version: accountInfo.miniProgram.version ,// 小程序 版本号,
|
|
|
|
envVersion:accountInfo.miniProgram.envVersion, //判断小程序是开发版本还是release版本
|
|
|
|
};
|
|
|
|
// #endif
|
2021-05-14 17:31:40 +08:00
|
|
|
},
|
2021-06-13 17:54:48 +08:00
|
|
|
|
2021-05-14 17:31:40 +08:00
|
|
|
methods: {
|
2021-06-13 17:54:48 +08:00
|
|
|
async getVersion(platform) {
|
|
|
|
let type;
|
|
|
|
platform == "android" ? (type = "ANDROID") : (type = "IOS");
|
|
|
|
|
|
|
|
let res = await getAppVersion(type);
|
|
|
|
if (res.data.success) {
|
|
|
|
this.versionData = res.data.result;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-06-11 17:58:49 +08:00
|
|
|
navigateTo(url) {
|
2022-09-15 15:40:50 +08:00
|
|
|
uni.navigateTo({
|
2021-06-11 17:58:49 +08:00
|
|
|
url,
|
|
|
|
});
|
|
|
|
},
|
2021-06-13 17:54:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ios点击评分
|
|
|
|
*/
|
|
|
|
checkStar() {
|
|
|
|
plus.runtime.launchApplication({
|
|
|
|
action: `itms-apps://itunes.apple.com/app/${config.iosAppId}?action=write-review`,
|
2021-05-14 17:31:40 +08:00
|
|
|
});
|
|
|
|
},
|
2021-06-13 17:54:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 检查更新
|
|
|
|
*/
|
|
|
|
checkUpdate() {
|
|
|
|
if (
|
|
|
|
this.versionData.version.replace(/\./g, "") <
|
|
|
|
this.localVersion.versionCode
|
|
|
|
) {
|
|
|
|
APPUpdate();
|
|
|
|
} else {
|
|
|
|
uni.showToast({
|
|
|
|
title: "当前版本已是最新版",
|
|
|
|
duration: 2000,
|
|
|
|
icon: "none",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2021-05-14 17:31:40 +08:00
|
|
|
},
|
|
|
|
};
|
2021-05-13 11:03:32 +08:00
|
|
|
</script>
|
|
|
|
|
2021-05-14 17:31:40 +08:00
|
|
|
<style lang="scss" scoped>
|
2021-06-11 17:58:49 +08:00
|
|
|
page {
|
2021-06-13 17:54:48 +08:00
|
|
|
background: #fff !important;
|
2021-06-11 17:58:49 +08:00
|
|
|
}
|
|
|
|
.cell {
|
|
|
|
width: 90%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2021-05-14 17:31:40 +08:00
|
|
|
.edition-intro {
|
2021-06-13 17:54:48 +08:00
|
|
|
min-height: 100vh;
|
|
|
|
background: #fff;
|
2021-06-11 17:58:49 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
> h1 {
|
2021-06-13 17:54:48 +08:00
|
|
|
margin: 20rpx 0 20rpx 0;
|
2021-06-11 17:58:49 +08:00
|
|
|
letter-spacing: 2rpx;
|
2021-05-14 17:31:40 +08:00
|
|
|
}
|
2021-06-13 17:54:48 +08:00
|
|
|
> .version {
|
2021-06-11 17:58:49 +08:00
|
|
|
font-size: 30rpx;
|
2021-06-13 17:54:48 +08:00
|
|
|
margin-bottom: 100rpx;
|
2021-05-14 17:31:40 +08:00
|
|
|
}
|
2021-05-13 11:03:32 +08:00
|
|
|
}
|
2021-06-11 17:58:49 +08:00
|
|
|
.intro {
|
2021-06-13 17:54:48 +08:00
|
|
|
margin-top: 100rpx;
|
2021-06-11 17:58:49 +08:00
|
|
|
font-size: 24rpx;
|
|
|
|
letter-spacing: 2rpx;
|
|
|
|
}
|
2021-06-13 17:54:48 +08:00
|
|
|
.logo {
|
|
|
|
width: 200rpx;
|
|
|
|
height: 200rpx;
|
|
|
|
}
|
2021-05-13 11:03:32 +08:00
|
|
|
</style>
|