RightSliderBar.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <div class="rightSlider">
  3. <a href="javascript:void(0)" :class="navIndexs === index?'sliderStyle':''" @click="routeTap(item.url,index,url);goToAnchor(item.id,index);navIndexs=index" class="sliders" v-for="(item,index) in rightSlider">
  4. <div class="img-icons">
  5. <img :src="item.src">
  6. </div>
  7. <div class="sliderName">{{item.name}}</div>
  8. <div class="slider-bottom">
  9. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/line.png">
  10. </div>
  11. </a>
  12. <div class="wx-service">
  13. <div class="bg-color">
  14. <img src="@/assets/img/qy-wx.jpg">
  15. </div>
  16. <div class="wx-zx">微信咨询</div>
  17. <div class="wx-text">(手机扫码查看)</div>
  18. </div>
  19. </div>
  20. </template>
  21. <script setup>
  22. import {get_config} from "@/api/menu1";
  23. let config=ref('');
  24. if(localStorage.getItem('config')){
  25. let data=JSON.parse(localStorage.getItem('config'))
  26. config.value=data
  27. }else{
  28. get_config().then((res)=>{
  29. config.value=res.data
  30. })
  31. }
  32. import { provide, reactive, ref } from 'vue'
  33. import {defineProps} from "@vue/runtime-core";
  34. import {useRouter} from "vue-router";
  35. import {rouseService} from "@/utils";
  36. const anchorIndex = ref(0)
  37. const urls=ref(null)
  38. const rightSlider =
  39. [{ name: '快速报价', id: 'anchor1', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-offer-icon.png',url:'/evaluates' },
  40. { name: '限时特惠', id: 'anchor2', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-seckill-icon.png',url:'/seckillRank' },
  41. { name: '热销爆款', id: 'anchor3', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-hot-icon.png',url:'/hotSellRank' },
  42. { name: '产品定制', id: 'anchor4', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-custom-icon.png',url:'/product' },
  43. { name: '方案设计', id: 'anchor5', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-plan-icon.png' },
  44. { name: '云平台', id: 'anchor6', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-platform-icon.png',url:'/cloundPlatform' },
  45. { name: '在线咨询', id: 'anchor7', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/index/index-kf-icon.png' }]
  46. const goToAnchor = (selector, index) => {
  47. const id = '#' + selector
  48. }
  49. const $router=useRouter()
  50. const routeTap=(url,index)=>{
  51. if(index==6){
  52. rouseService()
  53. return;
  54. }
  55. if(url){
  56. $router.push({path:url})
  57. }
  58. }
  59. const props = defineProps({
  60. navIndexs:{
  61. type: Number,
  62. },
  63. url:{
  64. type:String,
  65. }
  66. })
  67. </script>
  68. <style lang="less" scoped>
  69. .rightSlider{
  70. position: fixed;
  71. top: 100px;
  72. right: 0;
  73. background-color: #fff;
  74. z-index: 1111;
  75. .wx-service{
  76. //width: 100px;
  77. //height: 119px;
  78. cursor: pointer;
  79. padding: 8px 0;
  80. background: #fff;
  81. border-radius: 12px 0px 0px 12px;
  82. text-align: center;
  83. .bg-color{
  84. width: 74px;
  85. height: 74px;
  86. //background-color: #9a9ca0;
  87. margin: 0 auto;
  88. img{
  89. width: 74px;
  90. height: 74px;
  91. }
  92. }
  93. .wx-zx{
  94. color: #333;
  95. font-size: 14px;
  96. margin: 5px 0;
  97. }
  98. .wx-text{
  99. color: #333;
  100. font-size: 10px;
  101. }
  102. }
  103. .sliderName{
  104. padding: 10px 0 0 0;
  105. font-size: 14px;
  106. }
  107. .sliderStyle{
  108. color: #fff!important;
  109. background-color: #4171B3!important;
  110. border-radius: 12px 0 0 12px;
  111. }
  112. .sliders{
  113. padding-top: 15px;
  114. background-color: #fff;
  115. display: block;
  116. font-size: 14px;
  117. text-align: center;
  118. color: #333;
  119. text-decoration: none;
  120. .slider-bottom{
  121. img{
  122. width: 60px;
  123. height: 4px;
  124. }
  125. }
  126. }
  127. }
  128. </style>