| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php /*a:1:{s:79:"/data/web/mall.valimart.net/app/home/view/default/member/member/goods_info.html";i:1657785114;}*/ ?>
- <div class="pt20">
- <div class="mc-title">
- <h3><?php echo htmlentities(lang('ds_merchandise_collection')); ?></h3>
- </div>
- <div class="mc-list">
- <?php if(!(empty($favorites_list) || (($favorites_list instanceof \think\Collection || $favorites_list instanceof \think\Paginator ) && $favorites_list->isEmpty()))): if(is_array($favorites_list) || $favorites_list instanceof \think\Collection || $favorites_list instanceof \think\Paginator): if( count($favorites_list)==0 ) : echo "" ;else: foreach($favorites_list as $key=>$favorites): ?>
- <div class="mc-item">
- <a href='<?php echo url('Goods/index',['goods_id'=>$favorites['goods']['goods_id']]); ?>' target='_blank' title="<?php echo htmlentities($favorites['goods']['goods_name']); ?>">
- <img src="<?php echo goods_thumb($favorites['goods'], 240); ?>">
- </a>
- </div>
- <?php endforeach; endif; else: echo "" ;endif; else: ?>
- <dl class="null-tip pb10">
- <dt class="iconfont"></dt>
- <dd>
- <h4><?php echo htmlentities(lang('have_no_collections_yet')); ?></h4>
- <h5><?php echo htmlentities(lang('new_promotions_price_cuts')); ?></h5>
- </dd>
- </dl>
- <?php endif; ?>
- </div>
- </div>
- <div class="pt20">
- <div class="mc-title">
- <h3><?php echo htmlentities(lang('store_collections')); ?></h3>
- </div>
- <div class="mc-list">
- <?php if(!(empty($favorites_store_list) || (($favorites_store_list instanceof \think\Collection || $favorites_store_list instanceof \think\Paginator ) && $favorites_store_list->isEmpty()))): if(is_array($favorites_store_list) || $favorites_store_list instanceof \think\Collection || $favorites_store_list instanceof \think\Paginator): if( count($favorites_store_list)==0 ) : echo "" ;else: foreach($favorites_store_list as $key=>$favorites): ?>
- <div class="mc-item">
- <a href='<?php echo url('Store/index',['store_id'=>$favorites['store']['store_id']]); ?>' target='_blank' title="<?php echo htmlentities($favorites['store']['store_name']); ?>">
- <img src="<?php echo get_store_logo($favorites['store']['store_avatar']); ?>">
- </a>
- </div>
- <?php endforeach; endif; else: echo "" ;endif; else: ?>
- <dl class="null-tip pb10">
- <dt class="iconfont"></dt>
- <dd>
- <h4><?php echo htmlentities(lang('no_collection_shop')); ?></h4>
- <h5><?php echo htmlentities(lang('stores_latest_merchandise_promotions')); ?></h5>
- </dd>
- </dl>
- <?php endif; ?>
- </div>
- </div>
|