guanwang.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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: {
  23. guide: 'https://horastar.obs.cn-east-3.myhuaweicloud.com/talent_upload/home/guide.png',
  24. coop: 'https://horastar.obs.cn-east-3.myhuaweicloud.com/talent_upload/home/coop.png'
  25. },
  26. mysNavConfig: {
  27. /* 占位开启 */
  28. // navPadding: true,
  29. /* 背景 */
  30. // bgColor: "#f8f8f8",
  31. /* 开启单页显示首页图标 */
  32. isHome: true,
  33. /* 固定导航 */
  34. navFixed: true,
  35. /* 标题 (屏幕中心居中 两边图标中心居中使用slot center1) */
  36. navTitle: {
  37. text: "官网",
  38. color: "",
  39. fontSize: "32rpx", // px upx rpx
  40. fontWeight: "", // 100 - 700
  41. },
  42. btnType: "type2",
  43. onLeftClick: '',
  44. /* type2 按钮 */
  45. type2Config: {
  46. // 左图标
  47. leftPath: "/static/img/png2.png",
  48. // 右图标
  49. rightPath: "/static/img/png4.png",
  50. // 圆角
  51. radius: "40rpx",
  52. },
  53. /* 定义右侧图标 */
  54. // rightIconPath: "/static/s.png",
  55. },
  56. };
  57. },
  58. methods: {
  59. }
  60. };
  61. </script>
  62. <style>
  63. </style>
  64. <style lang="scss" scoped>
  65. .butto {
  66. text-align: center;
  67. }
  68. .option {
  69. padding: 20rpx;
  70. }
  71. .uni-margin-wrap {
  72. width: 690rpx;
  73. width: 100%;
  74. ;
  75. }
  76. .swiper {
  77. height: 300rpx;
  78. }
  79. .swiper-item {
  80. display: block;
  81. height: 300rpx;
  82. line-height: 300rpx;
  83. text-align: center;
  84. }
  85. .swiper-list {
  86. margin-top: 40rpx;
  87. margin-bottom: 0;
  88. }
  89. .uni-common-mt {
  90. margin-top: 60rpx;
  91. position: relative;
  92. }
  93. .info {
  94. position: absolute;
  95. right: 20rpx;
  96. }
  97. .uni-padding-wrap {
  98. width: 550rpx;
  99. padding: 0 100rpx;
  100. }
  101. </style>