index.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="about-container">
  3. <view class="header-section text-center">
  4. <image style="width: 150rpx;height: 150rpx;" src="/static/logo200.png" mode="widthFix">
  5. </image>
  6. <uni-title type="h2" title="若依移动端"></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">ruoyi@xx.com</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">400-999-9999</view>
  26. </view>
  27. </view>
  28. <view class="list-cell list-cell-arrow">
  29. <view class="menu-item-box">
  30. <view>公司网站</view>
  31. <view class="text-right">
  32. <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="copyright">
  39. <view>Copyright &copy; 2022 ruoyi.vip All Rights Reserved.</view>
  40. </view>
  41. </view>
  42. </template>
  43. <script setup>
  44. import config from '@/config.js'
  45. const url=config.appInfo.site_url;
  46. const version=config.appInfo.version;
  47. </script>
  48. <style lang="scss">
  49. page {
  50. background-color: #f8f8f8;
  51. }
  52. .copyright {
  53. margin-top: 50rpx;
  54. text-align: center;
  55. line-height: 60rpx;
  56. color: #999;
  57. }
  58. .header-section {
  59. display: flex;
  60. padding: 30rpx 0 0;
  61. flex-direction: column;
  62. align-items: center;
  63. }
  64. </style>