about.vue 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. 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. .code{
  40. margin-top: 10px;
  41. background-color: #fff;
  42. padding: 16px;
  43. .code-img{
  44. text-align: center;
  45. margin-top: 10px;
  46. p{
  47. }
  48. }
  49. h4{
  50. font-weight: normal;
  51. font-size: 16px;
  52. }
  53. img{
  54. height: 120px;
  55. width: 120px;
  56. }
  57. }
  58. </style>