manage-client 3.2.131 → 3.2.134
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 +2 -2
- package/src/ManageHome.js +258 -263
- package/src/components/SellReport/ManageMonthGas.vue +1 -1
- package/src/components/SellReport/ManageSellType.vue +1 -1
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +2 -1
- package/src/components/sale/businessquery/ChargeQuery.vue +6 -4
- package/src/components/sale/businessquery/DisableQuery.vue +2 -1
- package/src/components/sale/businessquery/EnableQuery.vue +2 -1
- package/src/components/sale/businessquery/FillCardQuery.vue +1 -0
- package/src/components/sale/businessquery/FillGasQuery.vue +2 -1
- package/src/components/sale/businessquery/OtherChargeQuery.vue +1 -1
- package/src/components/sale/businessquery/ReverseQuery.vue +1 -1
- package/src/components/sale/businessquery/TransferQuery.vue +1 -1
- package/src/components/sale/filesquery/MeterQuery.vue +9 -7
- package/src/components/sale/report/aode/MonthByChargeType.vue +2 -1
- package/src/components/sale/report/aode/MonthByUserType.vue +2 -1
- package/src/components/sale/report/aode/YearByChargeTpye.vue +2 -1
- package/src/components/sale/report/aode/YearByUserType.vue +2 -1
- package/src/filiale/WEINAN/BusinessManage.vue +10 -5
- package/src/filiale/WEINAN/CancellationQuery.vue +422 -0
- package/src/filiale/WEINAN/ChargeQuery.vue +70 -76
- package/src/filiale/WEINAN/CollectManage.vue +148 -0
- package/src/filiale/WEINAN/DisableQuery.vue +523 -0
- package/src/filiale/WEINAN/EnableQuery.vue +456 -0
- package/src/filiale/WEINAN/FillGasQuery.vue +6 -2
- package/src/filiale/WEINAN/OtherChargeQuery.vue +8 -7
- package/src/filiale/WEINAN/RecordInfoQuery.vue +5 -2
- package/src/filiale/WEINAN/config/exportConfig.js +24 -33
- package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +20 -12
- package/src/filiale/WEINAN/sale.js +11 -4
- package/src/filiale/macheng/HandplanQuery.vue +6 -0
- package/src/filiale/macheng/WebmeterSettlementAnalysis.vue +33 -12
- package/src/filiale/macheng/config/exportConfig.js +2 -2
- package/src/filiale/macheng/webmeterManage.js +9 -0
- package/src/filiale/tongchuan/MeterQuery.vue +1 -1
- package/src/main.js +19 -19
- package/src/newmanage.js +503 -508
- package/src/reportManage.js +561 -566
- package/src/saleManage.js +563 -568
- package/src/webmeterManage.js +99 -104
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
</div>
|
|
60
60
|
</div>
|
|
61
61
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
62
|
-
<res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
62
|
+
<res-select-group :show-component="$parent.$parent.resshow" :selectin="true" :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
63
63
|
<div class="col-sm-2 form-group">
|
|
64
64
|
<label class="font_normal_body">客户名称</label>
|
|
65
65
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
condition="f_payment in {}"
|
|
107
107
|
close-on-select></v-select>
|
|
108
108
|
</div>
|
|
109
|
-
<div class="col-sm-2 form-group">
|
|
109
|
+
<div class="col-sm-2 form-group" v-if="titleShow">
|
|
110
110
|
<label class="font_normal_body" title="参数:支付渠道查询">支付渠道</label>
|
|
111
111
|
<v-select :value.sync="model.f_bank_type" multiple
|
|
112
112
|
v-model="model.f_bank_type"
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
<th>
|
|
431
431
|
<nobr>写卡状态</nobr>
|
|
432
432
|
</th>
|
|
433
|
-
<th>
|
|
433
|
+
<th v-if="titleShow">
|
|
434
434
|
<nobr>支付渠道</nobr>
|
|
435
435
|
</th>
|
|
436
436
|
<th>
|
|
@@ -626,7 +626,7 @@
|
|
|
626
626
|
<td style="text-align: center;">
|
|
627
627
|
<nobr>{{row.f_write_card}}</nobr>
|
|
628
628
|
</td>
|
|
629
|
-
<td style="text-align: center;">
|
|
629
|
+
<td style="text-align: center;" v-if="titleShow">
|
|
630
630
|
<nobr>{{row.f_bank_type}}</nobr>
|
|
631
631
|
</td>
|
|
632
632
|
<td style="text-align: center;">
|
|
@@ -832,6 +832,7 @@
|
|
|
832
832
|
data() {
|
|
833
833
|
return {
|
|
834
834
|
IdCardInfo:'',
|
|
835
|
+
titleShow : true,
|
|
835
836
|
card:'',
|
|
836
837
|
isSingleUser: null,
|
|
837
838
|
startDate1:'',
|
|
@@ -914,6 +915,7 @@
|
|
|
914
915
|
this.$refs.paged.$refs.cri.model.f_state=['有效']
|
|
915
916
|
this.getaddress()
|
|
916
917
|
this.getEquipment()
|
|
918
|
+
this.titleShow = this.$appdata.getSingleValue('是否显示筛选框') == null? true : this.$appdata.getSingleValue('是否显示筛选框')
|
|
917
919
|
//加载抄表册
|
|
918
920
|
this.$MagGetSaleParam.initinputtor();
|
|
919
921
|
this.getinputtores();
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
condition="f_meter_brand = '{}'"
|
|
133
133
|
close-on-select></v-select>
|
|
134
134
|
</div>
|
|
135
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
135
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
136
136
|
</div>
|
|
137
137
|
</div>
|
|
138
138
|
</criteria>
|
|
@@ -388,6 +388,7 @@
|
|
|
388
388
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
389
389
|
}
|
|
390
390
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
391
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
391
392
|
this.model.search(args.condition, args.model)
|
|
392
393
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
393
394
|
},
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
condition="f_operat_type = '{}'"
|
|
107
107
|
close-on-select></v-select>
|
|
108
108
|
</div>
|
|
109
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
109
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
110
110
|
</div>
|
|
111
111
|
</div>
|
|
112
112
|
</criteria>
|
|
@@ -339,6 +339,7 @@
|
|
|
339
339
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
340
340
|
}
|
|
341
341
|
args.condition = `${args.condition} ` + this.orgCondtionStr
|
|
342
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
342
343
|
this.model.search(args.condition, args.model)
|
|
343
344
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
344
345
|
},
|
|
@@ -397,6 +397,7 @@
|
|
|
397
397
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
398
398
|
}
|
|
399
399
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
400
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
400
401
|
await this.model.search(args.condition, args.model)
|
|
401
402
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
402
403
|
},
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
</div>
|
|
59
59
|
|
|
60
60
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
61
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
61
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
62
62
|
<div class="col-sm-2 form-group">
|
|
63
63
|
<label class="font_normal_body">客户名称</label>
|
|
64
64
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
@@ -451,6 +451,7 @@
|
|
|
451
451
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
452
452
|
}
|
|
453
453
|
args.condition = `${args.condition}` + this.orgCondtionStr
|
|
454
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
454
455
|
this.model.search(args.condition, args.model)
|
|
455
456
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
456
457
|
this.sumsmodel.hushu=[...new Set(this.$refs.paged.$refs.grid.model.rows.map(item => item.f_userinfo_code))].length
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</div>
|
|
57
57
|
|
|
58
58
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
59
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
59
|
+
<res-select-group :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
60
60
|
<div class="col-sm-2 form-group">
|
|
61
61
|
<label class="font_normal_body">客户名称</label>
|
|
62
62
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
</div>
|
|
56
56
|
|
|
57
57
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
58
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
58
|
+
<res-select-group :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
59
59
|
<div class="col-sm-2 form-group">
|
|
60
60
|
<label class="font_normal_body">客户名称</label>
|
|
61
61
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|
|
55
55
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
56
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
56
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
57
57
|
|
|
58
58
|
<div class="col-sm-2 form-group">
|
|
59
59
|
<label class="font_normal_body">客户地址</label>
|
|
@@ -92,14 +92,14 @@
|
|
|
92
92
|
:options='$parent.$parent.issecond' placeholder='请选择'
|
|
93
93
|
close-on-select></v-select>
|
|
94
94
|
</div>
|
|
95
|
-
<div class="col-sm-2 form-group" >
|
|
95
|
+
<div class="col-sm-2 form-group" v-if="titleShow">
|
|
96
96
|
<label for="f_usetype" class="font_normal_body" title="参数:使用类型">使用类型</label>
|
|
97
97
|
<v-select :value.sync="model.f_usetype" v-model="model.f_usetype"
|
|
98
98
|
condition="f_usetype = '{}'"
|
|
99
99
|
:options='$parent.$parent.usetype' placeholder='请选择'
|
|
100
100
|
close-on-select></v-select>
|
|
101
101
|
</div>
|
|
102
|
-
<div class="col-sm-2 form-group">
|
|
102
|
+
<div class="col-sm-2 form-group" v-if="titleShow">
|
|
103
103
|
<label class="font_normal_body">用气性质</label>
|
|
104
104
|
<v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
|
|
105
105
|
:options='$parent.$parent.gasproperties' placeholder='请选择'
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
condition="isbgl = '{}'"
|
|
211
211
|
close-on-select></v-select>
|
|
212
212
|
</div>
|
|
213
|
-
<div class="col-sm-2 form-group" v-if="
|
|
213
|
+
<div class="col-sm-2 form-group" v-if="titleShow">
|
|
214
214
|
<label class="font_normal_body">用户等级</label>
|
|
215
215
|
<v-select :value.sync="model.f_user_grade"
|
|
216
216
|
v-model="model.f_user_grade"
|
|
@@ -284,10 +284,10 @@
|
|
|
284
284
|
<th>
|
|
285
285
|
<nobr>客户类型</nobr>
|
|
286
286
|
</th>
|
|
287
|
-
<th>
|
|
287
|
+
<th v-if="titleShow">
|
|
288
288
|
<nobr>使用类型</nobr>
|
|
289
289
|
</th>
|
|
290
|
-
<th>
|
|
290
|
+
<th v-if="titleShow">
|
|
291
291
|
<nobr>用气性质</nobr>
|
|
292
292
|
</th>
|
|
293
293
|
<th>
|
|
@@ -363,10 +363,10 @@
|
|
|
363
363
|
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
364
364
|
<nobr>{{row.f_user_type}}</nobr>
|
|
365
365
|
</td>
|
|
366
|
-
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
366
|
+
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;" v-if="titleShow">
|
|
367
367
|
<nobr>{{row.f_usetype}}</nobr>
|
|
368
368
|
</td>
|
|
369
|
-
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
369
|
+
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;" v-if="titleShow">
|
|
370
370
|
<nobr>{{row.f_gasproperties}}</nobr>
|
|
371
371
|
</td>
|
|
372
372
|
<td :class="row.f_table_state !== '正常'? 'back-red' : 'back-blue'" style="text-align: center;">
|
|
@@ -506,6 +506,7 @@
|
|
|
506
506
|
data() {
|
|
507
507
|
return {
|
|
508
508
|
IdCardInfo:'',
|
|
509
|
+
titleShow : true,
|
|
509
510
|
card:'',
|
|
510
511
|
isSingleUser: null,
|
|
511
512
|
other:[],
|
|
@@ -560,6 +561,7 @@
|
|
|
560
561
|
},
|
|
561
562
|
ready() {
|
|
562
563
|
console.log("===========",this.$filialeInfo)
|
|
564
|
+
this.titleShow = this.$appdata.getSingleValue('是否显示筛选框') == null? true : this.$appdata.getSingleValue('是否显示筛选框')
|
|
563
565
|
readySomething(this).then(() => {
|
|
564
566
|
this.$emit('ready')
|
|
565
567
|
}).catch((error) => {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri v-show="$parent.criteriaShow">
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
8
|
<div class="row">
|
|
9
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :mul="false" v-ref:sel></res-select-group>
|
|
9
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true :mul="false" v-ref:sel></res-select-group>
|
|
10
10
|
<div class="col-sm-2 form-group">
|
|
11
11
|
<label class="font_normal_body">时间类型</label>
|
|
12
12
|
<v-select
|
|
@@ -313,6 +313,7 @@
|
|
|
313
313
|
f_orgstr = 'and f_orgid = ' + this.$login.f.orgid
|
|
314
314
|
}
|
|
315
315
|
args.condition = `${args.condition} ` + f_orgstr
|
|
316
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
316
317
|
await this.model.search(args.condition, args.model)
|
|
317
318
|
|
|
318
319
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri v-show="$parent.criteriaShow">
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
8
|
<div class="row">
|
|
9
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :mul="false" v-ref:sel></res-select-group>
|
|
9
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true :mul="false" v-ref:sel></res-select-group>
|
|
10
10
|
|
|
11
11
|
<div class="col-sm-2 form-group">
|
|
12
12
|
<label class="font_normal_body">时间类型</label>
|
|
@@ -323,6 +323,7 @@
|
|
|
323
323
|
}
|
|
324
324
|
//由于此处底层组件默认前面加了个and,所以此处前面硬补位一个1=1 等后面加condition了可以替换
|
|
325
325
|
this.condition = `${args.condition} ` + f_orgstr
|
|
326
|
+
this.condition = this.condition.replace(/f_zones/, "f_slice_area")
|
|
326
327
|
await this.model.search(this.condition, args.model)
|
|
327
328
|
|
|
328
329
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri v-show="$parent.criteriaShow">
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
8
|
<div class="row">
|
|
9
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :mul="false" v-ref:sel></res-select-group>
|
|
9
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true :mul="false" v-ref:sel></res-select-group>
|
|
10
10
|
<div class="col-sm-2" >
|
|
11
11
|
<label for="YeadDate" class="font_normal_body">统计年份</label>
|
|
12
12
|
<datepicker placeholder="结束日期" style="width:60%"
|
|
@@ -144,6 +144,7 @@
|
|
|
144
144
|
f_orgstr = 'and f_orgid = ' + this.$login.f.orgid
|
|
145
145
|
}
|
|
146
146
|
args.condition = `${args.condition} ` + f_orgstr
|
|
147
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
147
148
|
await this.model.search(args.condition, args.model)
|
|
148
149
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
149
150
|
console.log('计算合计。', this.sumsmodel)
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri v-show="$parent.criteriaShow">
|
|
7
7
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
8
|
<div class="row">
|
|
9
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :mul="false" v-ref:sel></res-select-group>
|
|
9
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true :mul="false" v-ref:sel></res-select-group>
|
|
10
10
|
<div class="col-sm-2" >
|
|
11
11
|
<label for="YeadDate" class="font_normal_body">统计年份</label>
|
|
12
12
|
<datepicker placeholder="结束日期" style="width:60%"
|
|
@@ -200,6 +200,7 @@
|
|
|
200
200
|
f_orgstr = 'and f_orgid = ' + this.$login.f.orgid
|
|
201
201
|
}
|
|
202
202
|
args.condition = `${args.condition} ` + f_orgstr
|
|
203
|
+
args.condition = args.condition.replace(/f_zones/, "f_slice_area")
|
|
203
204
|
await this.model.search(args.condition, args.model)
|
|
204
205
|
|
|
205
206
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
<tabs header="换表查询" v-if="permission('换表查询')">
|
|
8
8
|
<change-meter-query v-if="show.includes('换表查询')" @deal-msg="dealMsg" :data="data"></change-meter-query>
|
|
9
9
|
</tabs>
|
|
10
|
-
|
|
10
|
+
<!--<tabs header="机表抄表查询" v-if="permission('机表抄表查询')">-->
|
|
11
|
+
<tabs header="机表抄表查询" v-if="false">
|
|
11
12
|
<handplan-query v-if="show.includes('机表抄表查询')" @deal-msg="dealMsg" :data="data"></handplan-query>
|
|
12
13
|
</tabs>
|
|
13
14
|
<tabs header="过户查询" v-if="permission('过户查询')">
|
|
@@ -37,7 +38,8 @@
|
|
|
37
38
|
<!-- <tabs header="减免优惠查询" v-if="permission('减免优惠查询')">-->
|
|
38
39
|
<!-- <over-due-query v-if="show.includes('减免优惠查询')" @deal-msg="dealMsg" :data="data"></over-due-query>-->
|
|
39
40
|
<!-- </tabs>-->
|
|
40
|
-
|
|
41
|
+
<!--<tabs header="调价补差查询" v-if="permission('调价补差查询')">-->
|
|
42
|
+
<tabs header="调价补差查询" v-if="false">
|
|
41
43
|
<priceadjust-query v-if="show.includes('调价补差查询')" @deal-msg="dealMsg" :data="data"></priceadjust-query>
|
|
42
44
|
</tabs>
|
|
43
45
|
<tabs header="迁表查询" v-if="permission('迁表查询')">
|
|
@@ -52,13 +54,16 @@
|
|
|
52
54
|
<!-- <tabs header="操作记录查询" v-if="permission('操作记录查询')">-->
|
|
53
55
|
<!-- <record-query v-if="show == '操作记录查询'" @deal-msg="dealMsg" :data="data"></record-query>-->
|
|
54
56
|
<!-- </tabs>-->
|
|
55
|
-
|
|
57
|
+
<!--<tabs header="业务查询" v-if="permission('业务查询')">-->
|
|
58
|
+
<tabs header="业务查询" v-if="false">
|
|
56
59
|
<busines-query v-if="show.includes('业务查询')" @deal-msg="dealMsg" :data="data"></busines-query>
|
|
57
60
|
</tabs>
|
|
58
|
-
|
|
61
|
+
<!--<tabs header="预存查询" v-if="permission('预存查询')">-->
|
|
62
|
+
<tabs header="预存查询" v-if="false">
|
|
59
63
|
<yucun-detailss v-if="show.includes('预存查询')" @deal-msg="dealMsg" :data="data"></yucun-detailss>
|
|
60
64
|
</tabs>
|
|
61
|
-
|
|
65
|
+
<!--<tabs header="发折查询" v-if="permission('发折查询')">-->
|
|
66
|
+
<tabs header="发折查询" v-if="false">
|
|
62
67
|
<sendbook-query v-if="show.includes('发折查询')" @deal-msg="dealMsg" :data="data"></sendbook-query>
|
|
63
68
|
</tabs>
|
|
64
69
|
<tabs header="用户参保查询" v-if="permission('用户参保查询')">
|