manage-client 4.0.30 → 4.0.31

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.
Files changed (29) hide show
  1. package/.gradle/8.5/checksums/checksums.lock +0 -0
  2. package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
  4. package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
  5. package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
  6. package/.gradle/8.5/fileChanges/last-build.bin +0 -0
  7. package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
  8. package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  9. package/.gradle/8.5/gc.properties +0 -0
  10. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  11. package/.gradle/buildOutputCleanup/cache.properties +2 -0
  12. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  13. package/.gradle/file-system.probe +0 -0
  14. package/.gradle/vcs-1/gc.properties +0 -0
  15. package/package.json +1 -1
  16. package/src/filiale/fugou/OtherChargeDetailQuery.vue +74 -0
  17. package/src/filiale/fugou/OtherChargeQuery.vue +731 -0
  18. package/src/filiale/fugou/config/exportConfig.js +1 -0
  19. package/src/filiale/fugou/sale.js +4 -0
  20. package/src/filiale/ningjin/GasStatistics.vue +4 -4
  21. package/src/filiale/ningjin/config/exportConfig.js +1099 -386
  22. package/src/filiale/ningjin/report/ReportList.vue +2 -2
  23. package/src/filiale/yangchun/ArchivesManage.vue +89 -0
  24. package/src/filiale/yangchun/DeviceQuery.vue +1 -1
  25. package/src/filiale/yangchun/RecordInfoQuery.vue +1 -1
  26. package/src/filiale/yangchun/sale.js +2 -0
  27. package/src/filiale/jinbin/exportConfig.js +0 -1110
  28. package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
  29. package/src/filiale/jinbin/sale.js +0 -7
@@ -133,8 +133,8 @@
133
133
  <th><nobr>本次抄表底数</nobr></th>
134
134
  <th><nobr>阀门状态</nobr></th>
135
135
 
136
- <th><nobr>标况总量</nobr></th>
137
136
  <th><nobr>工况总量</nobr></th>
137
+ <th><nobr>标况总量</nobr></th>
138
138
 
139
139
  <th><nobr>温度</nobr></th>
140
140
  <th><nobr>压力</nobr></th>
@@ -253,7 +253,7 @@
253
253
 
254
254
  <script>
255
255
  import {HttpResetClass, PagedList} from 'vue-client'
256
- import exportConfig from '../../../components/sale/config/exportConfig'
256
+ import exportConfig from '../config/exportConfig'
257
257
  import plugins from '../../../plugins/GetLoginInfoService'
258
258
  import defaultPrint from "../../../components/sale/config/DefaultPrint";
259
259
  import * as Util from '../../../Util'
@@ -0,0 +1,89 @@
1
+ <template>
2
+ <tab-button class="foot_tabset" :active="active">
3
+ <tabs header="客户查询" v-if="permission('客户查询')">
4
+ <user-query v-if="show.includes('客户查询')"></user-query>
5
+ </tabs>
6
+ <tabs header="表具查询" v-if="permission('表具查询')">
7
+ <meter-query v-if="show.includes('表具查询')"></meter-query>
8
+ </tabs>
9
+ <tabs header="用气设备查询" v-if="permission('表具设备查询')">
10
+ <equipment-query v-if="show.includes('表具设备查询')"></equipment-query>
11
+ </tabs>
12
+ <tabs header="点火查询" v-if="permission('点火查询')">
13
+ <fire-query v-if="show.includes('点火查询')"></fire-query>
14
+ </tabs>
15
+ <tabs header="综合档案信息查询" v-if="permission('综合档案信息查询')">
16
+ <record-info-query v-if="show.includes('综合档案信息查询')"></record-info-query>
17
+ </tabs>
18
+ <tabs header="档案变更记录" v-if="permission('档案变更记录')">
19
+ <changeuser-query v-if="show.includes('档案变更记录')" @deal-msg="dealMsg"></changeuser-query>
20
+ </tabs>
21
+ <tabs header="用户设备查询" v-if="permission('用户设备查询')">
22
+ <user-equipment-query v-if="show.includes('用户设备查询')"></user-equipment-query>
23
+ </tabs>
24
+ <tabs header="调价记录查询" v-if="permission('调价记录查询')">
25
+ <price-change-query v-if="show.includes('调价记录查询')"></price-change-query>
26
+ </tabs>
27
+
28
+ <tabs header="民用用气设备查询" v-if="permission('民用用气设备查询')">
29
+ <my-gas-device-query v-if="show.includes('民用用气设备查询')"></my-gas-device-query>
30
+ </tabs>
31
+
32
+ <tabs header="非民用用气设备查询" v-if="permission('非民用用气设备查询')">
33
+ <fmy-gas-device-query v-if="show.includes('非民用用气设备查询')"></fmy-gas-device-query>
34
+ </tabs>
35
+ </tab-button>
36
+
37
+ </template>
38
+
39
+ <script>
40
+ import TabButton from "./../../components/sale/common/TabButton";
41
+ import Tabs from "./../../components/sale/common/Tabs";
42
+
43
+ export default {
44
+ title: '档案查询',
45
+ data() {
46
+ return {
47
+ show: [],
48
+ active: -1,
49
+ pageMap : {
50
+ '表具设备查询': 2
51
+ }
52
+ }
53
+ },
54
+ components: {Tabs, TabButton},
55
+ ready() {
56
+ console.log("查看url参数")
57
+ // 获取url查询参数
58
+ let url = window.location.href
59
+ let params = url.split('?')[1]
60
+ let config = {}
61
+ if (params) {
62
+ let arr = params.split('&')
63
+ arr.forEach(item => {
64
+ let key = decodeURIComponent(item.split('=')[0]);
65
+ let value = decodeURIComponent(item.split('=')[1]);
66
+ if (key == 'tab') {
67
+ this.active = this.pageMap[value]
68
+ this.show = [value]
69
+ }
70
+ config[key] = value
71
+ })
72
+ }
73
+ console.log("查看url参数", config)
74
+ },
75
+ methods: {
76
+ permission(name) {
77
+ if (this.$login.r.find(value => value == '综合查询')) {
78
+ if (!this.$login.r.find(value => value == name)) {
79
+ return false
80
+ }
81
+ }
82
+ return true
83
+ }
84
+ }
85
+ }
86
+ </script>
87
+
88
+ <style scoped>
89
+ </style>
@@ -398,7 +398,7 @@
398
398
  // await self.$refs.paged.$refs.cri.search()
399
399
  }
400
400
  export default {
401
- title: '表具设备查询',
401
+ title: '用气设备查询',
402
402
  data() {
403
403
  return {
404
404
  other:[],
@@ -45,7 +45,7 @@
45
45
  <export-excel :data="$parent.$parent.getCondition"
46
46
  :field="$parent.$parent.getExportField"
47
47
  v-if="$parent.$parent.authArr.includes('档案查询导出')"
48
- sqlurl="/api/af-revenue/easyExcel/compreExport" sql-name="compreQuery" template-name='综合档案查询导出' :choose-col="true"></export-excel>
48
+ sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="compreQuery" template-name='综合档案查询导出' :choose-col="true"></export-excel>
49
49
  <print-data :sum-field="$parent.$parent.getExportField" :model="$parent.model" :field="$parent.$parent.getExportField"
50
50
  :defaultfield="$parent.$parent.defaultfield"
51
51
  titletable="综合档案查询"
@@ -33,4 +33,6 @@ export default function () {
33
33
  Vue.component('equipment-query', (resolve) => {
34
34
  require(['./DeviceQuery'], resolve)
35
35
  })
36
+ // 档案查询
37
+ Vue.component('archives-manage', (resolve) => { require(['./ArchivesManage'], resolve) })
36
38
  }