<!–index.wxml–>
<!–引入模板–>
<import scr="…/common/common" />
<view class=“container”>
<!–编写输入框–>
<view class=“header”>
<input class=“search” placeholder="{{subTitle}}" placeholder-class=“search-placeholder” bindchange=“handleSearch” auto-focus=“true” />
</view>
<template is=“movies-list” data="{{movies}}"></template>
</view>
<!–common.wxml–>
<template name=“movies-list”>
<scroll-view scroll-y=“true” class=“list”>
<template is=“item1” data="{{item}}" wx:for="{{movies}}" wx:key=“id”></template>
</scroll-view>
</template>