manage-client-xy 3.2.28 → 3.2.30
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 +2 -2
- package/package.json +1 -1
- package/src/components/SellReport/FinancialStatement.vue +30 -0
- package/src/components/SellReport/ManageBusSummary.vue +241 -241
- package/src/components/SellReport/SmartKitchenSummary.vue +275 -275
- package/src/components/SellReport/UserNumber.vue +30 -0
- package/src/components/SellReport/XianYangNewCharge.vue +355 -355
- package/src/components/sale/businessquery/AreaGeneralQuery.vue +715 -700
- package/src/components/sale/businessquery/CMHGasQuery.vue +441 -411
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +659 -630
- package/src/components/sale/businessquery/ChangeUserQuery.vue +403 -373
- package/src/components/sale/businessquery/ChargeQuery.vue +1027 -997
- package/src/components/sale/businessquery/DisableQuery.vue +433 -403
- package/src/components/sale/businessquery/EnableQuery.vue +422 -392
- package/src/components/sale/businessquery/FMYGasQuery.vue +440 -410
- package/src/components/sale/businessquery/FillCardQuery.vue +522 -492
- package/src/components/sale/businessquery/FillGasQuery.vue +506 -476
- package/src/components/sale/businessquery/HandplanQuery.vue +728 -698
- package/src/components/sale/businessquery/LogQuery.vue +301 -269
- package/src/components/sale/businessquery/NewAccountQuery.vue +518 -488
- package/src/components/sale/businessquery/OtherChargeQuery.vue +432 -402
- package/src/components/sale/businessquery/RecordQuery.vue +399 -369
- package/src/components/sale/businessquery/ResidentialQuery.vue +417 -387
- package/src/components/sale/businessquery/ReverseQuery.vue +459 -429
- package/src/components/sale/businessquery/SellingHand.vue +408 -378
- package/src/components/sale/businessquery/TransferQuery.vue +589 -559
- package/src/components/sale/businessquery/cancelAccountQuery.vue +518 -488
- package/src/components/sale/filesquery/DeviceQuery.vue +30 -0
- package/src/components/sale/filesquery/MeterQuery.vue +30 -0
- package/src/components/sale/filesquery/UserQuery.vue +796 -764
- package/src/components/webmeter/DrillData/UserGasAll.vue +30 -1
|
@@ -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>
|