about.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view>
  3. <u-navbar title="关于我们"></u-navbar>
  4. <u-cell-group>
  5. <u-cell-item title="平台介绍"></u-cell-item>
  6. <u-cell-item title="用户注册协议"></u-cell-item>
  7. <u-cell-item title="隐私协议"></u-cell-item>
  8. <u-cell-item title="证照信息"></u-cell-item>
  9. </u-cell-group>
  10. <view class="code">
  11. <h4>分享公众号给好友</h4>
  12. <view class="code-img">
  13. <img src="../../assets/img/logo.png" alt="">
  14. <p>微信扫码关注</p>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import * as API from '@/apis/finance.js'
  21. export default {
  22. data() {
  23. return {
  24. form: {
  25. name: '',
  26. intro: '',
  27. },
  28. }
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style>
  35. page{
  36. background-color: #F7F7F7;
  37. }
  38. </style>
  39. <style lang="scss" scoped>
  40. .code{
  41. margin-top: 10px;
  42. background-color: #fff;
  43. padding: 16px;
  44. .code-img{
  45. text-align: center;
  46. margin-top: 10px;
  47. p{
  48. }
  49. }
  50. h4{
  51. font-weight: normal;
  52. font-size: 16px;
  53. }
  54. img{
  55. height: 120px;
  56. width: 120px;
  57. }
  58. }
  59. </style>