fafangjiangli.wxml
3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!-- 轮播图 -->
<view class="swiper_image">
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" class="swiper_item_img" bindchange="swiperChange" current="{{currentSwiper}}">
<block>
<swiper-item>
<image src="../../image/10.png" class="slide-image" />
</swiper-item>
<swiper-item>
<image src="../../image/10.png" class="slide-image" />
</swiper-item>
<swiper-item>
<image src="../../image/10.png" class="slide-image" />
</swiper-item>
</block>
</swiper>
<view class="dots">
<block wx:for="{{imgUrls}}" wx:key="index">
<view class="dot{{index == currentSwiper ? ' active' : ''}}" bindtap="selectdot" data-index="{{index}}">{{index+1}}</view>
</block>
</view>
</view>
<!-- 奖项 -->
<view class="jiangbox">
<view class="jiangitem flextwo">
<view class="jiangleft">奖项</view>
<view class="jiangright">
<input placeholder="请输入奖项" />
</view>
</view>
<view class="jiangitem flextwo">
<view class="jiangleft">姓名</view>
<view class="jiangright">
<input placeholder="请输入姓名" />
</view>
</view>
<view class="jiangitem flextwo">
<view class="jiangleft">奖励词</view>
<view class="jiangright">
<input placeholder="请输入奖励词" />
</view>
</view>
<view class="jiangitem flextwo">
<view class="jiangleft">奖励小红花</view>
<view class="jiangright">
<input placeholder="请输入奖励小红花" />
</view>
</view>
<view class="quebanfa">确认颁发</view>
</view>
<!-- 评论 -->
<!-- <view class="commentlist">
<view class="commentitem">
<view class="commentitemtop flextwo">
<view class="commentavatar">
<image src="/image/24.png"></image>
</view>
<view class="commentitmtopright">
<view class="flextwo">
<view class="commentname">李四爸爸</view>
<view class="time">9:50</view>
</view>
<view class="date">刚刚</view>
</view>
</view>
<view class="commentcontent">刚刚监督孩子完成的!</view>
<view class="commentpic flexone">
<view class="commentpicitem">
<image src="/image/6.png"></image>
</view>
<view class="commentpicitem">
<image src="/image/6.png"></image>
</view>
<view class="commentpicitem">
<image src="/image/6.png"></image>
</view>
<view class="commentpicitem">
<image src="/image/6.png"></image>
</view>
<view class="commentpicitem">
<image src="/image/6.png"></image>
</view>
</view>
<view class="commentbot flexsix">
<view class="commentbotitem flexone">
<image src="/image/20.png" class="pingicon"></image>
人数
</view>
<view class="commentbotitem flexone">
<image src="/image/20.png" class="pingicon"></image>
人数
</view>
<view class="commentbotitem flexone">
<image src="/image/20.png" class="pingicon"></image>
人数
</view>
</view>
</view>
</view> -->