123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <web-view :src="baseUrl"></web-view>
- </template>
- <script>
- export default{
- data() {
- return {
- baseUrl: ''
- }
- },
- onLoad() {
- this.baseUrl = getApp().globalData.baseDomain + '/fenlei/index'
- }
- }
- </script>
- <style lang="less">
- .zn-container{
- width: 100%;
- }
- // page{
- // background: #FFFFFF;
- // }
- // .container{
- // font-size: 32rpx;
- // padding:0 50rpx;
- // text-align: center;
- // color:#666;
- // .logoContent{
- // .logoBorder{
- // width:200rpx;
- // height:200rpx;
- // border:2px solid #eee;
- // border-radius: 20rpx;
- // margin:50rpx 0 15rpx 0;
- // display: inline-block;
- // position: relative;
- // .logoImg{
- // width:135rpx;
- // height:180rpx;
- // position: absolute;
- // top:0;
- // left:0;
- // right:0;
- // bottom:0;
- // margin:auto;
- // }
- // }
- // }
- // .textContent{
- // text-align: left;
- // margin-top: 30rpx;
- // font-size: 32rpx;
- // .tetxTitle{
- // margin-bottom: 10rpx;
- // font-size: 32rpx;
- // }
- // > view{
- // padding: 16upx 0;
- // line-height: 50upx;
- // text-indent: 60rpx;
- // }
- // }
- // }
- </style>
|