apply-clients 3.4.39 → 3.4.51

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 (58) hide show
  1. package/build/dev-server.js +2 -2
  2. package/package.json +1 -1
  3. package/src/android.js +21 -21
  4. package/src/apply.js +113 -113
  5. package/src/applyAndroid.js +53 -53
  6. package/src/components/android/AppServiceView.vue +745 -745
  7. package/src/components/android/AppSign.vue +154 -154
  8. package/src/components/android/Process/AppExplorationUser.vue +507 -507
  9. package/src/components/android/Process/AppServiceControl.vue +1708 -1708
  10. package/src/components/android/Process/Processes/AppAddMaterialScience.vue +477 -477
  11. package/src/components/android/Process/Processes/AppDevicesManagement.vue +519 -519
  12. package/src/components/android/Process/Processes/AppInstallationDetails.vue +482 -482
  13. package/src/components/android/Supervisory/AppSupervisoryCart.vue +156 -156
  14. package/src/components/product/Business/BusinessApply.vue +269 -269
  15. package/src/components/product/Business/CivilApply.vue +269 -269
  16. package/src/components/product/GroupByApply/ApplyGroupByList.vue +253 -253
  17. package/src/components/product/GroupByApply/ApplyGroupByMain.vue +53 -53
  18. package/src/components/product/GroupByApply/ApplyGroupByPaper.vue +376 -376
  19. package/src/components/product/Material/MaterialDetailed.vue +262 -262
  20. package/src/components/product/OldApply/Monitor/MonitorApply.vue +360 -360
  21. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +157 -157
  22. package/src/components/product/Print/IgnitionBill/IgnitionBill.vue +259 -259
  23. package/src/components/product/Print/IgnitionBill/printIgnitionBill.vue +168 -168
  24. package/src/components/product/Process/ExplorationSelect.vue +495 -495
  25. package/src/components/product/Process/ExplorationUser.vue +189 -189
  26. package/src/components/product/Process/Processes/InstallationDetails.vue +610 -610
  27. package/src/components/product/Process/Processes/Print/printCharge.vue +166 -166
  28. package/src/components/product/Process/Processes/addMaterialScience.vue +454 -454
  29. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -211
  30. package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
  31. package/src/components/product/Process/Processes/devicesManagement.vue +484 -484
  32. package/src/components/product/Process/Service/ServiceControl.vue +1918 -1920
  33. package/src/components/product/ServiceView.vue +981 -981
  34. package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
  35. package/src/components/product/Supervisory/SupervisoryList.vue +404 -404
  36. package/src/components/product/VueUtils/ApplyUpload.vue +275 -280
  37. package/src/filiale/gehua/pc/ExplorationSelect.vue +483 -483
  38. package/src/filiale/gehua/pc/ServiceControl.vue +1929 -1929
  39. package/src/filiale/gehua/pc/SupervisoryControl.vue +137 -137
  40. package/src/filiale/gehua/pc/SupervisoryServiceControl.vue +890 -890
  41. package/src/filiale/gehua/pc/buildOrderList.vue +339 -0
  42. package/src/filiale/gehua/pc/printBuildOrder.vue +243 -0
  43. package/src/filiale/gehua/pc.js +3 -2
  44. package/src/filiale/guangxi/android/Process/AppExplorationUser.vue +503 -503
  45. package/src/filiale/guangxi/android/Process/Processes/AppAddMaterialScience.vue +470 -470
  46. package/src/filiale/guangxi/android/Process/Processes/AppDevicesManagement.vue +519 -519
  47. package/src/filiale/guangxi/android/Process/Processes/AppInstallationDetails.vue +482 -482
  48. package/src/filiale/guangxi/android/Process/Processes/AppServiceControl.vue +1708 -1708
  49. package/src/filiale/guangxi/android/Process/Processes/AppServiceView.vue +766 -766
  50. package/src/filiale/guangxi/android.js +9 -9
  51. package/src/filiale/guangxi/pc/ApplyCharge/ApplyChargeList.vue +470 -470
  52. package/src/filiale/guangxi/pc/ApplyCharge/chargeManagement.vue +702 -702
  53. package/src/filiale/guangxi/pc/Process/ExplorationSelect.vue +538 -538
  54. package/src/filiale/guangxi/pc/Process/Service/ServiceControl.vue +1922 -1922
  55. package/src/filiale/guangxi/pc/Process/Service/SupervisoryServiceControl.vue +891 -891
  56. package/src/filiale/guangxi/pc/Process/Service/addMaterialScience.vue +482 -482
  57. package/src/filiale/guangxi/pc.js +15 -15
  58. package/src/main.js +1 -4
@@ -1,137 +1,137 @@
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>
30
- </div>
31
- </div>
32
-
33
- </template>
34
- <script>
35
- import Vue from 'vue'
36
- import {HttpResetClass} from 'vue-client'
37
- export default {
38
- title: '流程监控',
39
- data () {
40
- return {
41
- showtotal: false, // 控制详细信息显示
42
- showData: true,
43
- selectdata: {},
44
- xmlname: '' // 配置文件名称
45
- }
46
- },
47
- created () {
48
- },
49
- methods: {
50
- // 获取页面配置json文件
51
- async loadName () {
52
- let data = {
53
- workname: this.selectdata.processname
54
- }
55
-
56
- let res = await this.$resetpost(
57
- 'rs/logic/ApplyGetConfigs',
58
- {data: data},
59
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
60
- )
61
-
62
- Vue.prototype.$workflow_vue = res.data
63
- }
64
- },
65
- events: {
66
- // 刷新控制层
67
- async 'breakControl' (servicedata) {
68
-
69
- if (servicedata.id) {
70
- let data = {
71
- condition: `u.id = ${servicedata.id}`,
72
- data: {
73
- orgid: this.$login.f.orgid
74
- }
75
- }
76
- let res = await this.$resetpost(
77
- 'rs/sql/supervisory',
78
- {data: data},
79
- {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
80
- )
81
- this.selectdata = Object.assign({}, this.selectdata, res.data[0])
82
- } else {
83
- this.selectdata = servicedata
84
- }
85
-
86
- this.showtotal = false
87
- this.$nextTick(() => {
88
- this.showtotal = true
89
- })
90
-
91
- },
92
- 'onMessage' (data) {
93
- console.log('接收消息')
94
- console.log(data)
95
- if (data.type === 'apply-task') {
96
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
97
- }
98
- },
99
- async 'apply' (val) {
100
- this.selectdata = null
101
- this.selectdata = val
102
- this.showtotal = false
103
-
104
- // 获取配置文件
105
- await this.loadName()
106
-
107
- this.$refs.query.$refs.cp.pager = false
108
- this.showData = false
109
-
110
- this.showtotal = true
111
- },
112
- 'search' () {
113
- // 关闭详细
114
- this.showtotal = false
115
- // 显示列表数据
116
- this.showData = true
117
- // 显示分页
118
- this.$refs.query.$refs.cp.pager = true
119
- // 调用查询
120
- this.$refs.query.$refs.cp.$refs.cri.search()
121
- },
122
- 'loadPage' () {
123
- // 关闭详细
124
- this.showtotal = false
125
- // 显示列表数据
126
- this.showData = true
127
- // 显示分页
128
- this.$refs.query.$refs.cp.pager = true
129
- // 调用查询
130
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
131
- }
132
- },
133
-
134
- watch: {
135
- }
136
- }
137
- </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>
30
+ </div>
31
+ </div>
32
+
33
+ </template>
34
+ <script>
35
+ import Vue from 'vue'
36
+ import {HttpResetClass} from 'vue-client'
37
+ export default {
38
+ title: '流程监控',
39
+ data () {
40
+ return {
41
+ showtotal: false, // 控制详细信息显示
42
+ showData: true,
43
+ selectdata: {},
44
+ xmlname: '' // 配置文件名称
45
+ }
46
+ },
47
+ created () {
48
+ },
49
+ methods: {
50
+ // 获取页面配置json文件
51
+ async loadName () {
52
+ let data = {
53
+ workname: this.selectdata.processname
54
+ }
55
+
56
+ let res = await this.$resetpost(
57
+ 'rs/logic/ApplyGetConfigs',
58
+ {data: data},
59
+ {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
60
+ )
61
+
62
+ Vue.prototype.$workflow_vue = res.data
63
+ }
64
+ },
65
+ events: {
66
+ // 刷新控制层
67
+ async 'breakControl' (servicedata) {
68
+
69
+ if (servicedata.id) {
70
+ let data = {
71
+ condition: `u.id = ${servicedata.id}`,
72
+ data: {
73
+ orgid: this.$login.f.orgid
74
+ }
75
+ }
76
+ let res = await this.$resetpost(
77
+ 'rs/sql/supervisory',
78
+ {data: data},
79
+ {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
80
+ )
81
+ this.selectdata = Object.assign({}, this.selectdata, res.data[0])
82
+ } else {
83
+ this.selectdata = servicedata
84
+ }
85
+
86
+ this.showtotal = false
87
+ this.$nextTick(() => {
88
+ this.showtotal = true
89
+ })
90
+
91
+ },
92
+ 'onMessage' (data) {
93
+ console.log('接收消息')
94
+ console.log(data)
95
+ if (data.type === 'apply-task') {
96
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
97
+ }
98
+ },
99
+ async 'apply' (val) {
100
+ this.selectdata = null
101
+ this.selectdata = val
102
+ this.showtotal = false
103
+
104
+ // 获取配置文件
105
+ await this.loadName()
106
+
107
+ this.$refs.query.$refs.cp.pager = false
108
+ this.showData = false
109
+
110
+ this.showtotal = true
111
+ },
112
+ 'search' () {
113
+ // 关闭详细
114
+ this.showtotal = false
115
+ // 显示列表数据
116
+ this.showData = true
117
+ // 显示分页
118
+ this.$refs.query.$refs.cp.pager = true
119
+ // 调用查询
120
+ this.$refs.query.$refs.cp.$refs.cri.search()
121
+ },
122
+ 'loadPage' () {
123
+ // 关闭详细
124
+ this.showtotal = false
125
+ // 显示列表数据
126
+ this.showData = true
127
+ // 显示分页
128
+ this.$refs.query.$refs.cp.pager = true
129
+ // 调用查询
130
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
131
+ }
132
+ },
133
+
134
+ watch: {
135
+ }
136
+ }
137
+ </script>