92 lines
2.8 KiB
Vue
92 lines
2.8 KiB
Vue
<template>
|
||
<view class="commonPage commonPageBox">
|
||
<public-module></public-module>
|
||
<z-nav-bar title="关于我们" bgColor="#258feb" fontColor="#fff"></z-nav-bar>
|
||
|
||
<view class="APPinfo">
|
||
<image src="@/static/icon/home_icon_logo.png" mode="" style="height: 150rpx; width: 150rpx; margin: 0 auto;"></image><br/>
|
||
<p>版本信息:{{versionName}},{{versionCode}}</p>
|
||
</view>
|
||
|
||
<view class="telInfo">
|
||
<view class="nav_list flexbox">
|
||
<text>客服热线</text>
|
||
<view class="view1">
|
||
<text>022-24142321</text>
|
||
<image @click="makeTel" src="@/static/icon/tel.png" mode="" style="height: 46rpx; width: 46rpx; margin-bottom: -10rpx; display: inline-block; "></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="prof">吴门医述是一款专业的医学线上教育平台。内容涵盖中医学、针灸学、心身医学、中西汇通学、肿瘤学。仰望星空、脚踏实地、梦从这里起航。</view>
|
||
<view class="" style="text-align: center;">
|
||
<!-- https://main.nuttyreading.com/privacy.html -->
|
||
<!-- <text @click="seeDetail('')" style="color: #007aff; font-size: 26rpx;">隐私政策</text> -->
|
||
<uni-link href="https://wumen.taihumed.com/privacy/" text="隐私政策"></uni-link>
|
||
<!-- <uni-link href="https://uniapp.dcloud.io/" text="https://uniapp.dcloud.io/"></uni-link> -->
|
||
</view>
|
||
<music-play :playData="playData"></music-play>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import musicPlay from '@/components/music.vue'
|
||
export default {
|
||
data() {
|
||
return {
|
||
playData:{},
|
||
versionCode:null,
|
||
versionName:null
|
||
}
|
||
},
|
||
onLoad() {
|
||
this.getAppInfo()
|
||
},
|
||
components:{
|
||
musicPlay
|
||
},
|
||
methods: {
|
||
// 获取版本信息
|
||
getAppInfo(){
|
||
let that = this
|
||
plus.runtime.getProperty(plus.runtime.appid, function(inf) {
|
||
that.versionCode = inf.version
|
||
that.versionName = inf.name
|
||
// console.log(that.versionCode,555)
|
||
});
|
||
},
|
||
makeTel(){
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '微信号:yilujiankangkefu',
|
||
// success: function (res) {
|
||
// if (res.confirm) {
|
||
// uni.makePhoneCall({
|
||
// phoneNumber: '022-24142321' //仅为示例
|
||
// });
|
||
// } else if (res.cancel) {
|
||
|
||
// }
|
||
// }
|
||
})
|
||
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="less">
|
||
view{
|
||
font-size: 28rpx;
|
||
}
|
||
.prof{padding: 20rpx; color: #666; font-size: 24rpx; line-height: 40rpx; text-indent: 2em;}
|
||
.telInfo{background-color:#fff;
|
||
.nav_list{padding: 30upx 0 30upx 20upx; border-top: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5; justify-content: space-between; color: #666;
|
||
.view1{width:300rpx;}
|
||
}
|
||
}
|
||
.APPinfo{background-color:#fff; padding: 40rpx 0; margin-top: 20rpx; text-align: center;
|
||
p{font-size: 28rpx;}
|
||
}
|
||
.flexbox{display: flex; justify-content: center;}
|
||
</style>
|