index.uvue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view class=" about-container my-page">
  3. <view class=" header-section text-center">
  4. <image style="width: 150rpx;height: auto;" src="/static/logo200.png" mode="widthFix">
  5. </image>
  6. <view class="uni-title__box" style="align-items:left">
  7. <text class="uni-title__base uni-h2" style="color:#333333 ;">若依移动端</text>
  8. </view>
  9. </view>
  10. <view class=" content-section">
  11. <view class=" menu-list">
  12. <view class=" list-cell list-cell-arrow">
  13. <view class=" menu-item-box uni-row">
  14. <view class=" font-14">版本信息</view>
  15. <view class=" text-right font-14">v{{version}}</view>
  16. </view>
  17. </view>
  18. <view class=" list-cell list-cell-arrow">
  19. <view class=" menu-item-box uni-row">
  20. <view class=" font-14">官方邮箱</view>
  21. <view class=" text-right font-14">ruoyi@xx.com</view>
  22. </view>
  23. </view>
  24. <view class=" list-cell list-cell-arrow">
  25. <view class=" menu-item-box uni-row">
  26. <view class=" font-14">服务热线</view>
  27. <view class=" text-right font-14">400-999-9999</view>
  28. </view>
  29. </view>
  30. <view class=" list-cell list-cell-arrow">
  31. <view class=" menu-item-box uni-row">
  32. <view class=" font-14">公司网站</view>
  33. <view class=" text-right font-14">
  34. <navigator :url="'/pages/common/webview/index?title=公司网站&url='+url" >{{url}}</navigator>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class=" copyright">
  41. <view class="font-14 text-center">Copyright &copy; 2022 ruoyi.vip All Rights Reserved.</view>
  42. </view>
  43. </view>
  44. </template>
  45. <script lang="uts">
  46. export default {
  47. data() {
  48. return {
  49. url: getApp().globalData.config.appInfo.site_url,
  50. version: getApp().globalData.config.appInfo.version
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. .my-page {
  57. background-color: #f8f8f8;
  58. width: 100%;
  59. height: 100%;
  60. }
  61. .copyright {
  62. margin-top: 50rpx;
  63. text-align: center;
  64. line-height: 60rpx;
  65. color: #999;
  66. }
  67. .header-section {
  68. display: flex;
  69. padding: 30rpx 0 0;
  70. flex-direction: column;
  71. align-items: center;
  72. }
  73. .uni-title__box {
  74. /* #ifndef APP-NVUE */
  75. display: flex;
  76. /* #endif */
  77. flex-direction: column;
  78. align-items: flex-start;
  79. justify-content: center;
  80. padding: 8px 0;
  81. flex: 1;
  82. }
  83. .uni-title__base {
  84. font-size: 15px;
  85. color: #333;
  86. /* #ifndef APP-ANDROID */
  87. font-weight: 500;
  88. /* #endif */
  89. /* #ifdef APP-ANDROID */
  90. font-weight: 400;
  91. /* #endif */
  92. }
  93. .uni-h1 {
  94. font-size: 20px;
  95. color: #333;
  96. font-weight: bold;
  97. }
  98. .uni-h2 {
  99. font-size: 18px;
  100. color: #333;
  101. font-weight: bold;
  102. }
  103. .uni-h3 {
  104. font-size: 16px;
  105. color: #333;
  106. font-weight: bold;
  107. /* font-weight: 400; */
  108. }
  109. .uni-h4 {
  110. font-size: 14px;
  111. color: #333;
  112. font-weight: bold;
  113. /* font-weight: 300; */
  114. }
  115. .uni-h5 {
  116. font-size: 12px;
  117. color: #333;
  118. font-weight: bold;
  119. /* font-weight: 200; */
  120. }
  121. </style>