You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
2.3 KiB
40 lines
2.3 KiB
<import src="../templates/index.wxml"></import>
|
|
<import src="../templates/mall.wxml"></import>
|
|
<import src="../templates/detail.wxml"></import>
|
|
<import src="../templates/ranking.wxml"></import>
|
|
<import src="../templates/join.wxml"></import>
|
|
<import src="../templates/joinok.wxml"></import>
|
|
<import src="../templates/checking.wxml"></import>
|
|
<import src="../templates/rule.wxml"></import>
|
|
<import src="../templates/footer.wxml"></import>
|
|
<view class="container">
|
|
<block wx:if="{{search.show}}">
|
|
<view bindtap="closesearch" class="searchback"></view>
|
|
<view class="search">
|
|
<form bindsubmit="search">
|
|
<input maxlength="11" name="joinid" placeholder="{{config.font[33]}}" type="number"></input>
|
|
<button formType="submit" type="default">{{config.font[34]}}</button>
|
|
</form>
|
|
<div class="tips">{{config.font[35]}}</div>
|
|
</view>
|
|
</block>
|
|
<scroll-view bindscrolltolower="loadlist" class="body" scrollY="true">
|
|
<!-- 店长列表 -->
|
|
<template is="voteindex" data="{{data:index,config:config,gift:detail}}" wx:if="{{showpage=='index'}}"></template>
|
|
<!-- 报名 -->
|
|
<template is="votejoin" data="{{data:join,config:config}}" wx:if="{{showpage=='join'}}"></template>
|
|
<!-- 报名完成 -->
|
|
<template is="votejoinok" data="{{data:joinok,config:config}}" wx:if="{{showpage=='joinok'}}"></template>
|
|
<!-- 报名确认页 -->
|
|
<template is="votechecking" data="{{data:checking,config:config}}" wx:if="{{showpage=='checking'}}"></template>
|
|
<!-- 店长详情 -->
|
|
<template is="votedetail" data="{{data:detail,datas:index,config:config}}" wx:if="{{showpage=='detail'}}"></template>
|
|
<!-- 排行页 -->
|
|
<template is="voteranking" data="{{data:ranking,memberinfo:memberinfo,config:config}}" wx:if="{{showpage=='ranking'}}"></template>
|
|
<!-- 奖品 -->
|
|
<template is="voterule" data="{{data:rule,config:config}}" wx:if="{{showpage=='rule'}}"></template>
|
|
<!-- 首页 -->
|
|
<template is="mall" data="{{data:mall,config:config,area:area, countDownList: countDownList}}" wx:if="{{showpage=='mall'}}"></template>
|
|
</scroll-view>
|
|
<template is="votefooter" data="{{data:index,footerindex:footerindex,config:config}}"></template>
|
|
</view>
|
|
|