index.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <div class="block text-center">
  3. <el-carousel arrow="never" interval="5000" motion-blur>
  4. <el-carousel-item
  5. v-for="(item, index) in props.banneImageList"
  6. :key="index"
  7. >
  8. <img class="version-img" :src="item.imgUrl || item.image" alt="" />
  9. <div v-if="item.isBtn">
  10. <template v-for="(btnItem, btnIndex) in item.btnList" :key="btnIndex">
  11. <button
  12. class="detail"
  13. @click="toUrl(btnItem.jump_url)"
  14. v-if="btnItem.text"
  15. :style="{
  16. backgroundColor: btnItem.backgroundColor,
  17. color: btnItem.color,
  18. }"
  19. >
  20. {{ btnItem.text }}
  21. </button></template
  22. >
  23. </div>
  24. </el-carousel-item>
  25. </el-carousel>
  26. </div>
  27. </template>
  28. <script setup lang="ts">
  29. import { ElMessage } from "element-plus";
  30. const props = defineProps({
  31. banneImageList: {
  32. type: Array as any,
  33. default: () => {
  34. return [];
  35. },
  36. },
  37. });
  38. console.log(props.banneImageList);
  39. const toUrl = (url: string) => {
  40. if (!url) {
  41. ElMessage({
  42. type: "warning",
  43. message: "待开放",
  44. });
  45. return;
  46. }
  47. window.open(url);
  48. };
  49. </script>
  50. <style scoped lang="less">
  51. .demonstration {
  52. color: var(--el-text-color-secondary);
  53. }
  54. :deep(.el-carousel__container) {
  55. height: 500px;
  56. }
  57. .detail {
  58. position: relative;
  59. width: 168px;
  60. height: 53px;
  61. background-color: #0d0fff;
  62. color: #fff;
  63. font-size: 16px;
  64. border: none;
  65. cursor: pointer;
  66. z-index: 1000;
  67. bottom: 181px;
  68. left: 360px;
  69. margin-right: 20px;
  70. border-radius: 4px;
  71. }
  72. .el-carousel__item img {
  73. width: 100%;
  74. height: 100%;
  75. }
  76. .el-carousel__item:nth-child(2n) {
  77. background-color: #99a9bf;
  78. }
  79. .el-carousel__item:nth-child(2n + 1) {
  80. background-color: #d3dce6;
  81. }
  82. </style>