guanwang.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view>
  3. <!-- 胶囊 -->
  4. <!-- <mvBar :mysNavConfig="mysNavConfig"></mvBar>
  5. <view :style="{marginTop:navH}"></view> -->
  6. <!-- <view class="home"> -->
  7. <!-- 我是新人指南页面 -->
  8. <!-- <web-view src="https://www.baidu.com/"></web-view> -->
  9. <web-view src="https://younggee.com/index"></web-view>
  10. <!-- </view> -->
  11. </view>
  12. </template>
  13. <script>
  14. import mvBar from "@/components/mys_navBar/mysNavBar";
  15. export default {
  16. components: {
  17. mvBar,
  18. },
  19. data() {
  20. return {
  21. navH: getApp().globalData.navHeight,
  22. picture: getApp().globalData.picture,
  23. mysNavConfig: {
  24. /* 占位开启 */
  25. // navPadding: true,
  26. /* 背景 */
  27. // bgColor: "#f8f8f8",
  28. /* 开启单页显示首页图标 */
  29. isHome: true,
  30. /* 固定导航 */
  31. navFixed: true,
  32. /* 标题 (屏幕中心居中 两边图标中心居中使用slot center1) */
  33. navTitle: {
  34. text: "官网",
  35. color: "",
  36. fontSize: "32rpx", // px upx rpx
  37. fontWeight: "", // 100 - 700
  38. },
  39. btnType: "type2",
  40. onLeftClick: '',
  41. /* type2 按钮 */
  42. type2Config: {
  43. // 左图标
  44. leftPath: "/static/img/png2.png",
  45. // 右图标
  46. rightPath: "/static/img/png4.png",
  47. // 圆角
  48. radius: "40rpx",
  49. },
  50. /* 定义右侧图标 */
  51. // rightIconPath: "/static/s.png",
  52. },
  53. };
  54. },
  55. methods: {
  56. }
  57. };
  58. </script>
  59. <style>
  60. </style>
  61. <style lang="scss" scoped>
  62. .butto {
  63. text-align: center;
  64. }
  65. .option {
  66. padding: 20rpx;
  67. }
  68. .uni-margin-wrap {
  69. width: 690rpx;
  70. width: 100%;
  71. ;
  72. }
  73. .swiper {
  74. height: 300rpx;
  75. }
  76. .swiper-item {
  77. display: block;
  78. height: 300rpx;
  79. line-height: 300rpx;
  80. text-align: center;
  81. }
  82. .swiper-list {
  83. margin-top: 40rpx;
  84. margin-bottom: 0;
  85. }
  86. .uni-common-mt {
  87. margin-top: 60rpx;
  88. position: relative;
  89. }
  90. .info {
  91. position: absolute;
  92. right: 20rpx;
  93. }
  94. .uni-padding-wrap {
  95. width: 550rpx;
  96. padding: 0 100rpx;
  97. }
  98. </style>