源文件

This commit is contained in:
gyq
2025-04-25 09:49:53 +08:00
commit 791d82b9e3
640 changed files with 130029 additions and 0 deletions

View 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>