123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view>
- <u-navbar title="关于我们"></u-navbar>
- <u-cell-group>
- <u-cell-item title="平台介绍"></u-cell-item>
- <u-cell-item title="用户注册协议"></u-cell-item>
- <u-cell-item title="隐私协议"></u-cell-item>
- <u-cell-item title="证照信息"></u-cell-item>
- </u-cell-group>
- <view class="code">
- <h4>分享公众号给好友</h4>
- <view class="code-img">
- <img src="../../assets/img/logo.png" alt="">
- <p>微信扫码关注</p>
- </view>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/finance.js'
-
- export default {
- data() {
- return {
- form: {
- name: '',
- intro: '',
- },
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- page{
- background-color: #F7F7F7;
- }
- </style>
- <style lang="scss" scoped>
- .code{
- margin-top: 10px;
- background-color: #fff;
- padding: 16px;
- .code-img{
- text-align: center;
- margin-top: 10px;
- p{
-
- }
- }
- h4{
- font-weight: normal;
- font-size: 16px;
- }
- img{
- height: 120px;
- width: 120px;
- }
- }
- </style>
|