apply-clients 3.4.91 → 3.4.93

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 (44) hide show
  1. package/build/dev-server.js +133 -133
  2. package/package.json +117 -117
  3. package/src/App.vue +26 -21
  4. package/src/components/android/Ignition/VentilationIgnition.vue +312 -312
  5. package/src/components/android/Ignition/VentilationIgnitionHandle.vue +353 -353
  6. package/src/components/product/ApplyCharge/ApplyChargeList.vue +476 -476
  7. package/src/components/product/Function/InstallInfoSelect.vue +326 -326
  8. package/src/components/product/Ignition/IgnitionListManage.vue +420 -420
  9. package/src/components/product/Material/MaterialDetailed.vue +268 -268
  10. package/src/components/product/Material/Materiallist.vue +74 -74
  11. package/src/components/product/Material/Materialmanger.vue +58 -58
  12. package/src/components/product/Process/ExplorationSelect.vue +491 -491
  13. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +203 -203
  14. package/src/components/product/Process/ShowBackReason.vue +40 -40
  15. package/src/components/product/Stop/StopApplyList.vue +278 -278
  16. package/src/components/product/Supervisory/SupervisoryControl.vue +140 -140
  17. package/src/filiale/hongda/pc/printChargepc.vue +114 -114
  18. package/src/filiale/hongda/pc/printactivatecard.vue +151 -151
  19. package/src/filiale/linzhou/pc/ApplyChargeList.vue +486 -486
  20. package/src/filiale/linzhou/pc/ServiceControl.vue +1968 -1968
  21. package/src/filiale/linzhou/pc/devicesManagement.vue +494 -494
  22. package/src/filiale/linzhou/pc.js +10 -10
  23. package/src/filiale/qianneng/android/AppAddMaterialScience.vue +477 -477
  24. package/src/filiale/qianneng/android/AppExplorationUser.vue +447 -447
  25. package/src/filiale/qianneng/android/AppServiceControl.vue +1608 -1608
  26. package/src/filiale/qianneng/android/AppServiceView.vue +761 -761
  27. package/src/filiale/qianneng/android/AppSign.vue +152 -152
  28. package/src/filiale/qianneng/android/AppTakePic.vue +140 -140
  29. package/src/filiale/qianneng/android.js +12 -12
  30. package/src/filiale/qianneng/pc/ApplyUpload.vue +290 -290
  31. package/src/filiale/qianneng/pc/Applybatchdispatch.vue +685 -685
  32. package/src/filiale/qianneng/pc/ExplorationUser.vue +189 -189
  33. package/src/filiale/qianneng/pc/InstallationDetails.vue +561 -561
  34. package/src/filiale/qianneng/pc/ServiceView.vue +1118 -1121
  35. package/src/filiale/qianneng/pc/SupervisoryList.vue +344 -344
  36. package/src/filiale/qianneng/pc/SupervisoryhCart.vue +127 -127
  37. package/src/filiale/qianneng/pc/addMaterialScience.vue +464 -464
  38. package/src/filiale/qianneng/pc/addressAndUserinfoManagement.vue +389 -389
  39. package/src/filiale/qianneng/pc/devicesManagement.vue +484 -484
  40. package/src/filiale/qianneng/pc/printactivatecard.vue +295 -295
  41. package/src/filiale/qianneng/pc.js +26 -26
  42. package/src/filiale/yangchunboneng/pc/ApplyChargeList.vue +516 -0
  43. package/src/filiale/yangchunboneng/pc.js +13 -12
  44. package/src/main.js +23 -23
@@ -1,140 +1,140 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div :class="showData ? 'top' : 'auto'">
5
- <supervisory-list v-ref:query :show-data="showData"></supervisory-list>
6
- </div>
7
- <div v-if="showtotal" style="height: 89%">
8
- <div class="col-sm-2" style="margin-top: 20px">
9
- <supervisory-chart :selectdata="selectdata"></supervisory-chart>
10
- </div>
11
- <div class="col-sm-10" style="margin-top: 20px">
12
- <tabset v-ref:tabs :close="false">
13
- <tab :header='selectdata.defname'>
14
- <supervisory-service-control :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control>
15
- </tab>
16
- <tab header='附件'>
17
- <apply-upload :blodid="selectdata.f_process_id"
18
- :isupload = "false"
19
- :isdelete="false"
20
- :isusetype="true"
21
- :isremark = "true"
22
- :takeimg="false"
23
- :issearch="true"
24
- :defname="selectdata.defname">
25
- </apply-upload>
26
- </tab>
27
- </tabset>
28
- </div>
29
- <div style="height: 1%">
30
-
31
- </div>
32
- </div>
33
- </div>
34
- </div>
35
-
36
- </template>
37
- <script>
38
- import Vue from 'vue'
39
- import {HttpResetClass} from 'vue-client'
40
- export default {
41
- title: '流程监控',
42
- data () {
43
- return {
44
- showtotal: false, // 控制详细信息显示
45
- showData: true,
46
- selectdata: {},
47
- xmlname: '' // 配置文件名称
48
- }
49
- },
50
- created () {
51
- },
52
- methods: {
53
- // 获取页面配置json文件
54
- async loadName () {
55
- let data = {
56
- workname: this.selectdata.processname
57
- }
58
-
59
- let res = await this.$resetpost(
60
- 'rs/logic/ApplyGetConfigs',
61
- {data: data},
62
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
63
- )
64
-
65
- Vue.prototype.$workflow_vue = res.data
66
- }
67
- },
68
- events: {
69
- // 刷新控制层
70
- async 'breakControl' (servicedata) {
71
-
72
- if (servicedata.id) {
73
- let data = {
74
- condition: `u.id = ${servicedata.id}`,
75
- data: {
76
- orgid: this.$login.f.orgid
77
- }
78
- }
79
- let res = await this.$resetpost(
80
- 'rs/sql/supervisory',
81
- {data: data},
82
- {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
83
- )
84
- this.selectdata = Object.assign({}, this.selectdata, res.data[0])
85
- } else {
86
- this.selectdata = servicedata
87
- }
88
-
89
- this.showtotal = false
90
- this.$nextTick(() => {
91
- this.showtotal = true
92
- })
93
-
94
- },
95
- 'onMessage' (data) {
96
- console.log('接收消息')
97
- console.log(data)
98
- if (data.type === 'apply-task') {
99
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
100
- }
101
- },
102
- async 'apply' (val) {
103
- this.selectdata = null
104
- this.selectdata = val
105
- this.showtotal = false
106
-
107
- // 获取配置文件
108
- await this.loadName()
109
-
110
- this.$refs.query.$refs.cp.pager = false
111
- this.showData = false
112
-
113
- this.showtotal = true
114
- },
115
- 'search' () {
116
- // 关闭详细
117
- this.showtotal = false
118
- // 显示列表数据
119
- this.showData = true
120
- // 显示分页
121
- this.$refs.query.$refs.cp.pager = true
122
- // 调用查询
123
- this.$refs.query.$refs.cp.$refs.cri.search()
124
- },
125
- 'loadPage' () {
126
- // 关闭详细
127
- this.showtotal = false
128
- // 显示列表数据
129
- this.showData = true
130
- // 显示分页
131
- this.$refs.query.$refs.cp.pager = true
132
- // 调用查询
133
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
134
- }
135
- },
136
-
137
- watch: {
138
- }
139
- }
140
- </script>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div :class="showData ? 'top' : 'auto'">
5
+ <supervisory-list v-ref:query :show-data="showData"></supervisory-list>
6
+ </div>
7
+ <div v-if="showtotal" style="height: 89%">
8
+ <div class="col-sm-2" style="margin-top: 20px">
9
+ <supervisory-chart :selectdata="selectdata"></supervisory-chart>
10
+ </div>
11
+ <div class="col-sm-10" style="margin-top: 20px">
12
+ <tabset v-ref:tabs :close="false">
13
+ <tab :header='selectdata.defname'>
14
+ <supervisory-service-control :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control>
15
+ </tab>
16
+ <tab header='附件'>
17
+ <apply-upload :blodid="selectdata.f_process_id"
18
+ :isupload = "false"
19
+ :isdelete="false"
20
+ :isusetype="true"
21
+ :isremark = "true"
22
+ :takeimg="false"
23
+ :issearch="true"
24
+ :defname="selectdata.defname">
25
+ </apply-upload>
26
+ </tab>
27
+ </tabset>
28
+ </div>
29
+ <div style="height: 1%">
30
+
31
+ </div>
32
+ </div>
33
+ </div>
34
+ </div>
35
+
36
+ </template>
37
+ <script>
38
+ import Vue from 'vue'
39
+ import {HttpResetClass} from 'vue-client'
40
+ export default {
41
+ title: '流程监控',
42
+ data () {
43
+ return {
44
+ showtotal: false, // 控制详细信息显示
45
+ showData: true,
46
+ selectdata: {},
47
+ xmlname: '' // 配置文件名称
48
+ }
49
+ },
50
+ created () {
51
+ },
52
+ methods: {
53
+ // 获取页面配置json文件
54
+ async loadName () {
55
+ let data = {
56
+ workname: this.selectdata.processname
57
+ }
58
+
59
+ let res = await this.$resetpost(
60
+ 'rs/logic/ApplyGetConfigs',
61
+ {data: data},
62
+ {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
63
+ )
64
+
65
+ Vue.prototype.$workflow_vue = res.data
66
+ }
67
+ },
68
+ events: {
69
+ // 刷新控制层
70
+ async 'breakControl' (servicedata) {
71
+
72
+ if (servicedata.id) {
73
+ let data = {
74
+ condition: `u.id = ${servicedata.id}`,
75
+ data: {
76
+ orgid: this.$login.f.orgid
77
+ }
78
+ }
79
+ let res = await this.$resetpost(
80
+ 'rs/sql/supervisory',
81
+ {data: data},
82
+ {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
83
+ )
84
+ this.selectdata = Object.assign({}, this.selectdata, res.data[0])
85
+ } else {
86
+ this.selectdata = servicedata
87
+ }
88
+
89
+ this.showtotal = false
90
+ this.$nextTick(() => {
91
+ this.showtotal = true
92
+ })
93
+
94
+ },
95
+ 'onMessage' (data) {
96
+ console.log('接收消息')
97
+ console.log(data)
98
+ if (data.type === 'apply-task') {
99
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
100
+ }
101
+ },
102
+ async 'apply' (val) {
103
+ this.selectdata = null
104
+ this.selectdata = val
105
+ this.showtotal = false
106
+
107
+ // 获取配置文件
108
+ await this.loadName()
109
+
110
+ this.$refs.query.$refs.cp.pager = false
111
+ this.showData = false
112
+
113
+ this.showtotal = true
114
+ },
115
+ 'search' () {
116
+ // 关闭详细
117
+ this.showtotal = false
118
+ // 显示列表数据
119
+ this.showData = true
120
+ // 显示分页
121
+ this.$refs.query.$refs.cp.pager = true
122
+ // 调用查询
123
+ this.$refs.query.$refs.cp.$refs.cri.search()
124
+ },
125
+ 'loadPage' () {
126
+ // 关闭详细
127
+ this.showtotal = false
128
+ // 显示列表数据
129
+ this.showData = true
130
+ // 显示分页
131
+ this.$refs.query.$refs.cp.pager = true
132
+ // 调用查询
133
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
134
+ }
135
+ },
136
+
137
+ watch: {
138
+ }
139
+ }
140
+ </script>
@@ -1,114 +1,114 @@
1
- <template>
2
- <style id="printChargeStyle">
3
- td{
4
- height: 30px;
5
- width: 12.5%;
6
- }
7
- table{
8
- margin: auto;
9
- border-collapse:collapse;
10
- border: none;
11
- }
12
- h1,h2,h3,h4,h5,h6 {
13
- text-align: center;
14
- }
15
- </style>
16
- <div style="margin-bottom: 20px">
17
- <span style="font-size: 20px">{{ charge.f_payment_term }}预览</span>
18
- </div>
19
- <div id="printCharge">
20
- <table >
21
- <tr>
22
- <td v-for="index in 8"></td>
23
- </tr>
24
- <tr>
25
- <td v-for="index in 8"></td>
26
- </tr>
27
- <tr>
28
- <td></td>
29
- <td colspan="2">{{selectdata.f_userinfo_code}}</td>
30
- <td colspan="3">{{ getdate() }}</td>
31
- <td colspan="2"></td>
32
- </tr>
33
- <tr>
34
- <td></td>
35
- <td colspan="2">{{selectdata.f_user_name}}</td>
36
- <td colspan="2">协议单号</td>
37
- <td colspan="3">{{selectdata.f_apply_num}}</td>
38
- </tr>
39
- <tr>
40
- <td></td>
41
- <td colspan="7">{{selectdata.f_address}}</td>
42
- </tr>
43
- <tr>
44
- </tr>
45
- <tr>
46
- <td></td>
47
- <td colspan="2">收费明细</td>
48
- <td colspan="3">{{ charge.f_payment_term }}</td>
49
- <td colspan="2">{{ charge.f_charge_money }}</td>
50
- </tr>
51
- <tr>
52
- <td></td>
53
- <td>合计</td>
54
- <td colspan="2">{{ charge.f_charge_money }}</td>
55
- <td colspan="2">{{ charge.f_amount_words }}</td>
56
- <td rowspan="2" colspan="2"></td>
57
- </tr>
58
- <tr>
59
- <td></td>
60
- </tr>
61
- <tr>
62
- <td></td>
63
- <td colspan="5">湖南鸿达燃气有限公司</td>
64
- </tr>
65
- <tr>
66
- <td></td>
67
- </tr>
68
- <tr>
69
- <td v-for="index in 4"></td>
70
- <td colspan="2">{{ charge.f_charge_collectors }}</td>
71
- <td v-for="index in 2"></td>
72
- </tr>
73
- <tr>
74
- <td colspan="8"></td>
75
- </tr>
76
- </table>
77
- </div>
78
- <div style="margin-top: 20px">
79
- <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
80
- </div>
81
- <print-element v-show="false" type="PRINT" v-ref:print id='printCharge' styleid='printChargeStyle'
82
- top='20' left='30' width='100%' height='100%'>
83
- </print-element>
84
- </template>
85
-
86
- <script>
87
- import { toStandardTimeString } from '../../../components/Util'
88
- import {HttpResetClass} from 'vue-client'
89
- export default {
90
- title: '打印收费票据',
91
- props: ['selectdata', 'charge', 'billnum'],
92
- data () {
93
- return {
94
- }
95
- },
96
- ready () {
97
- },
98
- methods: {
99
- // 获取当前时间 格式 2023-07-09 23:59:59
100
- getdate () {
101
- return toStandardTimeString()
102
- }
103
- },
104
- computed: {
105
- orgs () {
106
- return this.$login.f.orgs
107
- }
108
- }
109
- }
110
- </script>
111
-
112
- <style scoped>
113
-
114
- </style>
1
+ <template>
2
+ <style id="printChargeStyle">
3
+ td{
4
+ height: 30px;
5
+ width: 12.5%;
6
+ }
7
+ table{
8
+ margin: auto;
9
+ border-collapse:collapse;
10
+ border: none;
11
+ }
12
+ h1,h2,h3,h4,h5,h6 {
13
+ text-align: center;
14
+ }
15
+ </style>
16
+ <div style="margin-bottom: 20px">
17
+ <span style="font-size: 20px">{{ charge.f_payment_term }}预览</span>
18
+ </div>
19
+ <div id="printCharge">
20
+ <table >
21
+ <tr>
22
+ <td v-for="index in 8"></td>
23
+ </tr>
24
+ <tr>
25
+ <td v-for="index in 8"></td>
26
+ </tr>
27
+ <tr>
28
+ <td></td>
29
+ <td colspan="2">{{selectdata.f_userinfo_code}}</td>
30
+ <td colspan="3">{{ getdate() }}</td>
31
+ <td colspan="2"></td>
32
+ </tr>
33
+ <tr>
34
+ <td></td>
35
+ <td colspan="2">{{selectdata.f_user_name}}</td>
36
+ <td colspan="2">协议单号</td>
37
+ <td colspan="3">{{selectdata.f_apply_num}}</td>
38
+ </tr>
39
+ <tr>
40
+ <td></td>
41
+ <td colspan="7">{{selectdata.f_address}}</td>
42
+ </tr>
43
+ <tr>
44
+ </tr>
45
+ <tr>
46
+ <td></td>
47
+ <td colspan="2">收费明细</td>
48
+ <td colspan="3">{{ charge.f_payment_term }}</td>
49
+ <td colspan="2">{{ charge.f_charge_money }}</td>
50
+ </tr>
51
+ <tr>
52
+ <td></td>
53
+ <td>合计</td>
54
+ <td colspan="2">{{ charge.f_charge_money }}</td>
55
+ <td colspan="2">{{ charge.f_amount_words }}</td>
56
+ <td rowspan="2" colspan="2"></td>
57
+ </tr>
58
+ <tr>
59
+ <td></td>
60
+ </tr>
61
+ <tr>
62
+ <td></td>
63
+ <td colspan="5">湖南鸿达燃气有限公司</td>
64
+ </tr>
65
+ <tr>
66
+ <td></td>
67
+ </tr>
68
+ <tr>
69
+ <td v-for="index in 4"></td>
70
+ <td colspan="2">{{ charge.f_charge_collectors }}</td>
71
+ <td v-for="index in 2"></td>
72
+ </tr>
73
+ <tr>
74
+ <td colspan="8"></td>
75
+ </tr>
76
+ </table>
77
+ </div>
78
+ <div style="margin-top: 20px">
79
+ <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
80
+ </div>
81
+ <print-element v-show="false" type="PRINT" v-ref:print id='printCharge' styleid='printChargeStyle'
82
+ top='20' left='30' width='100%' height='100%'>
83
+ </print-element>
84
+ </template>
85
+
86
+ <script>
87
+ import { toStandardTimeString } from '../../../components/Util'
88
+ import {HttpResetClass} from 'vue-client'
89
+ export default {
90
+ title: '打印收费票据',
91
+ props: ['selectdata', 'charge', 'billnum'],
92
+ data () {
93
+ return {
94
+ }
95
+ },
96
+ ready () {
97
+ },
98
+ methods: {
99
+ // 获取当前时间 格式 2023-07-09 23:59:59
100
+ getdate () {
101
+ return toStandardTimeString()
102
+ }
103
+ },
104
+ computed: {
105
+ orgs () {
106
+ return this.$login.f.orgs
107
+ }
108
+ }
109
+ }
110
+ </script>
111
+
112
+ <style scoped>
113
+
114
+ </style>