123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <template>
- <view class="container article-list">
- <view class="section clearfix" v-for="(item,index) in productList" :key="index" @click="navigaitionTo(item)">
- <image :src="item.appletsImage" mode="aspectFit" class="cover"></image>
- <view class="article-text">
- <view class="title">{{item.name}}</view>
- <view class="content" v-text="item.content"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import caimeiApi from '@/common/config/caimeiApi.js'
- export default {
- data(){
- return{
- productList:[]
- }
- },
- props:{
- pageData: {
- type: Object
- },
- userIdentity: {
- type: Number
- },
- flag:{
- type:Boolean,
- default:false
- }
- },
- created() {
- this.initData(this.pageData);
- },
- methods:{
- initData(data){
- if(this.flag){
- this.productList = data.floorImageList
- }else{
- this.productList = data.floorImageList.slice(0,2);
- }
- },
- navigaitionTo(item){
- if (item.adsImage === '' && item.linkType === -1) {
- return
- }else if(item.linkType === -1){
- uni.navigateTo({
- url:`/h5/pages/activity/activity-detail?adsImage=${item.adsImage}&title=${item.name}`
- })
- }else{
- caimeiApi.FlooryNavigateTo(item)
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .article-list {
- width: 100%;
- height: auto;
- box-sizing: border-box;
- .section {
- width: 702rpx;
- height: 546rpx;
- background: #ffffff;
- margin-bottom: 24rpx;
- box-sizing: border-box;
- border-radius: 16rpx;
- .cover {
- width: 702rpx;
- height: 360rpx;
- border-radius: 16rpx 16rpx 0 0;
- overflow: hidden;
- .cover-gg{
- width: 702rpx;
- height: 360rpx;
- }
- }
- .article-text {
- width: 702rpx;
- box-sizing: border-box;
- padding: 28rpx 30rpx 28rpx;
- .title {
- font-size: 26rpx;
- height: 37rpx;
- color: #3a3a3a;
- margin-bottom: 16rpx;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .content {
- font-size: 24rpx;
- line-height: 40rpx;
- color: #8a8a8a;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- }
- }
- }
- </style>
|