guide.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="guide">
  3. <view class="con" v-html="data">
  4. </view>
  5. <tabBar :pagePath="'/pages/index/guide'"></tabBar>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. data:{},
  13. }
  14. },
  15. onLoad(option) {
  16. this.configInfo()
  17. this.getUserInfo()
  18. },
  19. methods: {
  20. configInfo(){
  21. this.$http.configInfo()
  22. .then(res=>{
  23. if(res.data.code==200){
  24. console.log(res)
  25. let str = res.data.result.czzn
  26. this.data=str.replace(/\<img/gi, '<img style="max-width:100%;height:auto" ').replace(/\<p>/gi, '<p style="word-break:break-all;">');
  27. }
  28. })
  29. },
  30. getUserInfo(){
  31. this.$http.getUserInfo()
  32. .then(res=>{
  33. if(res.data.code==200){
  34. // 是否信息完整
  35. if(res.data.result.completeInformation != 2){
  36. uni.navigateTo({
  37. url: '/pages/login/perfect',
  38. })
  39. }
  40. }
  41. })
  42. },
  43. }
  44. }
  45. </script>
  46. <style lang="scss">
  47. .guide{
  48. padding-bottom: 120rpx;
  49. .headImg{
  50. width: 100%;
  51. height: 350rpx;
  52. }
  53. .con{
  54. width:680rpx;
  55. margin: 24rpx auto;
  56. padding:32rpx;
  57. background-color: #fff;
  58. border-radius: 24rpx;
  59. }
  60. }
  61. </style>