manage-client 3.2.192 → 3.2.194
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 +1 -1
- package/package.json +1 -1
- package/src/components/sale/businessquery/AccountQuery/ExpectGasList.vue +2 -2
- package/src/components/sale/filesquery/ArchivesManage.vue +8 -0
- package/src/components/sale/filesquery/FmyGasDeviceQuery.vue +726 -0
- package/src/components/sale/filesquery/GasDeviceQuery.vue +822 -0
- package/src/filiale/meihekou/MeterQuery.vue +5 -5
- package/src/main.js +1 -1
- package/src/saleManage.js +8 -1
|
@@ -269,31 +269,31 @@
|
|
|
269
269
|
<div class="col-sm-2 form-group">
|
|
270
270
|
<label class="font_normal_body">小  区</label>
|
|
271
271
|
<input style="width:60%" type="text" class="form-control" v-model="model.f_residential_area"
|
|
272
|
-
condition="
|
|
272
|
+
condition="f_residential_area like '%{}%'" placeholder='小区'
|
|
273
273
|
>
|
|
274
274
|
</div>
|
|
275
275
|
<div class="col-sm-2 form-group">
|
|
276
276
|
<label class="font_normal_body">楼  栋</label>
|
|
277
277
|
<input style="width:60%" type="text" class="form-control" v-model="model.f_building"
|
|
278
|
-
condition="
|
|
278
|
+
condition="f_building like '%{}%'" placeholder='楼栋'
|
|
279
279
|
>
|
|
280
280
|
</div>
|
|
281
281
|
<div class="col-sm-2 form-group">
|
|
282
282
|
<label class="font_normal_body">单  元</label>
|
|
283
283
|
<input style="width:60%" type="text" class="form-control" v-model="model.f_unit"
|
|
284
|
-
condition="
|
|
284
|
+
condition="f_unit like '%{}%'" placeholder='单元'
|
|
285
285
|
>
|
|
286
286
|
</div>
|
|
287
287
|
<div class="col-sm-2 form-group">
|
|
288
288
|
<label class="font_normal_body">楼  层</label>
|
|
289
289
|
<input style="width:60%" type="text" class="form-control" v-model="model.f_floor"
|
|
290
|
-
condition="
|
|
290
|
+
condition="f_floor like '%{}%'" placeholder='楼层'
|
|
291
291
|
>
|
|
292
292
|
</div>
|
|
293
293
|
<div class="col-sm-2 form-group">
|
|
294
294
|
<label class="font_normal_body"> 门牌号</label>
|
|
295
295
|
<input style="width:60%" type="text" class="form-control" v-model="model.f_room"
|
|
296
|
-
condition="
|
|
296
|
+
condition="f_room like '%{}%'" placeholder='门牌号'
|
|
297
297
|
>
|
|
298
298
|
</div>
|
|
299
299
|
</div>
|
package/src/main.js
CHANGED
package/src/saleManage.js
CHANGED
|
@@ -33,7 +33,14 @@ export default function (filiale) {
|
|
|
33
33
|
Vue.component('fire-query', (resolve) => {
|
|
34
34
|
require(['./components/sale/filesquery/FireQuery'], resolve)
|
|
35
35
|
})
|
|
36
|
-
|
|
36
|
+
// 民用用气设备查询
|
|
37
|
+
Vue.component('my-gas-device-query', (resolve) => {
|
|
38
|
+
require(['./components/sale/filesquery/GasDeviceQuery'], resolve)
|
|
39
|
+
})
|
|
40
|
+
// 非民用用气设备查询
|
|
41
|
+
Vue.component('fmy-gas-device-query', (resolve) => {
|
|
42
|
+
require(['./components/sale/filesquery/FmyGasDeviceQuery'], resolve)
|
|
43
|
+
})
|
|
37
44
|
// 调价记录查询
|
|
38
45
|
Vue.component('price-change-query', (resolve) => {
|
|
39
46
|
require(['./components/sale/filesquery/PriceChangeQuery'], resolve)
|