12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view style="padding: 24rpx;" v-html="content">
- </view>
- </template>
- <script>
- import {get_agreement_detail} from "@/units/inquire.js"
- export default {
- data() {
- return {
- type: '',
- content: ''
- }
- },
- onLoad(option) {
- this.type = option.type
- },
- onShow() {
- this.getdata()
- },
- methods: {
- getdata() {
-
-
-
-
-
-
-
-
-
-
-
-
- get_agreement_detail({
- code: {
- 1: 'user_service',
- 2: 'privacy'
- } [this.type]
- }).then(res => {
- uni.setNavigationBarTitle({
- title: res.data.title
- })
- const regex = new RegExp('<img', 'gi')
- this.content = res.data.content.replace(regex, `<img style="max-width: 100%; height: auto"`)
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|