综合办公系统
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.vue 1.6KB

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