abount.vue 778 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="page" >
  3. <view class="" v-html="content"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. content:''
  11. };
  12. },
  13. onLoad() {
  14. this.getHelpConfig()
  15. },
  16. methods:{
  17. getHelpConfig(){
  18. this.$u.post('/api/common/getHelpConfig').then(res=>{
  19. console.log(res);
  20. // this.content = res.data[1].value
  21. const a = new RegExp('style=""', 'gi')
  22. var content = res.data[1].value.replace(a, `styles`)
  23. const regex = new RegExp('<img', 'gi')
  24. this.content = content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .page{
  32. font-size: 28rpx;
  33. font-family: SFPro, SFPro;
  34. font-weight: 400;
  35. color: #333333;
  36. padding:24rpx 28rpx
  37. }
  38. </style>