123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <view class="about-container">
- <view class="header-section text-center">
- <uni-title type="h4" title="了解小鹅通"></uni-title>
- </view>
- <view class="content-section">
- <view class="list-cell list-cell-arrow">
-
- <view>公司网站</view>
- <view class="text-right">
- <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
- </view>
-
- </view>
- </view>
- </view>
-
- </template>
- <script>
- export default {
- data() {
- return {
- url: getApp().globalData.config.appInfo.site_url,
- version: getApp().globalData.config.appInfo.version
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #f8f8f8;
- }
- .copyright {
- margin-top: 50rpx;
- text-align: center;
- line-height: 60rpx;
- color: #999;
- }
- .header-section {
- display: flex;
- padding: 30rpx 0 0;
- flex-direction: column;
- align-items: center;
- }
- </style>
|