综合办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.vue 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="about-container">
  3. <view class="header-section text-center">
  4. <image style="width: 150rpx;height: 150rpx;" src="/static/logo.png" mode="widthFix">
  5. </image>
  6. <uni-title type="h2" title="CMC综合办公移动端"></uni-title>
  7. </view>
  8. <view class="content-section">
  9. <view class="menu-list">
  10. <view class="list-cell list-cell-arrow">
  11. <view class="menu-item-box">
  12. <view>版本信息</view>
  13. <view class="text-right">v{{version}}</view>
  14. </view>
  15. </view>
  16. <view class="list-cell list-cell-arrow">
  17. <view class="menu-item-box">
  18. <view>公司网站</view>
  19. <view class="text-right">
  20. <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="copyright">
  27. <view>Copyright &copy; 2025 cmc All Rights Reserved.</view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. url: getApp().globalData.config.appInfo.site_url,
  36. version: getApp().globalData.config.appInfo.version
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. page {
  43. background-color: #f8f8f8;
  44. }
  45. .copyright {
  46. margin-top: 50rpx;
  47. text-align: center;
  48. line-height: 60rpx;
  49. color: #999;
  50. }
  51. .header-section {
  52. display: flex;
  53. padding: 30rpx 0 0;
  54. flex-direction: column;
  55. align-items: center;
  56. }
  57. </style>