about.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="content">
  3. <view class="row b-b">
  4. <text class="tit">版本号</text>
  5. <text class="tiv">v1.0.0</text>
  6. </view>
  7. <!-- <view class="row b-b">
  8. <text class="tit">贡献</text>
  9. <text class="tiv">WCZ\KBQ</text>
  10. </view> -->
  11. <view class="row b-b">
  12. <text class="tit">邮箱</text>
  13. <text class="tiv">hehefresh@163.com</text>
  14. </view>
  15. <text class="tcp">由kxmll发展有限公司开发</text>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. page {
  30. background: $page-color-base;
  31. padding-top: 16upx;
  32. }
  33. .row{
  34. display: flex;
  35. align-items: center;
  36. position: relative;
  37. padding:0 30upx;
  38. height: 110upx;
  39. background: #fff;
  40. .tit{
  41. flex-shrink: 0;
  42. width: 120upx;
  43. font-size: 30upx;
  44. color: $font-color-dark;
  45. }
  46. .tiv{
  47. flex: 1;
  48. font-size: 30upx;
  49. color: #aaaaaa;
  50. text-align: right;
  51. }
  52. }
  53. .tcp{
  54. width: 100%;
  55. font-size: 28upx;
  56. color: #aaaaaa;
  57. text-align: center;
  58. position: absolute;
  59. bottom: 200upx;
  60. }
  61. </style>