manage-client-xy 3.2.28 → 3.2.29

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.
Files changed (31) hide show
  1. package/build/dev-server.js +1 -1
  2. package/package.json +1 -1
  3. package/src/components/SellReport/FinancialStatement.vue +30 -0
  4. package/src/components/SellReport/ManageBusSummary.vue +241 -241
  5. package/src/components/SellReport/SmartKitchenSummary.vue +275 -275
  6. package/src/components/SellReport/UserNumber.vue +30 -0
  7. package/src/components/SellReport/XianYangNewCharge.vue +355 -355
  8. package/src/components/sale/businessquery/AreaGeneralQuery.vue +30 -15
  9. package/src/components/sale/businessquery/CMHGasQuery.vue +30 -0
  10. package/src/components/sale/businessquery/ChangeMeterQuery.vue +30 -1
  11. package/src/components/sale/businessquery/ChangeUserQuery.vue +30 -0
  12. package/src/components/sale/businessquery/ChargeQuery.vue +30 -0
  13. package/src/components/sale/businessquery/DisableQuery.vue +30 -0
  14. package/src/components/sale/businessquery/EnableQuery.vue +30 -0
  15. package/src/components/sale/businessquery/FMYGasQuery.vue +30 -0
  16. package/src/components/sale/businessquery/FillCardQuery.vue +30 -0
  17. package/src/components/sale/businessquery/FillGasQuery.vue +30 -0
  18. package/src/components/sale/businessquery/HandplanQuery.vue +30 -0
  19. package/src/components/sale/businessquery/LogQuery.vue +32 -0
  20. package/src/components/sale/businessquery/NewAccountQuery.vue +30 -0
  21. package/src/components/sale/businessquery/OtherChargeQuery.vue +30 -0
  22. package/src/components/sale/businessquery/RecordQuery.vue +30 -0
  23. package/src/components/sale/businessquery/ResidentialQuery.vue +30 -0
  24. package/src/components/sale/businessquery/ReverseQuery.vue +30 -0
  25. package/src/components/sale/businessquery/SellingHand.vue +30 -0
  26. package/src/components/sale/businessquery/TransferQuery.vue +30 -0
  27. package/src/components/sale/businessquery/cancelAccountQuery.vue +30 -0
  28. package/src/components/sale/filesquery/DeviceQuery.vue +30 -0
  29. package/src/components/sale/filesquery/MeterQuery.vue +30 -0
  30. package/src/components/sale/filesquery/UserQuery.vue +33 -1
  31. package/src/components/webmeter/DrillData/UserGasAll.vue +30 -1
@@ -107,6 +107,36 @@
107
107
  condition="f_gasproperties = '{}'"
108
108
  close-on-select></v-select>
109
109
  </div>
110
+ <div class="col-sm-2 form-group">
111
+ <label class="font_normal_body">房产地址</label>
112
+ <input class="input_search" condition="f_house_address = '{}'"
113
+ placeholder='房产地址'
114
+ style="width:60%" type="text" v-model="model.f_house_address">
115
+ </div>
116
+ <div class="col-sm-2 form-group">
117
+ <label class="font_normal_body">用途</label>
118
+ <input class="input_search" condition="f_property_usage = '{}'"
119
+ placeholder='用途'
120
+ style="width:60%" type="text" v-model="model.f_property_usage">
121
+ </div>
122
+ <div class="col-sm-2 form-group">
123
+ <label class="font_normal_body">房型</label>
124
+ <input class="input_search" condition="f_house_type = '{}'"
125
+ placeholder='房型'
126
+ style="width:60%" type="text" v-model="model.f_house_type">
127
+ </div>
128
+ <div class="col-sm-2 form-group">
129
+ <label class="font_normal_body">是否一户多表</label>
130
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
131
+ placeholder='是否一户多表'
132
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
133
+ </div>
134
+ <div class="col-sm-2 form-group">
135
+ <label class="font_normal_body">关联ID</label>
136
+ <input class="input_search" condition="f_house_id = '{}'"
137
+ placeholder='关联ID'
138
+ style="width:60%" type="text" v-model="model.f_house_id">
139
+ </div>
110
140
  </div>
111
141
  </div>
112
142
  </criteria>
@@ -81,6 +81,36 @@
81
81
  condition="f_state = '{}'"
82
82
  close-on-select></v-select>
83
83
  </div>
84
+ <div class="col-sm-2 form-group">
85
+ <label class="font_normal_body">房产地址</label>
86
+ <input class="input_search" condition="f_house_address = '{}'"
87
+ placeholder='房产地址'
88
+ style="width:60%" type="text" v-model="model.f_house_address">
89
+ </div>
90
+ <div class="col-sm-2 form-group">
91
+ <label class="font_normal_body">用途</label>
92
+ <input class="input_search" condition="f_property_usage = '{}'"
93
+ placeholder='用途'
94
+ style="width:60%" type="text" v-model="model.f_property_usage">
95
+ </div>
96
+ <div class="col-sm-2 form-group">
97
+ <label class="font_normal_body">房型</label>
98
+ <input class="input_search" condition="f_house_type = '{}'"
99
+ placeholder='房型'
100
+ style="width:60%" type="text" v-model="model.f_house_type">
101
+ </div>
102
+ <div class="col-sm-2 form-group">
103
+ <label class="font_normal_body">是否一户多表</label>
104
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
105
+ placeholder='是否一户多表'
106
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
107
+ </div>
108
+ <div class="col-sm-2 form-group">
109
+ <label class="font_normal_body">关联ID</label>
110
+ <input class="input_search" condition="f_house_id = '{}'"
111
+ placeholder='关联ID'
112
+ style="width:60%" type="text" v-model="model.f_house_id">
113
+ </div>
84
114
  </div>
85
115
  </div>
86
116
  </criteria>
@@ -113,6 +113,36 @@
113
113
  condition="{}"
114
114
  close-on-select></v-select>
115
115
  </div>
116
+ <div class="col-sm-2 form-group">
117
+ <label class="font_normal_body">房产地址</label>
118
+ <input class="input_search" condition="f_house_address = '{}'"
119
+ placeholder='房产地址'
120
+ style="width:60%" type="text" v-model="model.f_house_address">
121
+ </div>
122
+ <div class="col-sm-2 form-group">
123
+ <label class="font_normal_body">用途</label>
124
+ <input class="input_search" condition="f_property_usage = '{}'"
125
+ placeholder='用途'
126
+ style="width:60%" type="text" v-model="model.f_property_usage">
127
+ </div>
128
+ <div class="col-sm-2 form-group">
129
+ <label class="font_normal_body">房型</label>
130
+ <input class="input_search" condition="f_house_type = '{}'"
131
+ placeholder='房型'
132
+ style="width:60%" type="text" v-model="model.f_house_type">
133
+ </div>
134
+ <div class="col-sm-2 form-group">
135
+ <label class="font_normal_body">是否一户多表</label>
136
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
137
+ placeholder='是否一户多表'
138
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
139
+ </div>
140
+ <div class="col-sm-2 form-group">
141
+ <label class="font_normal_body">关联ID</label>
142
+ <input class="input_search" condition="f_house_id = '{}'"
143
+ placeholder='关联ID'
144
+ style="width:60%" type="text" v-model="model.f_house_id">
145
+ </div>
116
146
  </div>
117
147
  </div>
118
148
  </criteria>
@@ -109,6 +109,36 @@
109
109
  <input type="text" style="width:60%" class="input_search" v-model="model.f_operator"
110
110
  condition="f_operator like '%{}%'" placeholder="销户人">
111
111
  </div>
112
+ <div class="col-sm-2 form-group">
113
+ <label class="font_normal_body">房产地址</label>
114
+ <input class="input_search" condition="f_house_address = '{}'"
115
+ placeholder='房产地址'
116
+ style="width:60%" type="text" v-model="model.f_house_address">
117
+ </div>
118
+ <div class="col-sm-2 form-group">
119
+ <label class="font_normal_body">用途</label>
120
+ <input class="input_search" condition="f_property_usage = '{}'"
121
+ placeholder='用途'
122
+ style="width:60%" type="text" v-model="model.f_property_usage">
123
+ </div>
124
+ <div class="col-sm-2 form-group">
125
+ <label class="font_normal_body">房型</label>
126
+ <input class="input_search" condition="f_house_type = '{}'"
127
+ placeholder='房型'
128
+ style="width:60%" type="text" v-model="model.f_house_type">
129
+ </div>
130
+ <div class="col-sm-2 form-group">
131
+ <label class="font_normal_body">是否一户多表</label>
132
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
133
+ placeholder='是否一户多表'
134
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
135
+ </div>
136
+ <div class="col-sm-2 form-group">
137
+ <label class="font_normal_body">关联ID</label>
138
+ <input class="input_search" condition="f_house_id = '{}'"
139
+ placeholder='关联ID'
140
+ style="width:60%" type="text" v-model="model.f_house_id">
141
+ </div>
112
142
  </div>
113
143
  </div>
114
144
  </criteria>
@@ -157,6 +157,36 @@
157
157
  condition="f_area_code like '%{}%'" placeholder='区域码'>
158
158
  </div>
159
159
  <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
160
+ <div class="col-sm-2 form-group">
161
+ <label class="font_normal_body">房产地址</label>
162
+ <input class="input_search" condition="f_house_address = '{}'"
163
+ placeholder='房产地址'
164
+ style="width:60%" type="text" v-model="model.f_house_address">
165
+ </div>
166
+ <div class="col-sm-2 form-group">
167
+ <label class="font_normal_body">用途</label>
168
+ <input class="input_search" condition="f_property_usage = '{}'"
169
+ placeholder='用途'
170
+ style="width:60%" type="text" v-model="model.f_property_usage">
171
+ </div>
172
+ <div class="col-sm-2 form-group">
173
+ <label class="font_normal_body">房型</label>
174
+ <input class="input_search" condition="f_house_type = '{}'"
175
+ placeholder='房型'
176
+ style="width:60%" type="text" v-model="model.f_house_type">
177
+ </div>
178
+ <div class="col-sm-2 form-group">
179
+ <label class="font_normal_body">是否一户多表</label>
180
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
181
+ placeholder='是否一户多表'
182
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
183
+ </div>
184
+ <div class="col-sm-2 form-group">
185
+ <label class="font_normal_body">关联ID</label>
186
+ <input class="input_search" condition="f_house_id = '{}'"
187
+ placeholder='关联ID'
188
+ style="width:60%" type="text" v-model="model.f_house_id">
189
+ </div>
160
190
  </div>
161
191
  </div>
162
192
  </criteria>
@@ -221,6 +221,36 @@
221
221
  close-on-select></v-select>
222
222
  </div>
223
223
  <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
224
+ <div class="col-sm-2 form-group">
225
+ <label class="font_normal_body">房产地址</label>
226
+ <input class="input_search" condition="f_house_address = '{}'"
227
+ placeholder='房产地址'
228
+ style="width:60%" type="text" v-model="model.f_house_address">
229
+ </div>
230
+ <div class="col-sm-2 form-group">
231
+ <label class="font_normal_body">用途</label>
232
+ <input class="input_search" condition="f_property_usage = '{}'"
233
+ placeholder='用途'
234
+ style="width:60%" type="text" v-model="model.f_property_usage">
235
+ </div>
236
+ <div class="col-sm-2 form-group">
237
+ <label class="font_normal_body">房型</label>
238
+ <input class="input_search" condition="f_house_type = '{}'"
239
+ placeholder='房型'
240
+ style="width:60%" type="text" v-model="model.f_house_type">
241
+ </div>
242
+ <div class="col-sm-2 form-group">
243
+ <label class="font_normal_body">是否一户多表</label>
244
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
245
+ placeholder='是否一户多表'
246
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
247
+ </div>
248
+ <div class="col-sm-2 form-group">
249
+ <label class="font_normal_body">关联ID</label>
250
+ <input class="input_search" condition="f_house_id = '{}'"
251
+ placeholder='关联ID'
252
+ style="width:60%" type="text" v-model="model.f_house_id">
253
+ </div>
224
254
  </div>
225
255
  </div>
226
256
  </criteria>
@@ -241,7 +241,6 @@
241
241
  condition="f_devices_date <= to_date('{} 23:59:59','yyyy-mm-dd hh24:mi:ss')">
242
242
  </datepicker>
243
243
  </div>
244
- <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
245
244
  <div class="col-sm-2">
246
245
  <label class="font_normal_body">气表分类</label>
247
246
  <v-select :value.sync="model.f_meter_classify"
@@ -259,6 +258,39 @@
259
258
  close-on-select></v-select>
260
259
  </div>
261
260
  </div>
261
+ <div class="row" v-show="$parent.$parent.criteriaShow">
262
+ <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
263
+ <div class="col-sm-2 form-group">
264
+ <label class="font_normal_body">房产地址</label>
265
+ <input class="input_search" condition="f_house_address = '{}'"
266
+ placeholder='房产地址'
267
+ style="width:60%" type="text" v-model="model.f_house_address">
268
+ </div>
269
+ <div class="col-sm-2 form-group">
270
+ <label class="font_normal_body">用途</label>
271
+ <input class="input_search" condition="f_property_usage = '{}'"
272
+ placeholder='用途'
273
+ style="width:60%" type="text" v-model="model.f_property_usage">
274
+ </div>
275
+ <div class="col-sm-2 form-group">
276
+ <label class="font_normal_body">房型</label>
277
+ <input class="input_search" condition="f_house_type = '{}'"
278
+ placeholder='房型'
279
+ style="width:60%" type="text" v-model="model.f_house_type">
280
+ </div>
281
+ <div class="col-sm-2 form-group">
282
+ <label class="font_normal_body">是否一户多表</label>
283
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
284
+ placeholder='是否一户多表'
285
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
286
+ </div>
287
+ <div class="col-sm-2 form-group">
288
+ <label class="font_normal_body">关联ID</label>
289
+ <input class="input_search" condition="f_house_id = '{}'"
290
+ placeholder='关联ID'
291
+ style="width:60%" type="text" v-model="model.f_house_id">
292
+ </div>
293
+ </div>
262
294
  </div>
263
295
  </criteria>
264
296
 
@@ -130,7 +130,36 @@
130
130
  v-model="model.endDate">
131
131
  </datepicker>
132
132
  </div>
133
-
133
+ <div class="col-sm-2 form-group">
134
+ <label class="font_normal_body">房产地址</label>
135
+ <input class="input_search" condition="f_house_address = '{}'"
136
+ placeholder='房产地址'
137
+ style="width:60%" type="text" v-model="model.f_house_address">
138
+ </div>
139
+ <div class="col-sm-2 form-group">
140
+ <label class="font_normal_body">用途</label>
141
+ <input class="input_search" condition="f_property_usage = '{}'"
142
+ placeholder='用途'
143
+ style="width:60%" type="text" v-model="model.f_property_usage">
144
+ </div>
145
+ <div class="col-sm-2 form-group">
146
+ <label class="font_normal_body">房型</label>
147
+ <input class="input_search" condition="f_house_type = '{}'"
148
+ placeholder='房型'
149
+ style="width:60%" type="text" v-model="model.f_house_type">
150
+ </div>
151
+ <div class="col-sm-2 form-group">
152
+ <label class="font_normal_body">是否一户多表</label>
153
+ <input class="input_search" condition="f_is_multi_meter = '{}'"
154
+ placeholder='是否一户多表'
155
+ style="width:60%" type="text" v-model="model.f_is_multi_meter">
156
+ </div>
157
+ <div class="col-sm-2 form-group">
158
+ <label class="font_normal_body">关联ID</label>
159
+ <input class="input_search" condition="f_house_id = '{}'"
160
+ placeholder='关联ID'
161
+ style="width:60%" type="text" v-model="model.f_house_id">
162
+ </div>
134
163
  <!--<div class="col-sm-2 form-group">
135
164
  <label class="font_normal_body">用&nbsp;气&nbsp;量&nbsp;</label>
136
165
  <input type="text" style="width:60%" class="input_search"