123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- <template>
- <div class="module-item-duo" :style="!module.base.m?'margin-top:0' : ''">
- <moduleTitle :title="module.title" v-if="module.title.t.s" />
- <view class="item-duo-con" :style="style">
- <moduleBg :base="module.base" />
- <!--样式一-->
- <view class="item-duo-style1" :class="'col' + module.base.c" v-if="module.base.s == 0">
- <view @click="$util.openAttr(module.list,index)" class="item" :url="item.link.n"
- v-for="(item,index) of module.list" :key="index" :data-url="item.link.n" :data-islink="item.link.g">
- <view class="c">
- <p class="pic">
- <image :src="item.icon.img" v-if="item.icon.img" mode="widthFix"></image>
- <image v-else :src="$util.icon('img')" mode="aspectFit"></image>
- </p>
- <view class="txt" v-if="item.text.s">
- <moduleText :text="item.text" :colorf="module.base.fc" />
- </view>
- </view>
- </view>
- </view>
- <!--样式二-->
- <view class="item-duo-style2" v-if="module.base.s == 1">
- <scroll-view v-if="module.list.length>0" scroll-x="true" class="scroll-view" style="width: 100%;">
- <view v-for="(item,index) of module.list" :key='index' @click="$util.openAttr(module.list,index)"
- :data-url="item.link.p" :data-is_link="item.link.g" class="swiper-slide item">
- <p>
- <image :src="item.icon.img" v-if="item.icon.img" mode="aspectFit"></image>
- <image v-else :src="$util.icon('img')"></image>
- </p>
- <view class="txt" v-if="item.text.s">
- <moduleText :text="item.text" :colorf="module.base.fc" />
- </view>
- </view>
- </scroll-view>
- </view>
- <!--样式三-->
- <view class="item-duo-style3" v-if="module.base.s == 2">
- <swiper v-if="module.list.length>0" class="screen-swiper card-swiper" interval="5000" duration="300"
- circular="true">
- <block v-for=" (item,index) of module.list" :key='index'>
- <swiper-item>
- <view @click="$util.openAttr(module.list,index)" class="swiper-item" :url="item.link.n"
- :data-url="item.link.p" :data-islink="item.link.g">
- <p class="pic">
- <image :src="item.icon.img" v-if="item.icon.img" mode="aspectFit"></image>
- <image v-else :src="$util.icon('img')" mode="aspectFit"></image>
- </p>
- <p class="txt" v-if="item.text.s">
- <moduleText :text="item.text" :colorf="module.base.fc" />
- </p>
- </view>
- </swiper-item>
- </block>
- </swiper>
- </view>
-
-
- <!--样式四-->
- <view class="item-duo-style4" v-if="module.base.s == 3">
- <swiper v-if="module.list.length>0" class="item" autoplay="true" interval="5000" duration="300"
- indicator-color="#999" indicator-active-color="#007aff" indicator-dots="true" circular="true">
- <block v-for="(item,index) of module.list" :key='index'>
- <swiper-item>
- <view @click="$util.openAttr(module.list,index)" class="swiper-item" :url="item.link.n"
- :data-url="item.link.p" :data-islink="item.link.g">
- <p class="pic">
- <image :src="item.icon.img" v-if="item.icon.img" mode="aspectFit"></image>
- <image v-else :src="$util.icon('img')" mode="aspectFit"></image>
- </p>
- <p class="txt" v-if="item.text.s">
- <moduleText :text="item.text" :colorf="module.base.fc" />
- </p>
- </view>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </view>
- </div>
- </template>
- <script>
- import moduleBg from './bg.vue';
- import moduleText from './text.vue';
- import moduleTitle from './title.vue';
- // import { Swiper, SwiperSlide, directive } from 'vue-awesome-swiper';
- // import Swiper2, { Pagination } from 'swiper';
- // Swiper2.use([Pagination]);
- // import 'swiper/swiper-bundle.css';
- let that = null;
- export default {
- props: ['module'],
- components: {
- moduleBg,
- moduleText,
- moduleTitle
- },
- // directives: { swiper: directive },
- data() {
- return {
- nav: [],
- swiperOption1: {
- slidesPerView: 4,
- spaceBetween: 10,
- observer: true,
- observeParents: true,
- loop: false,
- on: {
- click: function(e) {
- that.$util.openAttr(that.module.list, e.clickedIndex);
- }
- }
- },
- swiperOption2: {
- slidesPerView: 'auto',
- spaceBetween: 10,
- observer: true,
- observeParents: true,
- loop: false,
- on: {
- click: function(e) {
- that.$util.openAttr(that.module.list, e.clickedIndex);
- }
- }
- },
- swiperOption3: {
- loop: true,
- autoplay: 3000,
- observer: true,
- observeParents: true,
- pagination: {
- el: '.swiper-pagination'
- },
- on: {
- click: function(e) {
- that.$util.openAttr(that.module.list, e.clickedIndex);
- }
- }
- }
- };
- },
- created() {
- that = this;
- },
- computed: {
- style() {
- if (this.module.base.fc != '') {
- return `color:${this.module.base.fc}`;
- }
- },
- },
- mounted() {},
- methods: {}
- };
- </script>
- <style>
- .module-item-duo {
- margin-top: 10px;
- position: relative;
- }
- .module-item-duo .mg0 {
- margin-top: 0;
- }
- .module-item-duo .item-duo-con {
- position: relative;
- overflow: hidden;
- }
- .module-item-duo .item-duo-style1 {
- position: relative;
- display: flex;
- flex-wrap: wrap;
- z-index: 1;
- /* padding: 0 10px; */
- padding-top: 10px;
- padding-right: 10px;
- overflow: hidden;
- /* justify-content: space-between; */
- }
- .module-item-duo .item-duo-style1.col1 .item {
- width: 100%;
- }
- .module-item-duo .item-duo-style1.col2 .item {
- width: 50%;
- }
- .module-item-duo .item-duo-style1.col3 .item {
- width: 33.333333%;
- }
- .module-item-duo .item-duo-style1.col4 .item {
- width: 25%;
- }
- .module-item-duo .item-duo-style1 .item {
- width: 33.3333333%;
- padding-left: 10px;
- padding-bottom: 10px;
- }
- .module-item-duo .item-duo-style1 .item .c {
- overflow: hidden;
- }
- .module-item-duo .item-duo-style1 .item .c image {
- /* object-fit: cover; */
- display: block;
- width: 100%;
- height: 150rpx;
- }
- .module-item-duo .item-duo-style1 .item .c .txt {
- white-space: nowrap;
- padding: 15rpx 0px;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .module-item-duo .item-duo-style2 {
- position: relative;
- z-index: 1;
- padding: 10px 0;
- overflow: hidden;
- }
- .module-item-duo .item-duo-style2 .item {
- width: 25%;
- display: inline-block;
- }
- .module-item-duo .item-duo-style2 .scroll-view {
- white-space: nowrap;
- }
- .module-item-duo .item-duo-style2 .item image {
- display: block;
- width: 60px;
- margin: 0 auto;
- height: 60px;
- border-radius: 50%;
- object-fit: cover;
- }
- .module-item-duo .item-duo-style2 .item .txt {
- white-space: nowrap;
- padding: 15rpx 0px;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .swiper-slide {
- width: 100%;
- height: 100%;
- }
- .module-item-duo .item-duo-style4 {
- position: relative;
- z-index: 1;
- height: 170px;
- padding: 10px;
- }
- .module-item-duo .item-duo-style4 .item {
- width: 100%;
- height: 100%;
- }
- .module-item-duo .item-duo-style4 .item .pic {
- width: 100%;
- height: 100%;
- }
- .module-item-duo .item-duo-style4 .item .pic image {
- display: block;
- width: 100%;
- height: 100%;
- }
- .module-item-duo .item-duo-style4 .item .txt {
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 1;
- white-space: nowrap;
- padding: 10px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .module-item-duo .item-duo-style3 {
- position: relative;
- z-index: 1;
- padding: 10px;
- }
- .module-item-duo .item-duo-style3 .item {
- height: 150px;
- }
- .module-item-duo .item-duo-style3 .item .pic {
- height: 150px;
- }
- .module-item-duo .item-duo-style3 .item .pic image {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .module-item-duo .item-duo-style3 .item .txt {
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 1;
- white-space: nowrap;
- padding: 10px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .screen-swiper {
- /* min-height: 375rpx; */
- }
- .screen-swiper image,
- .screen-swiper video,
- .swiper-item image,
- .swiper-item video {
- width: 100%;
- display: block;
- height: 100%;
- margin: 0;
- pointer-events: none;
- }
- .card-swiper {
- height: 126px !important;
- }
- .card-swiper swiper-item {
- /* width: 610rpx !important; */
- /* left: 0rpx; */
- box-sizing: border-box;
- /* padding: 40rpx 0rpx 70rpx; */
- overflow: initial;
- }
- .card-swiper swiper-item .swiper-item {
- width: 100%;
- display: block;
- height: 100%;
- border-radius: 10rpx;
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- -webkit-transition: all 0.2s ease-in 0s;
- transition: all 0.2s ease-in 0s;
- overflow: hidden;
- }
- .card-swiper swiper-item .swiper-item .pic {
- width: 100%;
- /* height: 100%; */
- }
- .card-swiper swiper-item.cur .swiper-item {
- -webkit-transform: none;
- transform: none;
- -webkit-transition: all 0.2s ease-in 0s;
- transition: all 0.2s ease-in 0s;
- }
- .item-duo-style3 .swiper-item .pic{
- height: 100px;
- }
- .item-duo-style3 .swiper-item .txt {
- /* position: absolute;
- left: 0;
- bottom: 0; */
- z-index: 1;
- white-space: nowrap;
- padding: 10px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
-
- </style>
|