33 lines
780 B
Vue
33 lines
780 B
Vue
<template>
|
|
<view :class="theme_view">
|
|
<view class="copyright">
|
|
<view class="text">{{application_title}} {{version}}</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
const app = getApp();
|
|
export default {
|
|
data() {
|
|
return {
|
|
theme_view: app.globalData.get_theme_value_view(),
|
|
application_title: app.globalData.get_application_title(),
|
|
version: app.globalData.data.version
|
|
};
|
|
},
|
|
components: {},
|
|
props: {},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
<style>
|
|
.copyright {
|
|
color: #cfcfcf;
|
|
text-align: center;
|
|
padding: 20rpx 0;
|
|
}
|
|
.copyright .text {
|
|
font-size: 26rpx;
|
|
font-weight: 400;
|
|
}
|
|
</style> |