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.

40 lines
1.1 KiB
Vue

2 months ago
<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="logo" class="g_w_63 g_h_63" />
</view>
<view class="g_fs_24 g_c_3 g_flex_row_center g_mb_8 g_fw_600">{{ pageTitle }}</view>
<view class="g_fs_16 g_c_3 g_flex_row_center">Version {{ version }}</view>
</view>
<view class="g_flex_row_center g_pb_42" style="text-align: center; font-size: 12px; color: #999; line-height: 32px; box-sizing: border-box">
<view>
<image :src="svgBaseImg + 'b.svg'" style="width: 16px; height: 16px; vertical-align: text-bottom; position: relative"></image>
</view>
4 days ago
<view> 人海云平台 技术支持 </view>
2 months ago
</view>
</view>
</template>
<script>
export default {
onReady() {
},
onShareAppMessage() {
return this.G.shareFun();
},
data() {
return {
localBaseImg: this.G.store().localBaseImg,
svgBaseImg: this.G.store().svgBaseImg,
logo: getApp().globalData.logo,
version: this.G.store().version,
pageTitle: getApp().globalData.title,
};
},
};
</script>
<style></style>