manage-client 3.3.272 → 3.3.273
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 +1 -1
- package/src/components/SellReport/xihu/XHKFReport.vue +2 -2
- package/src/components/SellReport/xihu/XHNewManageSummary.vue +2 -2
- package/src/components/SellReport/xihu/XHOtherChargeSummary.vue +2 -2
- package/src/components/sale/filesquery/RecordInfoQuery.vue +5 -0
- package/src/filiale/liaoyuan/RecordInfoQuery.vue +1 -1
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
v-model="model.startDate"
|
|
11
11
|
:value.sync="model.startDate"
|
|
12
12
|
:disabled-days-of-Week="[]"
|
|
13
|
-
:format="'yyyy-MM-dd
|
|
13
|
+
:format="'yyyy-MM-dd'"
|
|
14
14
|
:show-reset-button="reset">
|
|
15
15
|
</datepicker>
|
|
16
16
|
</div>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
v-model="model.endDate"
|
|
21
21
|
:value.sync="model.endDate"
|
|
22
22
|
:disabled-days-of-Week="[]"
|
|
23
|
-
:format="'yyyy-MM-dd
|
|
23
|
+
:format="'yyyy-MM-dd'"
|
|
24
24
|
:show-reset-button="reset">
|
|
25
25
|
</datepicker>
|
|
26
26
|
</div>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
v-model="model.startDate"
|
|
11
11
|
:value.sync="model.startDate"
|
|
12
12
|
:disabled-days-of-Week="[]"
|
|
13
|
-
:format="'yyyy-MM-dd
|
|
13
|
+
:format="'yyyy-MM-dd'"
|
|
14
14
|
:show-reset-button="reset">
|
|
15
15
|
</datepicker>
|
|
16
16
|
</div>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
v-model="model.endDate"
|
|
21
21
|
:value.sync="model.endDate"
|
|
22
22
|
:disabled-days-of-Week="[]"
|
|
23
|
-
:format="'yyyy-MM-dd
|
|
23
|
+
:format="'yyyy-MM-dd'"
|
|
24
24
|
:show-reset-button="reset">
|
|
25
25
|
</datepicker>
|
|
26
26
|
</div>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
v-model="model.startDate"
|
|
11
11
|
:value.sync="model.startDate"
|
|
12
12
|
:disabled-days-of-Week="[]"
|
|
13
|
-
:format="'yyyy-MM-dd
|
|
13
|
+
:format="'yyyy-MM-dd'"
|
|
14
14
|
:show-reset-button="reset">
|
|
15
15
|
</datepicker>
|
|
16
16
|
</div>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
v-model="model.endDate"
|
|
21
21
|
:value.sync="model.endDate"
|
|
22
22
|
:disabled-days-of-Week="[]"
|
|
23
|
-
:format="'yyyy-MM-dd
|
|
23
|
+
:format="'yyyy-MM-dd'"
|
|
24
24
|
:show-reset-button="reset">
|
|
25
25
|
</datepicker>
|
|
26
26
|
</div>
|
|
@@ -205,6 +205,11 @@
|
|
|
205
205
|
condition="f_hand_date <= '{} 23:59:59'">
|
|
206
206
|
</datepicker>
|
|
207
207
|
</div>
|
|
208
|
+
<div class="col-sm-2 form-group">
|
|
209
|
+
<label class="font_normal_body">街    道</label>
|
|
210
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_street"
|
|
211
|
+
condition="f_street like '%{}%'" placeholder='街道'>
|
|
212
|
+
</div>
|
|
208
213
|
<div class="col-sm-2 form-group">
|
|
209
214
|
<label class="font_normal_body">小  区</label>
|
|
210
215
|
<v-select :value.sync="model.f_residential_area"
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
<div class="col-sm-2 form-group">
|
|
213
213
|
<label class="font_normal_body">气价名称</label>
|
|
214
214
|
<v-select :value.sync="model.f_price_name" v-model="model.f_price_name"
|
|
215
|
-
:options="$parent.$parent.
|
|
215
|
+
:options="$parent.$parent.getPricenames" placeholder='气价名称'
|
|
216
216
|
condition="f_price_name = '{}'"
|
|
217
217
|
:is-mul="mul"
|
|
218
218
|
close-on-select ></v-select>
|