From b0733e169ddcdf67e81f70dcf7f4dc948e85ff19 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期五, 21 一月 2022 22:20:12 +0800 Subject: [PATCH] fixed#134599 修正 [ 顧問管理流程 ] 結案狀態的預約單 : 在結案明細中,點擊「發送滿意度通知」沒有反映。 --- PAMapp/components/Ui/UiCarousel.vue | 73 ++++++++++++++++++++++++++++++++---- 1 files changed, 64 insertions(+), 9 deletions(-) diff --git a/PAMapp/components/Ui/UiCarousel.vue b/PAMapp/components/Ui/UiCarousel.vue index b726c82..5f05473 100644 --- a/PAMapp/components/Ui/UiCarousel.vue +++ b/PAMapp/components/Ui/UiCarousel.vue @@ -1,17 +1,26 @@ <template> <div> <el-carousel - height="260px" - :autoplay="true" indicator-position="outside" arrow="never" trigger="click" + class="pam-home-carousel" > - <el-carousel-item - v-for="(item, index) in 3" - :key="index" - > - <h3>{{ item }}</h3> + <el-carousel-item class="banner-img-style banner1-img"> + <div class="text--center mt-30 banner-info"> + <h1 class="banner-title mb-10">�犖������“���</h1> + <p class="banner-txt text--PRIMARY_WHITE">����嚗�������</p> + <p class="banner-txt text--PRIMARY_WHITE">霈��鼠�敹恍�������“����</p> + <p class="banner-txt text--PRIMARY_WHITE">閫�瘙箔�憭批������嚗�銵���</p> + </div> + </el-carousel-item> + + <el-carousel-item class="banner-img-style banner2-img"> + <div class="text--center mt-30 banner-info"> + <h1 class="banner-title mb-10">憭���撘�</h1> + <p class="banner-txt text--PRIMARY_WHITE">頛����憿批��</p> + <p class="banner-txt text--PRIMARY_WHITE">慦���“��蜓��蝜�</p> + </div> </el-carousel-item> </el-carousel> </div> @@ -27,7 +36,53 @@ </script> <style lang="scss" scoped> -.el-carousel__item { - background-color: #d3dce6; +.banner-img-style { + width: 100%; + height: 100%; + background-repeat: no-repeat; + background-size: cover; + background-position: bottom; } +.banner1-img { + background-image: url('~/assets/images/index_banner_mob.svg'); +} + +.banner2-img { + background-image: url('~/assets/images/index_banner2_mob.svg'); +} + +.banner-info { + .banner-title { + @extend .title; + } + + .banner-txt { + @extend .smTxt_bold; + line-height: 21px; + } +} + +@media (min-width: 576px) { + .banner1-img { + background-image: url('~/assets/images/index_banner_web.svg'); + } + + .banner2-img { + background-image: url('~/assets/images/index_banner2_web.svg'); + } +} + +@include desktop { + .banner-info { + .banner-title { + font-size: 40px; + } + + .banner-txt { + font-size: 18px; + line-height: 24px; + } + } +} + </style> \ No newline at end of file -- Gitblit v1.8.0