index.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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().then(res => {
  30. if (res.data.code == 200) {
  31. // 是否信息完整
  32. if (res.data.result.completeInformation != 2) {
  33. // uni.navigateTo({
  34. // url: '/pages/login/perfect',
  35. // })
  36. uni.reLaunch({
  37. url: '/pages/login/login'
  38. });
  39. }
  40. }
  41. })
  42. },
  43. configInfo() {
  44. this.$http.configInfo()
  45. .then(res => {
  46. if (res.data.code == 200) {
  47. console.log(res)
  48. this.data = res.data.result
  49. let str = res.data.result.xmjs
  50. this.xmjs = str.replace(/\<img/gi, '<img style="max-width:100%;height:auto" ').replace(/\<p>/gi, '<p style="word-break:break-all;">');
  51. // console.log(this.data)
  52. }
  53. })
  54. },
  55. onChange(index) {
  56. uniLinkTo(this.vuex_tab_page[index], 'tab')
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. .index {
  63. padding-bottom: 120rpx;
  64. .headImg {
  65. width: 100%;
  66. height: 350rpx;
  67. image {
  68. width: 100%;
  69. height: 100%;
  70. }
  71. }
  72. .con {
  73. width: 680rpx;
  74. margin: 24rpx auto;
  75. padding: 32rpx;
  76. background-color: #fff;
  77. border-radius: 24rpx;
  78. }
  79. }
  80. </style>