1.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div class="bannerItemBox">
  3. <el-carousel :interval="3333" height="405px" indicator-position="none" arrow="always" @change="change_fun">
  4. <el-carousel-item v-for="item in imagelist" :key="item.id">
  5. <img src="http://img.bjzxtw.org.cn/pre/image/jpeg/20250604/1749003080588921.jpg">
  6. <span class="swiper_dot1 dot1">
  7. {{ item.title }}
  8. </span>
  9. </el-carousel-item>
  10. <div class="roll_num_box">
  11. <span class="roll_num_box_new">{{ roll_num_this + 1 }}</span>/{{ roll_num_lang }}
  12. </div>
  13. </el-carousel>
  14. </div>
  15. </template>
  16. <script>
  17. import '@/styles/theme/body/index/banner/style1.less';
  18. export default {
  19. props: {
  20. },
  21. data() {
  22. return {
  23. roll_num_this: 0,
  24. roll_num_lang: 3,
  25. imagelist: [
  26. {
  27. id: 1,
  28. imgurl: 'http://img.bjzxtw.org.cn/pre/image/png/20250604/1748998088187321.png',
  29. title: '香港海洋公园为大熊猫“盈盈”“家姐”“细佬”搬新居迎宾客'
  30. },
  31. {
  32. id: 2,
  33. imgurl: 'http://img.bjzxtw.org.cn/pre/image/png/20250604/1748998088187321.png',
  34. title: '香港海洋公园为大熊猫“盈盈”“家姐”“细佬”搬新居迎宾客'
  35. },
  36. {
  37. id: 3,
  38. imgurl: 'http://img.bjzxtw.org.cn/pre/image/png/20250604/1748998088187321.png',
  39. title: '香港海洋公园为大熊猫“盈盈”“家姐”“细佬”搬新居迎宾客'
  40. },
  41. ]
  42. };
  43. },
  44. methods: {
  45. change_fun(the_1) {
  46. this.roll_num_this = the_1
  47. }
  48. },
  49. mounted() {
  50. },
  51. };
  52. </script>
  53. <style scoped lang="less">
  54. </style>