12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="">
- <u-navbar
- title="积分规则"
- :autoBack="true"
- :safeAreaInsetTop="true"
- >
- </u-navbar>
- <view class="title">积分规则</view>
- <u-parse :content="content"></u-parse>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content:'',
- }
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- page{
- background-color: #f5f5f5;
- }
- </style>
- <style lang="scss" scoped>
- .title{
- text-align: center;
- }
- </style>
|