cooperation.vue 1.8 KB

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