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.

70 lines
1.6 KiB
Vue

<template>
<view class="container display-flex">
<view class="logoContainer display-flex">
<image
class=""
src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/pugongying/yicaiLogoBgf913.png"
mode="aspectFit|aspectFill|widthFix"
:lazy-load="false"
@error=""
@load=""
/>
<p class="mt24 mb8">一才</p>
<p class="">Version {{ version }}</p>
</view>
<view class="copyRight f12">
<view>伯才公司 版权所有</view>
<view class="">Copyright © 2021-2023 BocaiGroup. All Rights Reserved.</view>
</view>
</view>
</template>
<script>
// pages/versionPage/index.js
const app = getApp();
export default {
data() {
return {
version: app.globalData.version
};
}
/**
* 生命周期函数--监听页面加载
*/,
onLoad(options) {},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {},
/**
* 生命周期函数--监听页面显示
*/
onShow() {},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {},
methods: {
/**
* 用户点击右上角分享
*/
onShareAppMessage1() {}
}
};
</script>
<style>
@import './index.css';
</style>