|
|
@@ -133,17 +133,17 @@
|
|
133
|
133
|
</label>
|
|
134
|
134
|
</section>
|
|
135
|
135
|
<section class="col col-4">
|
|
136
|
|
- <label class="label">行政区划(地市)</label>
|
|
|
136
|
+ <label class="label">行政区划(地市)<span style="color: red;">*</span></label>
|
|
137
|
137
|
<label class="select">
|
|
138
|
|
- <select id="city" ng-model="city" ng-options='enum.enumid as enum.enumname for enum in dicDataList[province]'>
|
|
|
138
|
+ <select id="city" ng-model="city" name="city" ng-options='enum.enumid as enum.enumname for enum in dicDataList[province]' required>
|
|
139
|
139
|
<option value="">请选择</option>
|
|
140
|
140
|
</select><i></i>
|
|
141
|
141
|
</label>
|
|
142
|
142
|
</section>
|
|
143
|
143
|
<section class="col col-4">
|
|
144
|
|
- <label class="label">行政区划(县区)</label>
|
|
|
144
|
+ <label class="label">行政区划(县区)<span style="color: red;">*</span></label>
|
|
145
|
145
|
<label class="select">
|
|
146
|
|
- <select id="county" ng-model="county" ng-options='enum.enumid as enum.enumname for enum in dicDataList[city]'>
|
|
|
146
|
+ <select id="county" ng-model="county" name="county" ng-options='enum.enumid as enum.enumname for enum in dicDataList[city]' required>
|
|
147
|
147
|
<option value="">请选择</option>
|
|
148
|
148
|
</select><i></i>
|
|
149
|
149
|
</label>
|
|
|
@@ -151,7 +151,7 @@
|
|
151
|
151
|
</div>
|
|
152
|
152
|
<div class="row">
|
|
153
|
153
|
<section class="col col-4">
|
|
154
|
|
- <label class="label">地址<span style="color: red;">*</span></label>
|
|
|
154
|
+ <label class="label">行政区划-地址<span style="color: red;">*</span></label>
|
|
155
|
155
|
<label class="input">
|
|
156
|
156
|
<i class="icon-prepend fa fa-map-marker"></i>
|
|
157
|
157
|
<input type="text" name="address" ng-model="orgInfo.address" maxlength="50" required>
|
|
|
@@ -183,10 +183,56 @@
|
|
183
|
183
|
</label>
|
|
184
|
184
|
</section>
|
|
185
|
185
|
<section class="col col-4">
|
|
186
|
|
- <label class="label">注册地址</label>
|
|
|
186
|
+ <label class="label">仓房数<span style="color: red;">*</span></label>
|
|
|
187
|
+ <label class="input">
|
|
|
188
|
+ <input type="text" name="houseNumber" ng-model="orgInfo.houseNumber" maxlength="11" validHouseAndWare=true required>
|
|
|
189
|
+ </label>
|
|
|
190
|
+ </section>
|
|
|
191
|
+ <section class="col col-4">
|
|
|
192
|
+ <label class="label">油罐数<span style="color: red;">*</span></label>
|
|
|
193
|
+ <label class="input">
|
|
|
194
|
+ <input type="text" name="tankNumber" ng-model="orgInfo.tankNumber" maxlength="11" validHouseAndWare=true required>
|
|
|
195
|
+ </label>
|
|
|
196
|
+ </section>
|
|
|
197
|
+ </div>
|
|
|
198
|
+ <div class="row">
|
|
|
199
|
+ <section class="col col-4">
|
|
|
200
|
+ <label class="label">库区数<span style="color: red;">*</span></label>
|
|
|
201
|
+ <label class="input">
|
|
|
202
|
+ <input type="text" name="kqNumber" ng-model="orgInfo.kqNumber" maxlength="2" required>
|
|
|
203
|
+ </label>
|
|
|
204
|
+ </section>
|
|
|
205
|
+ <section class="col col-4">
|
|
|
206
|
+ <label class="label">注册地址(省/直辖市)<span style="color: red;">*</span></label>
|
|
|
207
|
+ <label class="select">
|
|
|
208
|
+ <select id="zc_province" ng-model="orgInfo.zcProvince" name="zcProvince" ng-options='enum.enumid as enum.enumname for enum in dicDataList[1010]' required>
|
|
|
209
|
+ <option value="">请选择</option>
|
|
|
210
|
+ </select><i></i>
|
|
|
211
|
+ </label>
|
|
|
212
|
+ </section>
|
|
|
213
|
+ <section class="col col-4">
|
|
|
214
|
+ <label class="label">注册地址(地市)<span style="color: red;">*</span></label>
|
|
|
215
|
+ <label class="select">
|
|
|
216
|
+ <select id="zc_city" ng-model="orgInfo.zcCity" name="zcCity" ng-options='enum.enumid as enum.enumname for enum in dicDataList[orgInfo.zcProvince]' required>
|
|
|
217
|
+ <option value="">请选择</option>
|
|
|
218
|
+ </select><i></i>
|
|
|
219
|
+ </label>
|
|
|
220
|
+ </section>
|
|
|
221
|
+ </div>
|
|
|
222
|
+ <div class="row">
|
|
|
223
|
+ <section class="col col-4">
|
|
|
224
|
+ <label class="label">注册地址(县区)<span style="color: red;">*</span></label>
|
|
|
225
|
+ <label class="select">
|
|
|
226
|
+ <select id="zc_county" ng-model="orgInfo.zcCounty" name="zcCounty" ng-options='enum.enumid as enum.enumname for enum in dicDataList[orgInfo.zcCity]' required>
|
|
|
227
|
+ <option value="">请选择</option>
|
|
|
228
|
+ </select><i></i>
|
|
|
229
|
+ </label>
|
|
|
230
|
+ </section>
|
|
|
231
|
+ <section class="col col-4">
|
|
|
232
|
+ <label class="label">注册地址(街道和门牌号)<span style="color: red;">*</span></label>
|
|
187
|
233
|
<label class="input">
|
|
188
|
234
|
<i class="icon-prepend fa fa-map-marker"></i>
|
|
189
|
|
- <input type="text" name="registeredAddress" ng-model="orgInfo.registeredAddress" maxlength="512">
|
|
|
235
|
+ <input type="text" name="registeredAddress" ng-model="orgInfo.registeredAddress" maxlength="512" required>
|
|
190
|
236
|
</label>
|
|
191
|
237
|
</section>
|
|
192
|
238
|
<section class="col col-4">
|
|
|
@@ -206,7 +252,7 @@
|
|
206
|
252
|
</label>
|
|
207
|
253
|
</section>
|
|
208
|
254
|
<section class="col col-4">
|
|
209
|
|
- <label class="label">注册日期<span style="color: red;">*</span></label>
|
|
|
255
|
+ <label class="label">注册日期<span style="color: red;">*</span></label>
|
|
210
|
256
|
<label class="input">
|
|
211
|
257
|
<input type="text" ng-model="orgInfo.registDate" class="form-control" onClick="WdatePicker({lang:'zh-cn'})"
|
|
212
|
258
|
name="registDate" required>
|
|
|
@@ -340,7 +386,7 @@
|
|
340
|
386
|
<label class="label">法人<span style="color: red;">*</span></label>
|
|
341
|
387
|
<label class="input">
|
|
342
|
388
|
<i class="icon-prepend fa fa-user"></i>
|
|
343
|
|
- <input type="text" name="legalPerson" ng-model="orgInfo.legalPerson" maxlength="30" required>
|
|
|
389
|
+ <input type="text" name="legalPerson" ng-model="orgInfo.legalPerson" maxlength="30" required />
|
|
344
|
390
|
</label>
|
|
345
|
391
|
</section>
|
|
346
|
392
|
<section class="col col-4">
|
|
|
@@ -361,9 +407,9 @@
|
|
361
|
407
|
</label>
|
|
362
|
408
|
</section>
|
|
363
|
409
|
<section class="col col-4">
|
|
364
|
|
- <label class="label">法人身份证号</label>
|
|
|
410
|
+ <label class="label">法人身份证号<span style="color: red;">*</span></label>
|
|
365
|
411
|
<label class="input">
|
|
366
|
|
- <input type="text" name="corporateCapacity" ng-model="orgInfo.corporateCapacity" validCard=true>
|
|
|
412
|
+ <input type="text" name="corporateCapacity" ng-model="orgInfo.corporateCapacity" validCard=true maxlength="18" required />
|
|
367
|
413
|
</label>
|
|
368
|
414
|
</section>
|
|
369
|
415
|
<section class="col col-4">
|
|
|
@@ -388,6 +434,8 @@
|
|
388
|
434
|
<select ng-model="orgInfo.depotProperty" class="form-control" ng-init="orgInfo.depotProperty='1'">
|
|
389
|
435
|
<option value="1">自有</option>
|
|
390
|
436
|
<option value="2">租赁</option>
|
|
|
437
|
+ <option value="3">共有</option>
|
|
|
438
|
+ <option value="4">混合</option>
|
|
391
|
439
|
<option value="9">其他</option>
|
|
392
|
440
|
</select><i></i>
|
|
393
|
441
|
</label>
|
|
|
@@ -429,27 +477,13 @@
|
|
429
|
477
|
</label>
|
|
430
|
478
|
</section>
|
|
431
|
479
|
<section class="col col-4">
|
|
432
|
|
- <label class="label">仓房数<span style="color: red;">*</span></label>
|
|
433
|
|
- <label class="input">
|
|
434
|
|
- <input type="text" name="houseNumber" ng-model="orgInfo.houseNumber" maxlength="11" validHouseAndWare=true required>
|
|
435
|
|
- </label>
|
|
436
|
|
- </section>
|
|
437
|
|
- <section class="col col-4">
|
|
438
|
|
- <label class="label">油罐数<span style="color: red;">*</span></label>
|
|
439
|
|
- <label class="input">
|
|
440
|
|
- <input type="text" name="tankNumber" ng-model="orgInfo.tankNumber" maxlength="11" validHouseAndWare=true required>
|
|
441
|
|
- </label>
|
|
442
|
|
- </section>
|
|
443
|
|
- </div>
|
|
444
|
|
- <div class="row">
|
|
445
|
|
- <section class="col col-4">
|
|
446
|
480
|
<label class="label">首页库区图</label>
|
|
447
|
481
|
<div class="input input-file">
|
|
448
|
482
|
<span class="button">
|
|
449
|
483
|
<input type="file" nv-file-select="" uploader="uploader" accept="image/*">
|
|
450
|
484
|
浏览
|
|
451
|
485
|
</span><input type="text" name="birdsEye" ng-model="orgInfo.birdsEye" placeholder="" readonly="">
|
|
452
|
|
- </div>
|
|
|
486
|
+ </div>
|
|
453
|
487
|
</section>
|
|
454
|
488
|
<section class="col col-4">
|
|
455
|
489
|
<label class="label">粮库决策/智能仓房库区图</label>
|
|
|
@@ -460,6 +494,9 @@
|
|
460
|
494
|
</span><input type="text" name="birdsRemote" ng-model="orgInfo.birdsRemote" placeholder="" readonly="">
|
|
461
|
495
|
</div>
|
|
462
|
496
|
</section>
|
|
|
497
|
+ </div>
|
|
|
498
|
+ <div class="row">
|
|
|
499
|
+
|
|
463
|
500
|
<section class="col col-4">
|
|
464
|
501
|
<label class="label">是否主库<span style="color: red;">*</span></label>
|
|
465
|
502
|
<label class="select">
|
|
|
@@ -470,6 +507,8 @@
|
|
470
|
507
|
</select><i></i>
|
|
471
|
508
|
</label>
|
|
472
|
509
|
</section>
|
|
|
510
|
+ <section class="col col-4"></section>
|
|
|
511
|
+ <section class="col col-4"></section>
|
|
473
|
512
|
</div>
|
|
474
|
513
|
</fieldset>
|
|
475
|
514
|
|