about.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view>
  3. <u-navbar title="关于我们"></u-navbar>
  4. <view class="about">
  5. <img src="../../static/img/aboutus.png" alt="">
  6. <p>51充电联盟</p>
  7. </view>
  8. <u-cell-group>
  9. <u-cell-item title="用户协议" @click="gotoUrl('pages/article/details?code=YHXY')"></u-cell-item>
  10. <u-cell-item title="隐私政策" @click="gotoUrl('pages/article/details?code=YSZC')"></u-cell-item>
  11. <u-cell-item title="充值协议" @click="gotoUrl('pages/article/details?code=CZXY')"></u-cell-item>
  12. </u-cell-group>
  13. <view class="about-foot">
  14. <p>湖北荆鹏集团</p>
  15. <p>版权所有 Copyright ©2022</p>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. form: {
  24. name: '',
  25. intro: '',
  26. },
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. page{
  35. background-color: #F7F7F7;
  36. }
  37. </style>
  38. <style lang="scss" scoped>
  39. .about{
  40. background-color: #fff;
  41. padding: 36px 0;
  42. margin-bottom: 10px;
  43. display: flex;
  44. align-items: center;
  45. flex-direction: column;
  46. img{
  47. height: 120rpx;
  48. width: 120rpx;
  49. }
  50. p{
  51. margin-top: 8px;
  52. }
  53. }
  54. .about-foot{
  55. position: fixed;
  56. bottom:16px;
  57. text-align: center;
  58. left: 0;
  59. right: 0;
  60. p{
  61. color:#666;
  62. }
  63. }
  64. </style>