1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| <template>
| <div class="CommonProblem">
| <van-nav-bar :title="$t('常见问题')" left-arrow @click-left="onClickLeft" />
| <div class="CommonProblem-title font-53 pl-33 lh-62 mt-56 mb-17">{{ $t('常见问题') }}</div>
| <div class="font-25 text-grey lh-28 pl-33 ">{{ $t('最新更新时间: 2022年6月6日') }}</div>
| <div>
| <div class="CommonProblem_detail font-31 px-33 mt-55 lh-36">
|
| </div>
| <van-icon class="textColor" name="arrow" />
| </div>
|
|
| </div>
| </template>
| <script>
| import { Icon, NavBar } from 'vant'
| export default {
| components: {
| [Icon.name]: Icon,
| [NavBar.name]: NavBar,
| },
| data() {
| return {}
| },
| methods: {
| onClickLeft() {
| this.$router.push('/')
| },
| }
| }
| </script>
| <style lang="scss" scoped>
| .CommonProblem-title {
| font-weight: 700;
| color: #000000;
| }
|
| .CommonProblem_detail {
| color: #000000;
|
| .problem {
| text-decoration: underline;
| }
| }
| </style>
|
|