manage-client 3.3.39 → 3.3.42
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 +180 -180
- package/package.json +111 -111
- package/src/components/sale/businessquery/WebHandplanQuery.vue +975 -975
- package/src/components/sale/config/exportConfig.js +8 -0
- package/src/components/sale/enterprisequery/enterpriseChargeQuery.vue +310 -0
- package/src/components/sale/enterprisequery/enterpriseGasQuery.vue +309 -0
- package/src/components/sale/enterprisequery/enterpriseManage.vue +40 -0
- package/src/components/sale/filesquery/UserQuery.vue +1 -1
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +10 -10
- package/src/filiale/haile/exportConfig.js +1 -1
- package/src/filiale/haile/sale/businessquery/ChargeQuery.vue +6 -0
- package/src/filiale/jingwei/RecordInfoQuery.vue +2 -2
- package/src/filiale/jingwei/config/DefaultPrint.js +6 -0
- package/src/filiale/jingwei/config/exportConfig.js +1109 -0
- package/src/filiale/jingwei/config/tableConfig.js +54 -0
- package/src/filiale/kelai/UserQuery.vue +976 -976
- package/src/filiale/shanxian/FmyGasDeviceQuery.vue +1 -1
- package/src/filiale/shanxian/GasDeviceQuery.vue +2 -2
- package/src/filiale/shanxian/RecordInfoQuery.vue +1384 -1384
- package/src/filiale/shexian/ChangeMeterQuery.vue +12 -0
- package/src/filiale/shexian/config/exportConfig.js +2 -0
- package/src/main.js +68 -68
- package/src/saleManage.js +12 -0
|
@@ -640,7 +640,7 @@
|
|
|
640
640
|
}
|
|
641
641
|
}else{
|
|
642
642
|
if (type === '建档信息'||type === '用户信息'){
|
|
643
|
-
urlParam = 'rs/sql/
|
|
643
|
+
urlParam = 'rs/sql/sxchangeuserquery'
|
|
644
644
|
data = {
|
|
645
645
|
condition: ` 1=1 and f_orgid in ('${this.$login.f.orgid}') and f_userinfo_code = '${row.f_userinfo_code}' `,
|
|
646
646
|
orderitem: "f_operate_date desc"
|
|
@@ -669,7 +669,7 @@
|
|
|
669
669
|
}
|
|
670
670
|
}else{
|
|
671
671
|
if (type === '燃气表'){
|
|
672
|
-
urlParam = 'rs/sql/
|
|
672
|
+
urlParam = 'rs/sql/sxchangemeterquery'
|
|
673
673
|
data.condition = `1=1 and f_userinfo_id = '${row.f_userinfo_id}'`
|
|
674
674
|
data.orderitem = "f_operate_date desc"
|
|
675
675
|
let res = await this.$resetpost(urlParam, {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
|
|
@@ -677,7 +677,7 @@
|
|
|
677
677
|
this.filechangeHistorys.rows = res.data
|
|
678
678
|
}
|
|
679
679
|
}else if (type === '建档信息'){
|
|
680
|
-
urlParam = 'rs/sql/
|
|
680
|
+
urlParam = 'rs/sql/sxchangeuserquery'
|
|
681
681
|
data = {
|
|
682
682
|
condition: ` 1=1 and f_orgid in ('${this.$login.f.orgid}') and f_userinfo_code = '${row.f_userinfo_code}'`,
|
|
683
683
|
orderitem: "f_operate_date desc"
|