index.vue 1.0 KB

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