about.vue 5.3 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6
<template>
	<view class="about">
		<view class="box">
			<image class="logoImg" :src="about.logo"></image>
			<text class="tip appName">{{about.appName}}</text>
			<text class="tip">Version {{version}}</text>
7 8 9 10 11
			<view class="qrcode">
				<!--uqrcode 组件来源,插件Sansnn-uQRCode 链接地址:https://ext.dcloud.net.cn/plugin?id=1287-->
				<uqrcode :size="100" canvas-id="qrcode" :value="about.download"></uqrcode>
			</view>
			
DCloud_JSON's avatar
DCloud_JSON 已提交
12 13
			<text class="tip">{{$t('about.sacnQR')}} {{about.appName}} {{$t('about.client')}}</text>
		</view>
14 15
		<view class="copyright">
			<view class="agreement-box" v-for="(agreement,index) in agreements" :key="index">
DCloud_JSON's avatar
DCloud_JSON 已提交
16
				<text class="agreement" @click="navigateTo(agreement)">{{agreement.title}}</text>
17
				<text class="hint" v-if="agreements.length-1>index">{{$t('about.and')}}</text>
DCloud_JSON's avatar
DCloud_JSON 已提交
18 19 20 21 22 23 24
			</view>
			<text class="hint">Copyright © {{year}}</text>
			<text class="hint">{{about.company}}</text>
		</view>
	</view>
</template>
<script>
25
// #ifdef APP
26
	import UniShare from '@/uni_modules/uni-share/js_sdk/uni-share.js';
27
	const uniShare = new UniShare()
28 29
// #endif
	import uniIdPagesConfig from '@/uni_modules/uni-id-pages/config.js';
30
	import uqrcode from "@/uni_modules/Sansnn-uQRCode/components/uqrcode/uqrcode"
31
	export default {
32 33 34
		components:{
			uqrcode
		},
35 36 37 38 39 40 41 42 43 44
		// #ifdef APP
		onBackPress({from}) {
			if(from=='backbutton'){
				this.$nextTick(function(){
					uniShare.hide()
				})
				return uniShare.isShow;
			}
		},
		// #endif
DCloud_JSON's avatar
DCloud_JSON 已提交
45 46 47 48 49 50 51 52
		onLoad() {
			// #ifdef APP-PLUS
			this.version = plus.runtime.version
			// #endif
		},
		computed: {
			uniStarterConfig() {
				return getApp().globalData.config
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
			},
			agreements() {
				if(!uniIdPagesConfig.agreements){
					return []
				}
				let {serviceUrl,privacyUrl} = uniIdPagesConfig.agreements
				return [
					{
						url:serviceUrl,
						title:"用户服务协议"
					},
					{
						url:privacyUrl,
						title:"隐私政策条款"
					}
				]
DCloud_JSON's avatar
DCloud_JSON 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82
			}
		},
		data() {
			return {
				version: "V1.0.0",
				year: "2020",
				about: {}
			};
		},
		created() {
			this.about = this.uniStarterConfig.about
			uni.setNavigationBarTitle({
				title: this.$t('about.about')+ " " + this.about.appName
			})
83
			this.year = (new Date).getFullYear()
DCloud_JSON's avatar
DCloud_JSON 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
		},
		onNavigationBarButtonTap() {
			let {
				download,
				appName,
				slogan,
				logo
			} = this.about
			uniShare.show({
				content: { //公共的分享类型(type)、链接(herf)、标题(title)、summary(描述)、imageUrl(缩略图)
					type: 0,
					href: download,
					title: appName,
					summary: slogan,
					imageUrl: logo + '?x-oss-process=image/resize,m_fill,h_100,w_100' //压缩图片解决,在ios端分享图过大导致的图片失效问题
				},
				menus: [{
						"img": "/static/app-plus/sharemenu/wechatfriend.png",
102
						"text": this.$t('common.wechatFriends'),
DCloud_JSON's avatar
DCloud_JSON 已提交
103 104 105 106 107 108 109
						"share": {
							"provider": "weixin",
							"scene": "WXSceneSession"
						}
					},
					{
						"img": "/static/app-plus/sharemenu/wechatmoments.png",
110
						"text":  this.$t('common.wechatBbs'),
DCloud_JSON's avatar
DCloud_JSON 已提交
111 112
						"share": {
							"provider": "weixin",
113
							"scene": "WXSceneTimeline"
DCloud_JSON's avatar
DCloud_JSON 已提交
114 115 116 117
						}
					},
					{
						"img": "/static/app-plus/sharemenu/weibo.png",
118
						"text":  this.$t('common.weibo'),
DCloud_JSON's avatar
DCloud_JSON 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131
						"share": {
							"provider": "sinaweibo"
						}
					},
					{
						"img": "/static/app-plus/sharemenu/qq.png",
						"text": "QQ",
						"share": {
							"provider": "qq"
						}
					},
					{
						"img": "/static/app-plus/sharemenu/copyurl.png",
132
						"text": this.$t('common.copy'),
DCloud_JSON's avatar
DCloud_JSON 已提交
133 134 135 136
						"share": "copyurl"
					},
					{
						"img": "/static/app-plus/sharemenu/more.png",
137
						"text": this.$t('common.more'),
DCloud_JSON's avatar
DCloud_JSON 已提交
138 139 140
						"share": "shareSystem"
					}
				],
141
				cancelText: this.$t('common.cancelShare'),
DCloud_JSON's avatar
DCloud_JSON 已提交
142 143 144 145 146 147 148 149 150 151
			}, e => { //callback
				console.log(e);
			})
		},
		methods: {
			navigateTo({
				url,
				title
			}) {
				uni.navigateTo({
study夏羽's avatar
study夏羽 已提交
152
					url: '/uni_modules/uni-id-pages/pages/common/webview/webview?url=' + url + '&title=' + title,
DCloud_JSON's avatar
DCloud_JSON 已提交
153 154 155 156 157 158 159 160 161 162
					success: res => {},
					fail: () => {},
					complete: () => {}
				});
			}
		}
	}
</script>
<style lang="scss" scoped>
	/* #ifndef APP-NVUE */
163
	view{
DCloud_JSON's avatar
DCloud_JSON 已提交
164 165 166 167 168 169
		display: flex;
		box-sizing: border-box;
		flex-direction: column;
	}
	/* #endif */
	.about {
170 171 172
		flex-direction: column;
		justify-content: center;
		align-items: center;
DCloud_JSON's avatar
DCloud_JSON 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	}

	.box {
		margin-top: 60px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.logoImg {
		margin-bottom: 10rpx;
		width: 160rpx;
		height: 160rpx;
		border-radius: 15px;
	}

	.tip {
		text-align: center;
		font-size: 24rpx;
		margin-top: 10px;
		padding: 10rpx;
	}

	.appName {
		margin-top: 20px;
		font-size: 42rpx;
		font-weight: 500;
	}

202 203 204 205 206 207 208 209
	.qrcode ,.qrcode .uqrcode{
		margin: 10px 0;
		width: 100px;
		height: 100px;
		/* #ifndef APP-NVUE */
		display: block;
		/* #endif */
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
210 211 212 213 214 215 216

	.copyright {
		font-size: 32rpx;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		bottom: 20px;
217
		// left: 0;
DCloud_JSON's avatar
DCloud_JSON 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
		position: fixed;
	}

	.agreement-box {
		justify-content: center;
	}

	.agreement {
		color: #2285ff;
		font-size: 26rpx;
	}

	.hint {
		text-align: center;
		color: #999999;
		font-size: 26rpx;
	}
</style>