logining.wxml
5.4 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<view class="box">
<view class="title">登记中</view>
<!--基本信息-->
<view class="topbox">
<view class="topboxitem flextwo">
<view class="boxitemleft">名称</view>
<view class="boxitemleft itemright">{{office.name}}</view>
</view>
<view class="topboxitem flextwo">
<view class="boxitemleft">地址</view>
<view class="boxitemleft itemright" bindtap="enteraddress">
<input placeholder='请输入地址' value="{{address}}" bindinput="enterplace" />
</view>
</view>
<view class="topboxitem flextwo">
<view class="boxitemleft">所属行业</view>
<view class="boxitemleft itemright">{{office.industry}}</view>
</view>
<view class="topboxitem flextwo">
<view class="boxitemleft">所属乡镇</view>
<view class="boxitemleft itemright">{{office.town_pname}}</view>
</view>
</view>
<!-- 表单 -->
<view class="topbox formbox">
<view class="useboxitem flextwo" bindtap="selectcompany">
<view class="itemname commonone">负责人</view>
<view class="flexone">
<view class="commontwo seltype">
<input placeholder="请填写负责人姓名" placeholder-class="commontwo" bindinput="entername" value="name"/>
</view>
</view>
</view>
<view class="useboxitem flextwo" bindtap="selectcompany">
<view class="itemname commonone">联系电话</view>
<view class="flexone">
<view class="commontwo seltype">
<input placeholder="请填写联系电话" placeholder-class="commontwo" bindinput="enterphone" value="phone"/>
</view>
</view>
</view>
<view class="useboxitem flextwo" bindtap="selectcompany">
<view class="itemname commonone">所属社区</view>
<picker bindchange="bindtownrChange" value="{{townindex}}" range="{{town}}" range-key='name'>
<view class="flexone">
<view class="commontwo seltype">
{{townname}}
<!-- <input placeholder="请填写工作单位" placeholder-class="commontwo" bindinput="entercompany" value="{{companyname}}" /> -->
</view>
<view class="yourow you">
<image src="/img/yourow.png"></image>
</view>
</view>
</picker>
</view>
<view class="useboxitem flextwo">
<view class="itemname commonone">是否营业中</view>
<view class=" flexone">
<view class="selleft flexone">
<view class="selleftitem selzuo flexone" bindtap="selsy">
<view class="sellefitemimg">
<image src="/img/sel.png" wx:if="{{is_business==1}}"></image>
<image src="/img/nosel.png" wx:else></image>
</view>
<view class="selname">是</view>
</view>
<view class="selleftitem flexone " bindtap="selsn">
<view class="sellefitemimg">
<image src="/img/sel.png" wx:if="{{is_business==2}}"></image>
<image src="/img/nosel.png" wx:else></image>
</view>
<view class="selname">否</view>
</view>
</view>
</view>
</view>
<view class="useboxitem flextwo" bindtap="selectcompany">
<view class="itemname commonone yingye">营业时间(预计)</view>
<view class="flexone">
<view class="commontwo">
<picker mode="time" value="{{time}}" start="00:00" end="24:59" bindchange="bindTimeChange">
<view class="picker">
{{time}}
</view>
</picker>
<!-- <input placeholder="请填写工作单位" placeholder-class="commontwo" bindinput="entercompany" value="{{companyname}}" /> -->
</view>
<view class="yourow you">
<image src="/img/yourow.png"></image>
</view>
</view>
</view>
<view class="useboxitem ">
<view class="itemname commonone have">是否有以下防疫物资?(多选)</view>
<view class=" flexone protect">
<view class="protectitem {{item.sel==true?'protectactive':''}}" wx:for="{{protectarr}}" wx:key="" bindtap="selprotect" data-index="{{index}}" data-id="{{item.id}}">{{item.name}}</view>
</view>
</view>
<view class="useboxitem flextwo">
<view class="itemname commonone yiiqng">是否收到疫情防控指南</view>
<view class=" flexone">
<view class="selleft flexone">
<view class="selleftitem selzuo flexone" bindtap="selsyk">
<view class="sellefitemimg">
<image src="/img/sel.png" wx:if="{{ishandbook==1}}"></image>
<image src="/img/nosel.png" wx:else></image>
</view>
<view class="selname">是</view>
</view>
<view class="selleftitem flexone " bindtap="selsnk">
<view class="sellefitemimg">
<image src="/img/sel.png" wx:if="{{ishandbook==2}}"></image>
<image src="/img/nosel.png" wx:else></image>
</view>
<view class="selname">否</view>
</view>
</view>
</view>
</view>
<view class="useboxitem ">
<view class="itemname commonone have">存在的困难</view>
<view class="flexone difficult">
<textarea placeholder='请输入存在的困难' bindinput="entertext" value="{{description}}"/>
</view>
</view>
</view>
<view class="finish flexthree">
<view class="finishbtn" bindtap="finish">完成</view>
</view>
</view>