manage-client 3.3.42 → 3.3.44
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/sale/businessquery/WebHandplanQuery.vue +2 -2
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +27 -0
- package/src/filiale/jingwei/config/exportConfig.js +4 -7
- package/src/filiale/qianneng/QnAqzz.vue +6 -0
- package/src/filiale/qianneng/QnAqzzYsbb.vue +604 -0
- package/src/filiale/qianneng/QnAqzzYsmx.vue +653 -0
- package/src/filiale/qianneng/QnChaobiaomingxi.vue +20 -4
- package/src/filiale/qianneng/QnChaobiaoyhhz.vue +19 -2
- package/src/filiale/qianneng/QnChaobiaoyqxzhz.vue +19 -2
- package/src/filiale/qianneng/RecordInfoQuery.vue +8 -0
- package/src/filiale/qianneng/exportConfig.js +10 -1
- package/src/filiale/qianneng/reportManage.js +4 -0
- package/src/filiale/shexian/ChangeMeterQuery.vue +46 -9
package/package.json
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
38
38
|
|
|
39
39
|
<div class="col-sm-2 form-group">
|
|
40
|
-
<label for="startDate" class="font_normal_body"
|
|
40
|
+
<label for="startDate" class="font_normal_body">下发日期</label>
|
|
41
41
|
<datepicker id="handStartDate" placeholder="开始日期" style="width:60%"
|
|
42
42
|
v-model="model.handStartDate"
|
|
43
43
|
:value.sync="model.handStartDate"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
close-on-select></v-select>
|
|
74
74
|
</div>
|
|
75
75
|
<div class="col-sm-2 form-group">
|
|
76
|
-
<label for="startDate" class="font_normal_body"
|
|
76
|
+
<label for="startDate" class="font_normal_body">抄表日期</label>
|
|
77
77
|
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
78
78
|
v-model="model.startDate"
|
|
79
79
|
:value.sync="model.startDate"
|
|
@@ -146,6 +146,14 @@
|
|
|
146
146
|
v-model="model.f_end_date"
|
|
147
147
|
></datepicker>
|
|
148
148
|
</div>
|
|
149
|
+
<div class="col-sm-2 form-group">
|
|
150
|
+
<label class="font_normal_body">指令标题</label>
|
|
151
|
+
<v-select :options='$parent.$parent.instructtitle' :value.sync="model.f_instruct_title" close-on-select
|
|
152
|
+
condition="f_instruct_title='{}'"
|
|
153
|
+
placeholder='指令标题'
|
|
154
|
+
style="width:60%"
|
|
155
|
+
v-model="model.f_instruct_title"></v-select>
|
|
156
|
+
</div>
|
|
149
157
|
</div>
|
|
150
158
|
</div>
|
|
151
159
|
</criteria>
|
|
@@ -286,6 +294,7 @@
|
|
|
286
294
|
await self.$MagLoadParams.loadParam()
|
|
287
295
|
self.initQueryParam()
|
|
288
296
|
self.getinstructtype()
|
|
297
|
+
self.getinstructtitle()
|
|
289
298
|
self.getinstructstate()
|
|
290
299
|
await self.$getConfig(self, 'NewQueryInstruct')
|
|
291
300
|
console.log('指令查看config', self.config)
|
|
@@ -327,6 +336,7 @@
|
|
|
327
336
|
'f_orgname': '组织机构'
|
|
328
337
|
}
|
|
329
338
|
},
|
|
339
|
+
instructtitle: []
|
|
330
340
|
}
|
|
331
341
|
},
|
|
332
342
|
ready () {
|
|
@@ -372,6 +382,23 @@
|
|
|
372
382
|
})
|
|
373
383
|
})
|
|
374
384
|
|
|
385
|
+
},
|
|
386
|
+
getinstructtitle(){
|
|
387
|
+
this.instructtype=[]
|
|
388
|
+
let load = new HttpResetClass()
|
|
389
|
+
load.load('POST', 'rs/sql/singleTableParam', {
|
|
390
|
+
data: {
|
|
391
|
+
items:'f_instruct_title',
|
|
392
|
+
tablename:'t_instruct',
|
|
393
|
+
condition:'f_instruct_title is not null group by f_instruct_title'
|
|
394
|
+
}
|
|
395
|
+
},{warnMsg:null,resolveMsg:null}).then((res) => {
|
|
396
|
+
this.instructtitle.push({label: '全部', value: ''})
|
|
397
|
+
res.data.forEach((item) => {
|
|
398
|
+
this.instructtitle.push({label: item.f_instruct_title, value: item.f_instruct_title})
|
|
399
|
+
})
|
|
400
|
+
})
|
|
401
|
+
|
|
375
402
|
},
|
|
376
403
|
getinstructstate(){
|
|
377
404
|
this.instructstate=[]
|
|
@@ -212,10 +212,10 @@ export default{
|
|
|
212
212
|
'f_meternumber': '表号'
|
|
213
213
|
},
|
|
214
214
|
compreConfig: {
|
|
215
|
-
'f_user_state': '客户状态', 'f_userinfo_code': '客户编号', '
|
|
215
|
+
'f_user_state': '客户状态', 'f_userinfo_code': '客户编号', 'f_card_id': '卡号', 'f_user_name': '客户名称',
|
|
216
216
|
'f_residential_area': '小区名称', 'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号', 'f_address': '详细地址',
|
|
217
217
|
'f_user_phone': '联系电话', 'f_usetype': '使用类型',
|
|
218
|
-
'f_gas_date': '通气日期', '
|
|
218
|
+
'f_gas_date': '通气日期', 'f_price_name': '气价名称', 'f_position': '安装位置', 'f_meter_type': '类型', 'f_meter_brand': '品牌',
|
|
219
219
|
'f_meternumber': '表号', 'f_metertitles': '表封号', 'f_aroundmeter': '表向', 'f_install_date': '气表安装日期', 'f_meter_base': '气表底数',
|
|
220
220
|
'f_balance': '账户余额', 'f_hand_date': '最后抄表日期', 'f_whether_hairpin': '是否发卡',
|
|
221
221
|
'f_valve_state': '阀门状态', 'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'value': '气价详情',
|
|
@@ -225,15 +225,12 @@ export default{
|
|
|
225
225
|
'f_contract_id': '供气合同编号', 'f_is_mgq': '是否煤改气', 'f_send_usegas_card': '是否发放天然气使用证',
|
|
226
226
|
'f_meter_style': '型号', 'f_table_state': '表具状态', 'f_initial_base': '初始气表底数',
|
|
227
227
|
'f_total_usegas_amount': '累计用气金额', 'f_total_gas': '表累购气量', 'f_total_fee': '表累购金额', 'f_inputtor': '档案抄表员',
|
|
228
|
-
'f_book_inputtor': '表册抄表员',
|
|
229
|
-
'
|
|
230
|
-
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
|
|
231
|
-
'f_balance_amount': '表剩余金额', 'f_times': '写卡次数',
|
|
228
|
+
'f_book_inputtor': '表册抄表员', 'f_userfiles_address': '安装地址', 'f_install_person': '安装人', 'f_gas_person': '通气人员',
|
|
229
|
+
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序', 'f_balance_amount': '表剩余金额', 'f_times': '写卡次数',
|
|
232
230
|
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型',
|
|
233
231
|
'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
|
|
234
232
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_maxdate': '换表时间', 'f_devices_type': '灶具信息'
|
|
235
233
|
},
|
|
236
|
-
|
|
237
234
|
compreConfigGY: {
|
|
238
235
|
'f_user_state': '客户状态', 'f_userinfo_code': '客户编号', 'f_card_id': '卡号', 'f_user_name': '客户名称',
|
|
239
236
|
'f_residential_area': '小区名称', 'f_address': '客户地址', 'f_user_phone': '客户电话',
|
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
<tabs header="加装花名册" >
|
|
13
13
|
<qn-aqzz-hmc v-if="show.includes('加装花名册')" @deal-msg="dealMsg" :data="data"></qn-aqzz-hmc>
|
|
14
14
|
</tabs>
|
|
15
|
+
<tabs header="验收明细" >
|
|
16
|
+
<qn-aqzz-ysmx v-if="show.includes('验收明细')" @deal-msg="dealMsg" :data="data"></qn-aqzz-ysmx>
|
|
17
|
+
</tabs>
|
|
18
|
+
<tabs header="验收报表" >
|
|
19
|
+
<qn-aqzz-ysbb v-if="show.includes('验收报表')" @deal-msg="dealMsg" :data="data"></qn-aqzz-ysbb>
|
|
20
|
+
</tabs>
|
|
15
21
|
</tab-button>
|
|
16
22
|
|
|
17
23
|
</template>
|