MrShi
4 天以前 4fabfe4dbd2eb28d07a4350597d314958cc1c281
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">
        <u-parse :content="info.code"></u-parse>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                info: {}
            };
        },
        onLoad() {
            this.$u.api.getSysDict({ dicCode: 'SYSTEM', label: 'PRICING_RULE' })
                .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>