fenlei.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <web-view :src="baseUrl"></web-view>
  3. </template>
  4. <script>
  5. export default{
  6. data() {
  7. return {
  8. baseUrl: ''
  9. }
  10. },
  11. onLoad() {
  12. this.baseUrl = getApp().globalData.baseDomain + '/fenlei/index'
  13. }
  14. }
  15. </script>
  16. <style lang="less">
  17. .zn-container{
  18. width: 100%;
  19. }
  20. // page{
  21. // background: #FFFFFF;
  22. // }
  23. // .container{
  24. // font-size: 32rpx;
  25. // padding:0 50rpx;
  26. // text-align: center;
  27. // color:#666;
  28. // .logoContent{
  29. // .logoBorder{
  30. // width:200rpx;
  31. // height:200rpx;
  32. // border:2px solid #eee;
  33. // border-radius: 20rpx;
  34. // margin:50rpx 0 15rpx 0;
  35. // display: inline-block;
  36. // position: relative;
  37. // .logoImg{
  38. // width:135rpx;
  39. // height:180rpx;
  40. // position: absolute;
  41. // top:0;
  42. // left:0;
  43. // right:0;
  44. // bottom:0;
  45. // margin:auto;
  46. // }
  47. // }
  48. // }
  49. // .textContent{
  50. // text-align: left;
  51. // margin-top: 30rpx;
  52. // font-size: 32rpx;
  53. // .tetxTitle{
  54. // margin-bottom: 10rpx;
  55. // font-size: 32rpx;
  56. // }
  57. // > view{
  58. // padding: 16upx 0;
  59. // line-height: 50upx;
  60. // text-indent: 60rpx;
  61. // }
  62. // }
  63. // }
  64. </style>