You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apply-assistant-v3/root/person/about.vue

46 lines
1.2 KiB
Vue

<template>
<view class="p-person-about g_w_all g_h_all g_bg_f_5 g_flex_column_between g_kuaishou">
<view class="g_flex_1">
<view class="g_mb_24 g_flex_row_center" style="padding-top: 130px;">
<img :src="v3BaseImg + 'bmzz.svg'" class="g_w_63 g_h_63 g_radius_20">
</view>
<view class="g_fs_24 g_c_3 g_flex_row_center g_mb_8 g_fw_600">报名助手</view>
<view class="g_fs_16 g_c_3 g_flex_row_center">Version {{version}}</view>
</view>
<view class="g_flex_none">
<view class="g_fs_11 g_c_9 g_flex_row_center">伯才公司 版权所有</view>
<view class="g_fs_11 g_c_9 g_pb_56 g_mt_4 g_flex_row_center">Copyright © 2021-{{year || 2025}} BocaiGroup. All Rights Reserved.</view>
</view>
</view>
</template>
<script>
export default{
onReady() {
this.G.setNavStyle();
},
onShareAppMessage(){
return this.G.shareFun();
},
data(){
return {
v3BaseImg:this.G.store().v3BaseImg,
year:new Date().getFullYear(),
localBaseImg:this.G.store().localBaseImg,
version:this.G.store().version
}
},
onShow(){
let that = this;
that.G.Get(that.api.getConfig,{},(res)=>{
console.log("获取基础设置",res);
})
}
}
</script>
<style>
.g_pb_56{
padding-bottom: 56px;
}
</style>