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.

21 lines
721 B

<!--pages/movie-grid/movie-grid.wxml-->
<template name="movie-grid">
<view class='movie-wrapper' data-id='{{bookid}}'bindtap='toDetail' data-id='{{bookid}}'>
<view class='movie-content'>
<image class='poster' src='{{picture}}'></image>
<text class='name'>{{bname}}</text>
<text class='wish-count'>¥{{bprice}}</text>
</view>
</view>
</template>
<template name="movie-grid2">
<view class='movie-wrapper' data-id='{{goodid}}'bindtap='toThingsDetail' data-id='{{goodid}}'>
<view class='movie-content'>
<image class='poster' src='{{gpicture}}'></image>
<text class='name'>{{gname}}</text>
<text class='wish-count'>¥{{gprice}}</text>
</view>
</view>
</template>