index.vue 1.4 KB

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