12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html>
- <head lang="en">
- <include file="./Application/M/View/Common/head_include.html"/>
- <title>幻速_体验店加盟_招募城市合伙人-厦门欣富地智能科技</title>
- <link rel="stylesheet" type="text/css" href="/Public/static/home/m/css/shop_news.css"/>
- <link rel="stylesheet" type="text/css" href="/Public/static/home/m/css/new_store.css"/>
- <style type="text/css">
- .news_jp p.active{
- background: url(https://img.x-motion.cn/home/m/image/news/jp_bg.jpg) no-repeat;
- background-size: 100%;
- background-position: center;
- }
- .shop_nx{
- padding-top: 0.62rem;
- display: flex;
- justify-content: space-between;
- }
- .shop_nx a{
- display: block;
- font-size: 2.8em;
- color: #5EA7EC;
- }
- </style>
- </head>
- <body>
- <include file="./Application/M/View/Common/head.html"/>
- <div class="content">
- <div class="stores_top">
- <h2>线下体验店</h2>
- <h3>首页/最新门店</h3>
- </div>
- <div class="news_ct">
- <div class="news_jp">
- <p class="active">
- <a href="javascript:void(0);">最新门店</a>
- </p>
- <p>
- <a href="{:U('m/about/store')}">全部门店</a>
- </p>
- <p hidden>
- <a href="{:U('m/about/discount')}">优惠政策</a>
- </p>
- </div>
- <if condition="!empty($data)">
- <div class="shop_sw">
- <foreach name="data" item="v">
- <div class="shop_li">
- <p class="shop_img col">
- <if condition="!empty($v['have_news'])">
- <a href="{:U('about/news', array('store_id' => $v['id']))}"><img src="{$v['img']}"></a>
- <else/>
- <img src="{$v['img']}">
- </if>
- </p>
- <p class="shop_title">{$v['name']}</p>
- <if condition="!empty($v['address'])">
- <p class="shop_address shop_icon"><img src="https://img.x-motion.cn/home/m/image/news/shop_ad.jpg"/> {$v['address']}</p>
- </if>
- <if condition="!empty($v['date'])">
- <p class="shop_time shop_icon"><img src="https://img.x-motion.cn/home/m/image/news/shop_tm.jpg"/> {$v['date']}: {$v['s_time']} - {$v['e_time']}</p>
- </if>
- <if condition="!empty($v['tel'])">
- <a href="tel:{$v['tel']}" class="shop_phone shop_icon"><p><img src="https://img.x-motion.cn/home/m/image/news/shop_ph.jpg" alt="" /> {$v['tel']}</p></a>
- </if>
- </div>
- </foreach>
- </div>
- </if>
- <if condition="!empty($page['pre']) and !empty($page['next'])">
- <div class="shop_nx">
- <div>
- <if condition="!empty($page['pre'])">
- <a href="{$page['pre']}"><上一页</a>
- </if>
- </div>
- <div>
- <if condition="!empty($page['next'])">
- <a href="{$page['next']}">下一页></a>
- </if>
- </div>
- </div>
- </if>
- </div>
- <if condition="empty($data)">
- <div class="col">
- <img src="https://img.x-motion.cn/home/m/image/news/store_no.jpg" />
- </div>
- </if>
- <include file="./Application/M/View/Common/footer.html"/>
- </div>
- <include file="./Application/M/View/Common/footer_include.html"/>
- </body>
- </html>
|