apply-clients 3.5.4-73 → 3.5.4-75

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 (33) hide show
  1. package/build/dev-server.js +10 -7
  2. package/package.json +1 -1
  3. package/src/apply.js +137 -137
  4. package/src/components/android/AppCheckTakePic.vue +168 -168
  5. package/src/components/android/Process/AppServiceControl.vue +1755 -1755
  6. package/src/components/product/PcZhihuanManagement.vue +160 -160
  7. package/src/components/product/Supervisory/SupervisoryControl.vue +141 -141
  8. package/src/components/product/Supervisory/SupervisoryList.vue +452 -452
  9. package/src/filiale/fugou/android/AppAddMaterialScience.vue +448 -442
  10. package/src/filiale/fugou/android/AppServiceControl.vue +1843 -1827
  11. package/src/filiale/fugou/android/AppZhihuanManagement.vue +191 -191
  12. package/src/filiale/fugou/pc/InstallationDetails.vue +646 -647
  13. package/src/filiale/fugou/pc/ServiceControl.vue +1704 -1702
  14. package/src/filiale/fugou/pc/addMaterialScience.vue +481 -482
  15. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +216 -0
  16. package/src/filiale/fugou/pc.js +11 -10
  17. package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +518 -518
  18. package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1087 -1085
  19. package/src/filiale/yangchunboneng/android/AppSuperServiceControl.vue +1524 -1524
  20. package/src/filiale/yangchunboneng/android/AppUpload.vue +205 -205
  21. package/src/filiale/yangchunboneng/android/MaterIialOne.vue +156 -156
  22. package/src/filiale/yangchunboneng/android.js +20 -20
  23. package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
  24. package/src/filiale/yangchunboneng/pc/ExplorationUser.vue +191 -191
  25. package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +365 -365
  26. package/src/filiale/yangchunboneng/pc/SupervisoryControlNew.vue +142 -142
  27. package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +590 -590
  28. package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +628 -628
  29. package/src/filiale/yangchunboneng/pc/SupervisoryServiceControl.vue +902 -902
  30. package/src/filiale/yangchunboneng/pc/SupervisoryServiceControlNew.vue +901 -901
  31. package/src/filiale/yangchunboneng/pc/SupervisoryServiceView.vue +1117 -1117
  32. package/src/filiale/yangchunboneng/pc.js +24 -24
  33. package/src/main.js +1 -2
@@ -1,142 +1,142 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div :class="showData ? 'top' : 'auto'">
5
- <supervisory-list-new v-ref:query :show-data="showData"></supervisory-list-new>
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-new :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control-new>
15
- </tab>
16
- <tab header='附件'>
17
- <apply-upload
18
- :blodid="selectdata.f_process_id"
19
- :pblobid="selectdata.f_parent_process_id"
20
- :isupload = "false"
21
- :isdelete="false"
22
- :isusetype="true"
23
- :isremark = "true"
24
- :takeimg="false"
25
- :issearch="true"
26
- :defname="selectdata.defname">
27
- </apply-upload>
28
- </tab>
29
- </tabset>
30
- </div>
31
- <div style="height: 1%">
32
-
33
- </div>
34
- </div>
35
- </div>
36
- </div>
37
-
38
- </template>
39
- <script>
40
- import Vue from 'vue'
41
- import {HttpResetClass} from 'vue-client'
42
- export default {
43
- title: '流程监控',
44
- data () {
45
- return {
46
- showtotal: false, // 控制详细信息显示
47
- showData: true,
48
- selectdata: {},
49
- xmlname: '' // 配置文件名称
50
- }
51
- },
52
- created () {
53
- },
54
- methods: {
55
- // 获取页面配置json文件
56
- async loadName () {
57
- let data = {
58
- workname: this.selectdata.processname
59
- }
60
-
61
- let res = await this.$resetpost(
62
- 'rs/logic/ApplyGetConfigs',
63
- {data: data},
64
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
65
- )
66
-
67
- Vue.prototype.$workflow_vue = res.data
68
- }
69
- },
70
- events: {
71
- // 刷新控制层
72
- async 'breakControl' (servicedata) {
73
-
74
- if (servicedata.id) {
75
- let data = {
76
- condition: `u.id = ${servicedata.id}`,
77
- data: {
78
- orgid: this.$login.f.orgid
79
- }
80
- }
81
- let res = await this.$resetpost(
82
- 'rs/sql/supervisory',
83
- {data: data},
84
- {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
85
- )
86
- this.selectdata = Object.assign({}, this.selectdata, res.data[0])
87
- } else {
88
- this.selectdata = servicedata
89
- }
90
-
91
- this.showtotal = false
92
- this.$nextTick(() => {
93
- this.showtotal = true
94
- })
95
-
96
- },
97
- 'onMessage' (data) {
98
- console.log('接收消息')
99
- console.log(data)
100
- if (data.type === 'apply-task') {
101
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
102
- }
103
- },
104
- async 'apply' (val) {
105
- this.selectdata = null
106
- this.selectdata = val
107
- this.showtotal = false
108
-
109
- // 获取配置文件
110
- await this.loadName()
111
-
112
- this.$refs.query.$refs.cp.pager = false
113
- this.showData = false
114
-
115
- this.showtotal = true
116
- },
117
- 'search' () {
118
- // 关闭详细
119
- this.showtotal = false
120
- // 显示列表数据
121
- this.showData = true
122
- // 显示分页
123
- this.$refs.query.$refs.cp.pager = true
124
- // 调用查询
125
- this.$refs.query.$refs.cp.$refs.cri.search()
126
- },
127
- 'loadPage' () {
128
- // 关闭详细
129
- this.showtotal = false
130
- // 显示列表数据
131
- this.showData = true
132
- // 显示分页
133
- this.$refs.query.$refs.cp.pager = true
134
- // 调用查询
135
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
136
- }
137
- },
138
-
139
- watch: {
140
- }
141
- }
142
- </script>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div :class="showData ? 'top' : 'auto'">
5
+ <supervisory-list-new v-ref:query :show-data="showData"></supervisory-list-new>
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-new :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control-new>
15
+ </tab>
16
+ <tab header='附件'>
17
+ <apply-upload
18
+ :blodid="selectdata.f_process_id"
19
+ :pblobid="selectdata.f_parent_process_id"
20
+ :isupload = "false"
21
+ :isdelete="false"
22
+ :isusetype="true"
23
+ :isremark = "true"
24
+ :takeimg="false"
25
+ :issearch="true"
26
+ :defname="selectdata.defname">
27
+ </apply-upload>
28
+ </tab>
29
+ </tabset>
30
+ </div>
31
+ <div style="height: 1%">
32
+
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </div>
37
+
38
+ </template>
39
+ <script>
40
+ import Vue from 'vue'
41
+ import {HttpResetClass} from 'vue-client'
42
+ export default {
43
+ title: '流程监控',
44
+ data () {
45
+ return {
46
+ showtotal: false, // 控制详细信息显示
47
+ showData: true,
48
+ selectdata: {},
49
+ xmlname: '' // 配置文件名称
50
+ }
51
+ },
52
+ created () {
53
+ },
54
+ methods: {
55
+ // 获取页面配置json文件
56
+ async loadName () {
57
+ let data = {
58
+ workname: this.selectdata.processname
59
+ }
60
+
61
+ let res = await this.$resetpost(
62
+ 'rs/logic/ApplyGetConfigs',
63
+ {data: data},
64
+ {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
65
+ )
66
+
67
+ Vue.prototype.$workflow_vue = res.data
68
+ }
69
+ },
70
+ events: {
71
+ // 刷新控制层
72
+ async 'breakControl' (servicedata) {
73
+
74
+ if (servicedata.id) {
75
+ let data = {
76
+ condition: `u.id = ${servicedata.id}`,
77
+ data: {
78
+ orgid: this.$login.f.orgid
79
+ }
80
+ }
81
+ let res = await this.$resetpost(
82
+ 'rs/sql/supervisory',
83
+ {data: data},
84
+ {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
85
+ )
86
+ this.selectdata = Object.assign({}, this.selectdata, res.data[0])
87
+ } else {
88
+ this.selectdata = servicedata
89
+ }
90
+
91
+ this.showtotal = false
92
+ this.$nextTick(() => {
93
+ this.showtotal = true
94
+ })
95
+
96
+ },
97
+ 'onMessage' (data) {
98
+ console.log('接收消息')
99
+ console.log(data)
100
+ if (data.type === 'apply-task') {
101
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
102
+ }
103
+ },
104
+ async 'apply' (val) {
105
+ this.selectdata = null
106
+ this.selectdata = val
107
+ this.showtotal = false
108
+
109
+ // 获取配置文件
110
+ await this.loadName()
111
+
112
+ this.$refs.query.$refs.cp.pager = false
113
+ this.showData = false
114
+
115
+ this.showtotal = true
116
+ },
117
+ 'search' () {
118
+ // 关闭详细
119
+ this.showtotal = false
120
+ // 显示列表数据
121
+ this.showData = true
122
+ // 显示分页
123
+ this.$refs.query.$refs.cp.pager = true
124
+ // 调用查询
125
+ this.$refs.query.$refs.cp.$refs.cri.search()
126
+ },
127
+ 'loadPage' () {
128
+ // 关闭详细
129
+ this.showtotal = false
130
+ // 显示列表数据
131
+ this.showData = true
132
+ // 显示分页
133
+ this.$refs.query.$refs.cp.pager = true
134
+ // 调用查询
135
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
136
+ }
137
+ },
138
+
139
+ watch: {
140
+ }
141
+ }
142
+ </script>