manage-client 3.2.180 → 3.2.182
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/build/dev-server.js +8 -2
- package/package.json +1 -1
- package/src/components/sale/businessquery/ArrearsQuery.vue +12 -5
- package/src/components/sale/config/exportConfig.js +1 -1
- package/src/filiale/gehua/ChargeQuery.vue +1309 -0
- package/src/filiale/gehua/sale.js +7 -0
- package/src/filiale/kelai/AreaChargeQuery.vue +1 -1
- package/src/filiale/kelai/exportConfig.js +1 -1
- package/src/filiale/meihekou/YingShouMingXi.vue +3 -3
- package/src/filiale/qianneng/RecordInfoQuery.vue +1287 -0
- package/src/filiale/qianneng/exportConfig.js +22 -0
- package/src/filiale/qianneng/sale.js +3 -1
- package/src/filiale/tongchuan/ChargeQuery.vue +1 -1
- package/src/filiale/tongchuan/config/exportConfig.js +1 -1
- package/src/filiale/zhongyi/FillCardQuery.vue +581 -0
- package/src/filiale/zhongyi/GasStatistics.vue +22 -0
- package/src/filiale/zhongyi/LostContactAnalysisList.vue +650 -0
- package/src/filiale/zhongyi/exportConfig.js +1080 -0
- package/src/filiale/zhongyi/sale.js +2 -3
- package/src/filiale/zhongyi/webmeterManage.js +12 -0
- package/yarn-error.log +0 -7659
|
@@ -148,6 +148,22 @@
|
|
|
148
148
|
:show-reset-button="reset">
|
|
149
149
|
</datepicker>
|
|
150
150
|
</div>
|
|
151
|
+
<div class="col-sm-2 form-group">
|
|
152
|
+
<label class="font_normal_body">用气类型</label>
|
|
153
|
+
<v-select :value.sync="model.f_user_nature"
|
|
154
|
+
v-model="model.f_user_nature"
|
|
155
|
+
:options="$parent.$parent.usernatures"
|
|
156
|
+
condition="ss.f_user_nature = '{}'"
|
|
157
|
+
close-on-select></v-select>
|
|
158
|
+
</div>
|
|
159
|
+
<div class="col-sm-2 form-group">
|
|
160
|
+
<label class="font_normal_body">用气性质</label>
|
|
161
|
+
<v-select :value.sync="model.f_gasproperties"
|
|
162
|
+
v-model="model.f_gasproperties"
|
|
163
|
+
:options="$parent.$parent.gasProperties"
|
|
164
|
+
condition="ss.f_gasproperties = '{}'"
|
|
165
|
+
close-on-select></v-select>
|
|
166
|
+
</div>
|
|
151
167
|
</div>
|
|
152
168
|
</div>
|
|
153
169
|
</criteria>
|
|
@@ -463,6 +479,12 @@
|
|
|
463
479
|
pricetypes() {
|
|
464
480
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('气价类型')]
|
|
465
481
|
},
|
|
482
|
+
usernatures(){
|
|
483
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气类型')]
|
|
484
|
+
},
|
|
485
|
+
gasProperties(){
|
|
486
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
|
|
487
|
+
},
|
|
466
488
|
gasState() {
|
|
467
489
|
return [{label:'正常', value:'正常'},
|
|
468
490
|
{label:'异常', value:'异常'},
|