sale-client 3.6.264-test → 3.6.264
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 +1 -1
- package/src/components/FilesManage/UserEssentialInfoTest.vue +1 -1
- package/src/components/common/userinfo_detail/UserBaseInfoNew.vue +7 -1
- package/src/components/revenue/comprehen/Maintenance/hand/handListMaintain.vue +2 -1
- package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +6 -0
- package/src/filiale/alashan/UserBaseInfoNew.vue +4 -0
- package/src/filiale/bayan/CardService.js +2223 -0
- package/src/filiale/bayan/NoCardMeterCenter.vue +498 -0
- package/src/filiale/bayan/ReplaceCardManage.vue +416 -0
- package/src/filiale/bayan/ShowCardSellGas.vue +931 -0
- package/src/filiale/bayan/sale.js +13 -0
- package/src/filiale/dongguan/components/common/userinfo_detail/UserBaseInfoNew.vue +4 -0
- package/src/filiale/dongguan/components/common/userinfo_detail/WebMeterBatchOperationValve.vue +6 -0
- package/src/filiale/gehua/UserBaseInfoNew.vue +4 -0
- package/src/filiale/guangxi/WebMeterBatchOperationValve.vue +6 -0
- package/src/filiale/haile/UserBaseInfoNew.vue +4 -0
- package/src/filiale/jingyang/EticketV4/EticketOpenJBPage.vue +4 -4
- package/src/filiale/jingyang/GovernmentSell.vue +329 -0
- package/src/filiale/macheng/UserBaseInfoNew.vue +4 -0
- package/src/filiale/qianneng/components/common/userinfo_detail/UserBaseInfoNew.vue +3 -0
- package/src/filiale/rizhao/UserBaseInfoNew.vue +4 -0
- package/src/filiale/shanxian/components/webMeter/WebMeterBatchOperationValve.vue +6 -0
- package/src/filiale/shaoguan/base/UserBaseInfoNew.vue +4 -0
- package/src/filiale/shexian/UserBaseInfoNew.vue +4 -0
- package/src/filiale/tongchuan/UserBaseInfoNew.vue +4 -0
- package/src/filiale/tongchuan/bill/CustQueryEticketQueryV4.vue +16 -14
- package/src/filiale/tongchuan/bill/EticketOpenCard.vue +1 -1
- package/src/filiale/xinkang/UserBaseInfoNew.vue +4 -0
- package/src/filiale/xinkang/WebMeterBatchOperationValve.vue +6 -0
- package/src/filiale/yuansheng/UserBaseInfoNew.vue +4 -0
- package/src/filiale/yuncheng/machineHandAudit.vue +23 -4
- package/src/filiale/zhongsheng/charge/UserBaseInfoNew.vue +4 -0
- package/src/main.js +1 -1
- package/src/plugins/CommonService.js +11 -0
package/package.json
CHANGED
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
<div >
|
|
236
236
|
<div class="col-sm-4 form-group"
|
|
237
237
|
v-show="(formconfig && formconfig.f_gas_pointsnumber && formconfig.f_gas_pointsnumber.required) || !onlyshowmust"
|
|
238
|
-
:class="[$v.f_gas_pointsnumber.dctest ? 'has-error' : '']" v-if="getConfigShowItem('
|
|
238
|
+
:class="[$v.f_gas_pointsnumber.dctest ? 'has-error' : '']" v-if="getConfigShowItem('f_gas_pointsnumber')">
|
|
239
239
|
<label for="f_people_num" style="letter-spacing: 0.5em;margin-right: -0.5em" class="font_normal_body w3">{{getConfigLabelName('f_gas_pointsnumber','用气点数量')}}</label>
|
|
240
240
|
<v-select id="f_people_num" :value.sync="baseinfo.base.f_gas_pointsnumber"
|
|
241
241
|
v-model="baseinfo.base.f_gas_pointsnumber"
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
class="button_search" type="button" @click="openUser">开户</button>
|
|
163
163
|
<button v-if="row.f_meter_type.includes('物联网表') && valveLimit"
|
|
164
164
|
class="button_search" type="button" @click="valvecontrol">开关阀</button>
|
|
165
|
-
<button v-if="row.f_meter_type.includes('物联网表')"
|
|
165
|
+
<button v-if="row.f_meter_type.includes('物联网表') && autoValveLimit"
|
|
166
166
|
class="button_search" type="button" @click="zdfk">开关自动阀控</button>
|
|
167
167
|
<div
|
|
168
168
|
:class="{'button_shrink_top':criteriaShow,'button_shrink_bottom':!criteriaShow}"
|
|
@@ -267,6 +267,7 @@
|
|
|
267
267
|
criteriaShow: false,
|
|
268
268
|
devices: [],
|
|
269
269
|
valveLimit: false,
|
|
270
|
+
autoValveLimit: false,
|
|
270
271
|
// 开关阀操作原因
|
|
271
272
|
operateReason: '',
|
|
272
273
|
valve: false
|
|
@@ -276,6 +277,7 @@
|
|
|
276
277
|
ready () {
|
|
277
278
|
this.getDevice()
|
|
278
279
|
this.valveLimit = this.$login.r.includes('开关阀权限')
|
|
280
|
+
this.autoValveLimit = this.$login.r.includes('自动阀控权限')
|
|
279
281
|
},
|
|
280
282
|
methods: {
|
|
281
283
|
// 发送请求去数据
|
|
@@ -359,6 +361,9 @@
|
|
|
359
361
|
// 阀控管理
|
|
360
362
|
zdfk () {
|
|
361
363
|
let data = {
|
|
364
|
+
inputtor: Vue.$login.f.name,
|
|
365
|
+
inputtorid: Vue.$login.f.id,
|
|
366
|
+
meterBrandName: this.row.f_alias,
|
|
362
367
|
f_userfiles_id: this.row.f_userfiles_id
|
|
363
368
|
}
|
|
364
369
|
if (this.row.f_network_valve !== '1') {
|
|
@@ -391,6 +396,7 @@
|
|
|
391
396
|
meterBrandName: this.row.f_alias,
|
|
392
397
|
f_instruct_state: '待发送',
|
|
393
398
|
inputtor: Vue.$login.f.name,
|
|
399
|
+
inputtorid: Vue.$login.f.id,
|
|
394
400
|
reasonInfo: this.operateReason,
|
|
395
401
|
meternumberf: this.row.f_meternumber,
|
|
396
402
|
contentData: {isOpen: oper ? 1 : 0}
|
|
@@ -556,11 +556,12 @@ const myMap = new Map()
|
|
|
556
556
|
this.show = true
|
|
557
557
|
},
|
|
558
558
|
selfSearch (args) {
|
|
559
|
+
console.log('>>> args = ', args)
|
|
559
560
|
if (!this.f_orgid) {
|
|
560
561
|
this.f_orgid = this.$login.f.orgid
|
|
561
562
|
}
|
|
562
563
|
let f_orgstr = this.orgCondtionStr ? this.orgCondtionStr : "and h.f_orgid in ('" + this.f_orgid + "')"
|
|
563
|
-
args.condValueStr = `${args.condValueStr} ` + f_orgstr
|
|
564
|
+
args.condValueStr = `${args.condValueStr === undefined ? '1=1' : args.condValueStr} ` + f_orgstr
|
|
564
565
|
this.model.search(args.condition, args.model, args.condValueStr)
|
|
565
566
|
this.condition = args.condition
|
|
566
567
|
this.condValueStr = args.condValueStr
|
|
@@ -602,6 +602,12 @@ import axios from 'axios'
|
|
|
602
602
|
},
|
|
603
603
|
openzdkf (val) {
|
|
604
604
|
let data = {
|
|
605
|
+
f_operator: this.$login.f.name,
|
|
606
|
+
f_operatorid: this.$login.f.id,
|
|
607
|
+
f_orgid: this.$login.f.orgid,
|
|
608
|
+
f_orgname: this.$login.f.orgs,
|
|
609
|
+
f_depid: this.$login.f.depids,
|
|
610
|
+
f_depname: this.$login.f.deps,
|
|
605
611
|
condition: this.condition,
|
|
606
612
|
type: val
|
|
607
613
|
}
|
|
@@ -370,6 +370,9 @@
|
|
|
370
370
|
// 阀控管理
|
|
371
371
|
zdfk () {
|
|
372
372
|
let data = {
|
|
373
|
+
inputtor: Vue.$login.f.name,
|
|
374
|
+
inputtorid: Vue.$login.f.id,
|
|
375
|
+
meterBrandName: this.row.f_alias,
|
|
373
376
|
f_userfiles_id: this.row.f_userfiles_id
|
|
374
377
|
}
|
|
375
378
|
if (this.row.f_network_valve !== '1') {
|
|
@@ -402,6 +405,7 @@
|
|
|
402
405
|
meterBrandName: this.row.f_alias,
|
|
403
406
|
f_instruct_state: '待发送',
|
|
404
407
|
inputtor: Vue.$login.f.name,
|
|
408
|
+
inputtorid: Vue.$login.f.id,
|
|
405
409
|
reasonInfo: this.operateReason,
|
|
406
410
|
meternumberf: this.row.f_meternumber,
|
|
407
411
|
contentData: {isOpen: oper ? 1 : 0}
|