|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+<div id="content">
|
|
|
2
|
+ <section id="widget-grid" widget-grid>
|
|
|
3
|
+ <div class="row">
|
|
|
4
|
+ <article class="col-sm-12 col-md-12 col-lg-12">
|
|
|
5
|
+ <div jarvis-widget id="form-grid-widget"
|
|
|
6
|
+ data-widget-colorbutton="false" data-widget-editbutton="false"
|
|
|
7
|
+ data-widget-custombutton="false">
|
|
|
8
|
+ <div>
|
|
|
9
|
+ <div class="widget-body no-padding">
|
|
|
10
|
+ <form id="weekAnlysis-form" class="smart-form ng-pristine ng-valid" data-validator-option="validateOptions" novalidate="novalidate">
|
|
|
11
|
+ <header>
|
|
|
12
|
+ <a href-void class="btn btn-default btn-xs" ng-click="retList(form)">
|
|
|
13
|
+ <i class="fa fa-angle-left"></i> 返回
|
|
|
14
|
+ </a>
|
|
|
15
|
+ <strong>周报详情</strong>
|
|
|
16
|
+ <span class="pull-right font-xs">带*的部分必须填写</span>
|
|
|
17
|
+ </header>
|
|
|
18
|
+ <h2 style="text-align: center;"><strong>周报详情</strong></h2>
|
|
|
19
|
+ <header>基本信息</header>
|
|
|
20
|
+ <fieldset>
|
|
|
21
|
+ <div class="row">
|
|
|
22
|
+ <section class="col col-3">
|
|
|
23
|
+ <label class="label txt-bg-red">仓房名称<span style="color: red;">*</span></label>
|
|
|
24
|
+ <label class="select">
|
|
|
25
|
+ <select ng-model="form.houseId" name="houseId" class="form-control"
|
|
|
26
|
+ ng-options="store.storehouseId as store.storehouseName for store in storelist"
|
|
|
27
|
+ ng-change="onStoreChange()" required ng-disabled="true">
|
|
|
28
|
+ <option value="">请选择</option>
|
|
|
29
|
+ </select>
|
|
|
30
|
+ </label>
|
|
|
31
|
+ </section>
|
|
|
32
|
+ <section class="col col-3">
|
|
|
33
|
+ <label class="label">货位名称<span style="color: red;">*</span></label>
|
|
|
34
|
+ <label class="select">
|
|
|
35
|
+ <select ng-model="form.warehouseId" name="warehouseId"
|
|
|
36
|
+ ng-options="ware.warehouseId as ware.warehouseName for ware in wareAnalysisList"
|
|
|
37
|
+ ng-change="onTimeChange()" required ng-disabled="disabled">
|
|
|
38
|
+ <option value="">--请选择--</option>
|
|
|
39
|
+ </select>
|
|
|
40
|
+ </label>
|
|
|
41
|
+ </section>
|
|
|
42
|
+ <section class="col col-3">
|
|
|
43
|
+ <label class="label">粮食品种</label>
|
|
|
44
|
+ <label class="select">
|
|
|
45
|
+ <select ng-model="form.lspz" name="lspz" ng-options="enum.enumid as enum.enumname for enum in dicDataList[1061]" ng-disabled="true">
|
|
|
46
|
+ <option value="">--请选择--</option>
|
|
|
47
|
+ </select>
|
|
|
48
|
+ </label>
|
|
|
49
|
+ </section>
|
|
|
50
|
+ <section class="col col-3">
|
|
|
51
|
+ <label class="label">责任保管员</label>
|
|
|
52
|
+ <label class="input">
|
|
|
53
|
+ <input class="form-control" type="text" ng-model="form.zrbgy" name="zrbgy" ng-readonly="true" />
|
|
|
54
|
+ </label>
|
|
|
55
|
+ </section>
|
|
|
56
|
+ <section class="col col-3" id="DataTables_Table_1_wrapper" class="dataTables_wrapper">
|
|
|
57
|
+ <label class="label">检查开始日期<span style="color: red;">*</span></label>
|
|
|
58
|
+ <label class="input">
|
|
|
59
|
+ <input class="form-control" type="text" ng-model="form.jcqsrq" name="jcqsrq" id="startDate"
|
|
|
60
|
+ onClick="WdatePicker({lang:'zh-cn',maxDate:'#F{$dp.$D(\'endDate\')}'})"
|
|
|
61
|
+ ng-disabled="true" ng-blur="onTimeChange()" required />
|
|
|
62
|
+ </label>
|
|
|
63
|
+ </section>
|
|
|
64
|
+ <section class="col col-3">
|
|
|
65
|
+ <label class="label">检查终止日期<span style="color: red;">*</span></label>
|
|
|
66
|
+ <label class="input">
|
|
|
67
|
+ <input type="text" name="jczzrq" ng-model="form.jczzrq" class="form-control" id="endDate"
|
|
|
68
|
+ onClick="WdatePicker({lang:'zh-cn',minDate:'#F{$dp.$D(\'startDate\')}'})"
|
|
|
69
|
+ ng-disabled="true" ng-blur="onTimeChange()" required />
|
|
|
70
|
+ </label>
|
|
|
71
|
+ </section>
|
|
|
72
|
+ <section class="col col-3">
|
|
|
73
|
+ <label class="label">仓房类型</label>
|
|
|
74
|
+ <label class="select">
|
|
|
75
|
+ <select ng-model="form.houseType" name="houseType" ng-options="enum.enumid as enum.enumname for enum in dicDataList[1064]" ng-disabled="true">
|
|
|
76
|
+ <option value="">--请选择--</option>
|
|
|
77
|
+ </select>
|
|
|
78
|
+ </label>
|
|
|
79
|
+ </section>
|
|
|
80
|
+ </div>
|
|
|
81
|
+ </fieldset>
|
|
|
82
|
+ <header><strong>温湿度情况</strong></header>
|
|
|
83
|
+ <fieldset>
|
|
|
84
|
+ <div class="col-xs-12 col-sm-12">
|
|
|
85
|
+ <table class="table table-striped table-bordered table-hover" width="100%">
|
|
|
86
|
+ <tbody><tr>
|
|
|
87
|
+ <th rowspan="2">
|
|
|
88
|
+ <label class="label" style="margin-top: 34px;text-align: center;">检查时间</label>
|
|
|
89
|
+ </th>
|
|
|
90
|
+ <th rowspan="2">
|
|
|
91
|
+ <label class="label" style="margin-top: 34px;text-align: center;">仓温</label>
|
|
|
92
|
+ </th>
|
|
|
93
|
+ <th colspan="2">
|
|
|
94
|
+ <label class="label" style="margin-top: 9px;text-align: center;">机动点1</label>
|
|
|
95
|
+ </th>
|
|
|
96
|
+ <th colspan="2">
|
|
|
97
|
+ <label class="label" style="margin-top: 9px;text-align: center;">机动点2</label>
|
|
|
98
|
+ </th>
|
|
|
99
|
+ <th colspan="2">
|
|
|
100
|
+ <label class="label" style="margin-top: 9px;text-align: center;">机动点3</label>
|
|
|
101
|
+ </th>
|
|
|
102
|
+ </tr>
|
|
|
103
|
+ <tr>
|
|
|
104
|
+ <th>
|
|
|
105
|
+ <label class="label" style="margin-top: 9px;text-align: center;">部位</label>
|
|
|
106
|
+ </th>
|
|
|
107
|
+ <th>
|
|
|
108
|
+ <label class="label" style="margin-top: 9px;text-align: center;">温度</label>
|
|
|
109
|
+ </th>
|
|
|
110
|
+ <th>
|
|
|
111
|
+ <label class="label" style="margin-top: 9px;text-align: center;">部位</label>
|
|
|
112
|
+ </th>
|
|
|
113
|
+ <th>
|
|
|
114
|
+ <label class="label" style="margin-top: 9px;text-align: center;">温度</label>
|
|
|
115
|
+ </th>
|
|
|
116
|
+ <th>
|
|
|
117
|
+ <label class="label" style="margin-top: 9px;text-align: center;">部位</label>
|
|
|
118
|
+ </th>
|
|
|
119
|
+ <th>
|
|
|
120
|
+ <label class="label" style="margin-top: 9px;text-align: center;">温度</label>
|
|
|
121
|
+ </th>
|
|
|
122
|
+ </tr>
|
|
|
123
|
+ <tr ng-repeat="item in newtemperature" class="ng-scope">
|
|
|
124
|
+ <th>
|
|
|
125
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
126
|
+ <input class="form-control" type="text" ng-model="item.jcsj" name="jcsj" ng-readonly="true" />
|
|
|
127
|
+ </label>
|
|
|
128
|
+ </th>
|
|
|
129
|
+ <th>
|
|
|
130
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
131
|
+ <input class="form-control" type="text" ng-model="item.cw" name="cw" ng-readonly="disabled"
|
|
|
132
|
+ onblur="this.value= this.value.match(/(\-)?\d+(\.\d{0,2})?/) ? this.value.match(/(\-)?\d+(\.\d{0,2})?/)[0] : ''" />
|
|
|
133
|
+ </label>
|
|
|
134
|
+ </th>
|
|
|
135
|
+ <th>
|
|
|
136
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
137
|
+ <input class="form-control" type="text" ng-model="item.bwOne" name="bwOne" ng-readonly="disabled" />
|
|
|
138
|
+ </label>
|
|
|
139
|
+ </th>
|
|
|
140
|
+ <th>
|
|
|
141
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
142
|
+ <input class="form-control" type="text" ng-model="item.wdOne" name="wdOne" ng-readonly="disabled"
|
|
|
143
|
+ onblur="this.value= this.value.match(/(\-)?\d+(\.\d{0,2})?/) ? this.value.match(/(\-)?\d+(\.\d{0,2})?/)[0] : ''" />
|
|
|
144
|
+ </label>
|
|
|
145
|
+ </th>
|
|
|
146
|
+ <th>
|
|
|
147
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
148
|
+ <input class="form-control" type="text" ng-model="item.bwTwo" name="bwTwo" ng-readonly="disabled" />
|
|
|
149
|
+ </label>
|
|
|
150
|
+ </th>
|
|
|
151
|
+ <th>
|
|
|
152
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
153
|
+ <input class="form-control" type="text" ng-model="item.wdTwo" name="wdTwo" ng-readonly="disabled"
|
|
|
154
|
+ onblur="this.value= this.value.match(/(\-)?\d+(\.\d{0,2})?/) ? this.value.match(/(\-)?\d+(\.\d{0,2})?/)[0] : ''" />
|
|
|
155
|
+ </label>
|
|
|
156
|
+ </th>
|
|
|
157
|
+ <th>
|
|
|
158
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
159
|
+ <input class="form-control" type="text" ng-model="item.bwThree" name="bwThree" ng-readonly="disabled" />
|
|
|
160
|
+ </label>
|
|
|
161
|
+ </th>
|
|
|
162
|
+ <th>
|
|
|
163
|
+ <label class="label" style="margin-top: 9px;text-align: center;">
|
|
|
164
|
+ <input class="form-control" type="text" ng-model="item.wdThree" name="wdThree" ng-readonly="disabled"
|
|
|
165
|
+ onblur="this.value= this.value.match(/(\-)?\d+(\.\d{0,2})?/) ? this.value.match(/(\-)?\d+(\.\d{0,2})?/)[0] : ''" />
|
|
|
166
|
+ </label>
|
|
|
167
|
+ </th>
|
|
|
168
|
+ </tr>
|
|
|
169
|
+ </tbody></table>
|
|
|
170
|
+ </div>
|
|
|
171
|
+ </fieldset>
|
|
|
172
|
+ <header><strong>仓内检查情况<span style="color: red;">*</span></strong></header>
|
|
|
173
|
+ <fieldset>
|
|
|
174
|
+ <section>
|
|
|
175
|
+ <label class="textarea"> <i class="icon-append fa fa-comment"></i>
|
|
|
176
|
+ <textarea rows="5" ng-model="form.lqzk" name="lqzk" maxlength="255" class="ng-pristine ng-untouched ng-valid" required ng-disabled="disabled"></textarea>
|
|
|
177
|
+ </label>
|
|
|
178
|
+ </section>
|
|
|
179
|
+ </fieldset>
|
|
|
180
|
+ <header><strong>粮情分析<span style="color: red;">*</span></strong></header>
|
|
|
181
|
+ <fieldset>
|
|
|
182
|
+ <section>
|
|
|
183
|
+ <label class="textarea"> <i class="icon-append fa fa-comment"></i>
|
|
|
184
|
+ <textarea rows="5" ng-model="form.lqfx" name="lqfx" maxlength="255" class="ng-pristine ng-untouched ng-valid" required ng-disabled="disabled"></textarea>
|
|
|
185
|
+ </label>
|
|
|
186
|
+ </section>
|
|
|
187
|
+ </fieldset>
|
|
|
188
|
+ <fieldset>
|
|
|
189
|
+ <div class="row">
|
|
|
190
|
+ <section class="col col-3">
|
|
|
191
|
+ <label class="label">提交人</label>
|
|
|
192
|
+ <label class="input">
|
|
|
193
|
+ <input class="form-control" type="text" ng-model="form.tjr" name="tjr" required ng-readonly="true">
|
|
|
194
|
+ </label>
|
|
|
195
|
+ </section>
|
|
|
196
|
+ <section class="col col-3">
|
|
|
197
|
+ <label class="label">提交日期<span style="color: red;">*</span></label>
|
|
|
198
|
+ <label class="input">
|
|
|
199
|
+ <input class="form-control" type="text" ng-model="form.tjrq" name="tjrq"
|
|
|
200
|
+ onClick="WdatePicker({lang:'zh-cn', dateFmt:'yyyy-MM-dd'})" ng-disabled="true" required />
|
|
|
201
|
+ </label>
|
|
|
202
|
+ </section>
|
|
|
203
|
+ </div>
|
|
|
204
|
+ </fieldset>
|
|
|
205
|
+ <div>
|
|
|
206
|
+ <footer class="text-align-center">
|
|
|
207
|
+ <button type="button" class="btn btn-primary" ng-hide="disabled" ng-click="save()">提交</button>
|
|
|
208
|
+ <button type="button" class="btn btn-default" ng-click="retList(form)">取消</button>
|
|
|
209
|
+ </footer>
|
|
|
210
|
+ </div>
|
|
|
211
|
+ </form>
|
|
|
212
|
+ </div>
|
|
|
213
|
+ </div>
|
|
|
214
|
+ </article>
|
|
|
215
|
+ </div>
|
|
|
216
|
+ </section>
|
|
|
217
|
+</div>
|