index.vue 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="about-container">
  3. <view class="header-section text-center">
  4. <uni-title type="h4" title="了解小鹅通"></uni-title>
  5. </view>
  6. <view class="content-section">
  7. <view class="list-cell list-cell-arrow">
  8. <view>公司网站</view>
  9. <view class="text-right">
  10. <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. url: getApp().globalData.config.appInfo.site_url,
  21. version: getApp().globalData.config.appInfo.version
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. page {
  28. background-color: #f8f8f8;
  29. }
  30. .copyright {
  31. margin-top: 50rpx;
  32. text-align: center;
  33. line-height: 60rpx;
  34. color: #999;
  35. }
  36. .header-section {
  37. display: flex;
  38. padding: 30rpx 0 0;
  39. flex-direction: column;
  40. align-items: center;
  41. }
  42. </style>