sucaishenqing.wxml
2.0 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
<!-- 使用申请 -->
<view class="xiazaiwrapk">
<view class="xiazaiitem">
<view class="xizaileft">姓名:</view>
<view class="xiazairight">
<input placeholder='请输入' bindinput="entername" value="{{name}}" />
</view>
</view>
<view class="xiazaiitem">
<view class="xizaileft">影视剧片名:</view>
<view class="xiazairight">
<input placeholder='请输入' bindinput="enteryingname" value="{{yingname}}" />
</view>
</view>
<view class="xiazaiitem">
<view class="xizaileft">剧组联系电话:</view>
<view class="xiazairight">
<input placeholder='请输入' bindinput="enterphone" type="number" value="{{tel}}"/>
</view>
</view>
<view class="xiazaiitem">
<view class="xizaileft">影视剧预计上映日期:</view>
<picker mode="date" value="{{date}}" bindchange="bindDateChange">
<view class="xiazairight">
{{yingdate}}
<!-- <input placeholder='请输入' bindinput="enterdate" type="text" value="{{tel}}"/> -->
</view>
</picker>
</view>
<view class="xiazaiitem">
<view class="xizaileft">公司名称:</view>
<view class="xiazairight">
<input placeholder='请输入' bindinput="entercompany" type="text" value="{{company}}"/>
</view>
</view>
<view class="xiazaiitem">
<view class="xizaileft">邮箱:</view>
<view class="xiazairight">
<input placeholder='请输入' bindinput="enteremail" value="{{email}}"/>
</view>
</view>
<view class="yong">
<view class="xizaileft yongleft">使用用途:</view>
<view class="xiazairight yongtu">
<textarea placeholder='请输入' bindinput="enteruse" value="{{use}}"/>
</view>
</view>
<view class="xiazaiitem">
<view class="xizaileft">公章照片:</view>
<view class="zhaopic" bindtap="chooseImage">
<image src="{{image}}"></image>
</view>
</view>
<view class="flexthree">
<view class="quding" bindtap="surexia">确定</view>
</view>
</view>