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.
46 lines
1.5 KiB
Vue
46 lines
1.5 KiB
Vue
|
8 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>
|
||
|
|
<!-- <g-panel-fixed> -->
|
||
|
|
<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>
|
||
|
|
<view> 伯才人力资源供应链平台 技术支持 </view>
|
||
|
|
</view>
|
||
|
|
<!-- </g-panel-fixed> -->
|
||
|
|
<!-- <view class="g_flex_none">
|
||
|
|
<view class="g_fs_11 g_c_9 g_flex_row_center">{{pageTitle}} 版权所有</view>
|
||
|
|
<view class="g_fs_11 g_c_9 g_pb_56 g_mt_4 g_flex_row_center">伯才人力供应链平台 技术支持</view>
|
||
|
|
</view> -->
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
onReady() {
|
||
|
|
this.G.setNavStyle();
|
||
|
|
},
|
||
|
|
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>
|