Files
shopxo/sourcecode/baidu/pages/index/index.swan
2020-09-18 14:04:03 +08:00

90 lines
3.8 KiB
Plaintext
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 搜索 -->
<view s-if="common_app_is_header_nav_fixed == 1" class="search-fixed-seat"></view>
<view s-if="load_status == 1 && common_app_is_enable_search == 1" class="search wh-auto {{common_app_is_header_nav_fixed == 1 ? 'search-fixed' : ''}}">
<view class="search-content bg-white oh">
<icon type="search" size="16" />
<input type="text" confirm-type="search" placeholder="其实搜索很简单^_^" class="wh-auto cr-888" bindconfirm="search_input_event" />
</view>
</view>
<!-- 商城公告 -->
<view s-if="(common_shop_notice || null) != null">
<view class="tips">{{common_shop_notice}}</view>
</view>
<!-- 轮播 -->
<component-banner banner="{{banner_list}}"></component-banner>
<!-- 导航 -->
<component-icon-nav navigation="{{navigation}}"></component-icon-nav>
<!-- 限时秒杀 -->
<view s-if="plugins_limitedtimediscount_is_valid == 1">
<import src="/pages/lib/limitedtimediscount/home.swan" />
<template is="limitedtimediscount" data="{{{plugins_limitedtimediscount_data: plugins_limitedtimediscount_data, plugins_limitedtimediscount_is_show_time: plugins_limitedtimediscount_is_show_time, plugins_limitedtimediscount_timer_title: plugins_limitedtimediscount_timer_title, currency_symbol: currency_symbol}}}"></template>
</view>
<!-- 楼层数据 -->
<block s-if="data_list.length > 0">
<view s-for="floor, index in data_list" s-key="key" class="floor spacing-mb">
<view class="spacing-nav-title">
<text class="line"></text>
<text class="text-wrapper">{{floor.name}}</text>
</view>
<view class="floor-list">
<view class="word" style="background-color:{{floor.bg_color || '#eaeaea'}}">
<view s-if="floor.items.length > 0">
<block s-for="icv, icx in floor.items" s-key="ck">
<navigator class="word-icon" url="/pages/goods-search/goods-search?category_id={{icv.id}}" hover-class="none">
{{icv.name}}
</navigator>
</block>
</view>
<view s-if="floor.describe.length > 0" class="vice-name">{{floor.describe}}</view>
<navigator url="/pages/goods-search/goods-search?category_id={{floor.id}}" hover-class="none">
<image s-if="floor.big_images.length > 0" src="{{floor.big_images}}" mode="aspectFit" class="dis-block" />
</navigator>
</view>
<view class="goods-list" s-if="floor.goods.length > 0">
<view s-for="goods, index in floor.goods" s-key="keys" class="goods bg-white">
<navigator url="/pages/goods-detail/goods-detail?goods_id={{goods.id}}" hover-class="none">
<image src="{{goods.images}}" mode="aspectFit" />
<view class="goods-base">
<view class="goods-title single-text">{{goods.title}}</view>
<view class="sales-price">{{currency_symbol}}{{goods.min_price}}</view>
</view>
</navigator>
</view>
</view>
</view>
</view>
</block>
<view s-if="data_list.length == 0">
<import src="/pages/common/nodata.swan" />
<template is="nodata" data="{{{status: data_list_loding_status}}}"></template>
</view>
<!-- 留言 -->
<view s-if="load_status == 1 && common_app_is_enable_answer == 1" class="spacing-10">
<navigator url="/pages/answer-form/answer-form" hover-class="none" class="bg-white">
<image class="wh-auto" mode="widthFix" src="/images/home-consulting-image.jpg" />
</navigator>
</view>
<!-- 结尾 -->
<import src="/pages/common/bottom_line.swan" />
<template is="bottom_line" data="{{{status: data_bottom_line_status}}}"></template>
<!-- 在线客服 -->
<view s-if="common_app_is_online_service == 1">
<import src="/pages/lib/online-service/content.swan" />
<template is="online_service"></template>
</view>
<!-- 快捷导航 -->
<component-quick-nav></component-quick-nav>
<view s-if="load_status == 1">
<import src="/pages/common/copyright.swan" />
<template is="copyright"></template>
</view>