|
|
|
@ -5,7 +5,7 @@
|
|
|
|
<img :src="logo" class="g_w_63 g_h_63" />
|
|
|
|
<img :src="logo" class="g_w_63 g_h_63" />
|
|
|
|
</view>
|
|
|
|
</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_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 class="g_fs_16 g_c_3 g_flex_row_center">Version {{ version }}({{ rhUiVersion }})</view>
|
|
|
|
</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 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> 人海云平台 技术支持 </view>
|
|
|
|
<view> 人海云平台 技术支持 </view>
|
|
|
|
@ -22,12 +22,18 @@ export default {
|
|
|
|
return this.G.shareFun();
|
|
|
|
return this.G.shareFun();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
|
|
|
|
let rhUiVersion = '';
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
const pkg = require('@/uni_modules/rh-ui/package.json');
|
|
|
|
|
|
|
|
rhUiVersion = pkg.version || '';
|
|
|
|
|
|
|
|
} catch (e) {}
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
localBaseImg: this.G.store().localBaseImg,
|
|
|
|
localBaseImg: this.G.store().localBaseImg,
|
|
|
|
svgBaseImg: this.G.store().svgBaseImg,
|
|
|
|
svgBaseImg: this.G.store().svgBaseImg,
|
|
|
|
logo: getApp().globalData.logo,
|
|
|
|
logo: getApp().globalData.logo,
|
|
|
|
version: this.G.store().version,
|
|
|
|
version: this.G.store().version,
|
|
|
|
pageTitle: getApp().globalData.title,
|
|
|
|
pageTitle: getApp().globalData.title,
|
|
|
|
|
|
|
|
rhUiVersion,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
|