源文件
This commit is contained in:
33
components/copyright/copyright.vue
Normal file
33
components/copyright/copyright.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user