manage-client 3.3.136 → 3.3.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
<nobr>{{row.f_orgname}}</nobr>
|
|
161
161
|
</td>
|
|
162
162
|
<td :style="{background:(row.istrue=='1'? '#f1dec2':'')}" style="text-align: center;">
|
|
163
|
-
<nobr>{{row.
|
|
163
|
+
<nobr>{{row.f_remark}}</nobr>
|
|
164
164
|
</td>
|
|
165
165
|
</template>
|
|
166
166
|
<template partial='foot'></template>
|
|
@@ -483,6 +483,9 @@
|
|
|
483
483
|
<th>
|
|
484
484
|
<nobr>状态</nobr>
|
|
485
485
|
</th>
|
|
486
|
+
<th>
|
|
487
|
+
<nobr>是否单户抄表</nobr>
|
|
488
|
+
</th>
|
|
486
489
|
<th>
|
|
487
490
|
<nobr>下发人员</nobr>
|
|
488
491
|
</th>
|
|
@@ -646,6 +649,9 @@
|
|
|
646
649
|
<td style="text-align: center;">
|
|
647
650
|
<nobr>{{row.f_hand_state}}</nobr>
|
|
648
651
|
</td>
|
|
652
|
+
<td style="text-align: center;">
|
|
653
|
+
<nobr>{{row.f_isone == '是' ? '是': '否'}}</nobr>
|
|
654
|
+
</td>
|
|
649
655
|
<td style="text-align: center;">
|
|
650
656
|
<nobr>{{row.f_operator}}</nobr>
|
|
651
657
|
</td>
|
|
@@ -209,22 +209,22 @@
|
|
|
209
209
|
<!-- </div>-->
|
|
210
210
|
<div class="col-sm-2 form-group">
|
|
211
211
|
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
212
|
-
<datepicker id="startDate" placeholder="
|
|
212
|
+
<datepicker id="startDate" placeholder="开户日期" style="width:60%"
|
|
213
213
|
v-model="model.startDate"
|
|
214
214
|
:value.sync="model.startDate"
|
|
215
215
|
:format="'yyyy-MM-dd'"
|
|
216
216
|
:show-reset-button="true"
|
|
217
|
-
condition="
|
|
217
|
+
condition="f_open_date >= '{} 00:00:00'">
|
|
218
218
|
</datepicker>
|
|
219
219
|
</div>
|
|
220
220
|
<div class="col-sm-2 form-group">
|
|
221
221
|
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
222
|
-
<datepicker id="endDate" placeholder="
|
|
222
|
+
<datepicker id="endDate" placeholder="开户日期" style="width:60%"
|
|
223
223
|
v-model="model.endDate"
|
|
224
224
|
:value.sync="model.endDate"
|
|
225
225
|
:format="'yyyy-MM-dd'"
|
|
226
226
|
:show-reset-button="true"
|
|
227
|
-
condition="
|
|
227
|
+
condition="f_open_date <= '{} 23:59:59'">
|
|
228
228
|
</datepicker>
|
|
229
229
|
</div>
|
|
230
230
|
<!--表册片区-->
|