123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="fuli-info">
- <u-parse :html="content"></u-parse>
- </view>
- </template>
- <script>
- export default {
- data(){
- return{
- id:'',
- content:''
- }
- },
- onLoad(option) {
- this.id = option.id
- this.getdata()
- },
- methods:{
- getdata(){
- this.$u.post("/api/welfare/welfare_detail",{
- id:this.id
- }).then(res => {
- const regex = new RegExp('<img', 'gi')
- this.content = res.data.content.replace(regex, `<img style="max-width: 100%; height: auto"`)
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .fuli-info{
- padding: 24rpx;
- }
- </style>
|