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
| <template>
| <view class="box">
| <view class="box_nr" v-html="info.code"></view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| info: {}
| };
| },
| onLoad() {
| this.$u.api.getSysDict({ dicCode: 'SYSTEM', label: 'RIDING_REGULATION' })
| .then(res => {
| if (res.code === 200) {
| this.info = res.data
| }
| })
| }
| }
| </script>
| <style>
| page {
| background-color: #f7f7f7;
| }
| </style>
| <style lang="scss" scoped>
| .box {
| width: 100%;
| padding: 20rpx;
| box-sizing: border-box;
| .box_nr {
| width: 100%;
| padding: 30rpx;
| box-sizing: border-box;
| background-color: #ffffff;
| }
| }
| </style>
|
|