index.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="about-container">
  3. <view class="header-section text-center">
  4. <uni-title type="h2" title="宜宾消防移动端"></uni-title>
  5. </view>
  6. <view class="content-section">
  7. <view class="menu-list">
  8. <view class="list-cell list-cell-arrow">
  9. <view class="menu-item-box">
  10. <view>版本信息</view>
  11. <view class="text-right">v{{version}}</view>
  12. </view>
  13. </view>
  14. <view class="list-cell list-cell-arrow">
  15. <view class="menu-item-box">
  16. <view>官方邮箱</view>
  17. <view class="text-right">7685413@qq.com</view>
  18. </view>
  19. </view>
  20. <view class="list-cell list-cell-arrow">
  21. <view class="menu-item-box">
  22. <view>服务热线</view>
  23. <view class="text-right">400-999-9999</view>
  24. </view>
  25. </view>
  26. <view class="list-cell list-cell-arrow">
  27. <view class="menu-item-box">
  28. <view>公司网站</view>
  29. <view class="text-right">
  30. <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="copyright">
  37. <view>Copyright &copy; 2022 iocoder.cn All Rights Reserved.</view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. url: getApp().globalData.config.appInfo.site_url,
  46. version: getApp().globalData.config.appInfo.version
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss">
  52. page {
  53. background-color: #f8f8f8;
  54. }
  55. .copyright {
  56. margin-top: 50rpx;
  57. text-align: center;
  58. line-height: 60rpx;
  59. color: #999;
  60. }
  61. .header-section {
  62. display: flex;
  63. padding: 30rpx 0 0;
  64. flex-direction: column;
  65. align-items: center;
  66. }
  67. </style>