fugongshenqing.wxml
5.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<view class="backhead">
<image src="/img/fuimg.png"></image>
</view>
<view class="backbox">
<view class="backboxitem">
<view class="backtop userbox">
<view class="useboxitem flextwo">
<view class="itemname commonone">企业名称</view>
<view class="itemright flexone">
<view class="commontwo commonenter">
<input placeholder="请填写企业名称" placeholder-class=" commontwo " bindinput="entercompany" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">所属乡镇/园区</view>
<view class="itemright flexone ">
<view class="commontwo commonenter ">
<input placeholder="请填写所属乡镇/园区 " placeholder-class="commontwo " bindinput="enterqu" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">所属行业</view>
<view class="itemright flexone ">
<view class="commontwo commonenter ">
<input placeholder="请填写所属行业 " placeholder-class="commontwo " bindinput="enthang" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">主要产品</view>
<view class="itemright flexone ">
<view class="commontwo commonenter ">
<input placeholder="请填写主要产品 " placeholder-class="commontwo " bindinput="enterprodouct" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">是否规上企业</view>
<view class="itemright flexone ">
<view class="selleft flexone ">
<view class="selleftitem selzuo flexone " bindtap="sely">
<view class="sellefitemimg ">
<image src="/img/sel.png " wx:if="{{is_regulation==1}}"></image>
<image src="/img/nosel.png " wx:else></image>
</view>
<view class="selname ">是</view>
</view>
<view class="selleftitem flexone " bindtap="seln">
<view class="sellefitemimg ">
<image src="/img/sel.png " wx:if="{{is_regulation==2}}"></image>
<image src="/img/nosel.png " wx:else></image>
</view>
<view class="selname ">否</view>
</view>
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">上年度产值(万元)</view>
<view class="itemright flexone gicity ">
<view class="commontwo commonenter ">
<input placeholder="请填写 " placeholder-class="commontwo " bindinput="entershang" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">复产后预计月产值(万元)</view>
<view class="itemright flexone gicity ">
<view class="commontwo commonenter ">
<input placeholder="请填写 " placeholder-class="commontwo " bindinput="enterhou" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">联系人</view>
<view class="itemright flexone gicity ">
<view class="commontwo commonenter ">
<input placeholder="请填写联系人 " placeholder-class="commontwo " bindinput="enterlianxi" />
</view>
</view>
</view>
<view class="useboxitem flextwo ">
<view class="itemname commonone ">联系电话</view>
<view class="itemright flexone gicity ">
<view class="commontwo commonenter ">
<input placeholder="请填写联系电话 " placeholder-class="commontwo " bindinput="enterphone" />
</view>
</view>
</view>
<view class="useboxitem ">
<view class="itemname commonone ">开工方案</view>
<view class="commontwo entertext ">
<textarea placeholder="请填写开工方案 " placeholder-class="commontwo " bindinput="enterkaigong" />
</view>
</view>
<view class="useboxitem ">
<view class="itemname commonone ">其他附件</view>
<view class="flexone imgflex">
<view class="imgbox flexone">
<view class="upimg showimg" wx:for="{{image}}" wx:key="">
<image src="{{item}}"></image>
<view class="chadel" bindtap="delimg" data-index="{{index}}">
<image src="/img/chadel.png"></image>
</view>
</view>
</view>
<view class="upimg" bindtap="chooseImage">
<image src="/img/addpic.png"></image>
</view>
</view>
</view>
</view>
<view class="bot ">
<view class="subtwo " bindtap="finish">完成</view>
</view>
</view>
</view>