problem.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view class="page">
  3. <view class="" v-html='content'>
  4. <!-- <view class="u-flex">
  5. <view class="icon">
  6. </view>
  7. <text class="title">关于怎样才能注册账号?</text>
  8. </view>
  9. <view class="font1">
  10. 1.打开百度爱采购首页(b2b.baid
  11. </view> -->
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. content: ''
  20. };
  21. },
  22. onLoad() {
  23. this.getHelpConfig()
  24. },
  25. methods: {
  26. getHelpConfig() {
  27. this.$u.post('/api/common/getHelpConfig').then(res => {
  28. console.log(res);
  29. // this.content = res.data[1].value
  30. const a = new RegExp('style=""', 'gi')
  31. var content = res.data[0].value.replace(a, `styles`)
  32. const regex = new RegExp('<img', 'gi')
  33. this.content = content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .page {
  41. min-height: 100vh;
  42. padding: 40rpx 28rpx 0;
  43. border-top: 2rpx solid #EBEBEB;
  44. ;
  45. }
  46. .font1 {
  47. font-size: 24rpx;
  48. font-family: SFPro, SFPro;
  49. font-weight: 400;
  50. color: #333333;
  51. margin-top: 26rpx;
  52. }
  53. .icon {
  54. width: 8rpx;
  55. height: 32rpx;
  56. background: #06A971;
  57. }
  58. .title {
  59. height: 40rpx;
  60. font-size: 28rpx;
  61. font-family: PingFangSC, PingFang SC;
  62. font-weight: 500;
  63. color: #333333;
  64. margin-left: 12rpx;
  65. }
  66. </style>