1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <view class="picture">
- <view class="section" v-for="(item,index) in productList" :key="index" @click="navigaitionTo(item)">
- <image :src="item.appletsImage" ></image>
- </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);
- },
- watch: {
- pageData: {
- handler: function(el) {
- //监听对象的变换使用 function,箭头函数容易出现this指向不正确
- this.pageData = el
- this.initData(this.pageData)
- },
- deep: true
- }
- },
- methods:{
- initData(data){
- if(this.flag){
- this.productList = data.floorImageList;
- }else{
- this.productList = data.floorImageList.slice(0,1);
- }
- },
- navigaitionTo(item){
- console.log(item.linkType);
- 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">
- .picture{
- .section{
- width: 702rpx;
- height: 340rpx;
- overflow: hidden;
- border-radius: 16rpx;
- margin-top: 24rpx;
- &:first-child{
- margin-top: 0;
- }
- image{
- width: 702rpx;
- height: 340rpx;
- }
- }
- }
- </style>
|