manage-client 3.2.144 → 3.2.145
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
|
@@ -8,20 +8,20 @@
|
|
|
8
8
|
<div class="row">
|
|
9
9
|
<div class="col-sm-2 form-group">
|
|
10
10
|
|
|
11
|
-
<label for="
|
|
12
|
-
<datepicker id="
|
|
13
|
-
v-model="model.
|
|
14
|
-
:value.sync="model.
|
|
11
|
+
<label for="startDate" class="font_normal_body" title="归属日期">开始日期</label>
|
|
12
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
13
|
+
v-model="model.startDate"
|
|
14
|
+
:value.sync="model.startDate"
|
|
15
15
|
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
16
|
:show-reset-button="true"
|
|
17
17
|
>
|
|
18
18
|
</datepicker>
|
|
19
19
|
</div>
|
|
20
20
|
<div class="col-sm-2 form-group">
|
|
21
|
-
<label for="
|
|
22
|
-
<datepicker id="
|
|
23
|
-
v-model="model.
|
|
24
|
-
:value.sync="model.
|
|
21
|
+
<label for="endDate" class="font_normal_body" title="归属日期">结束日期</label>
|
|
22
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
23
|
+
v-model="model.endDate"
|
|
24
|
+
:value.sync="model.endDate"
|
|
25
25
|
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
26
|
:show-reset-button="true"
|
|
27
27
|
>
|