apply-clients 7.1.36-yuchuan-36 → 7.1.36-yuchuan-38

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 (23) hide show
  1. package/package.json +1 -1
  2. package/src/components/android/Process/AppServiceControl.vue +6 -9
  3. package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +5 -4
  4. package/src/components/product/ApplyGuanXian/GuanXianExplorationUser.vue +4 -6
  5. package/src/components/product/Function/InstallFunction.vue +3 -4
  6. package/src/components/product/Function/InstallInfoSelect.vue +24 -21
  7. package/src/components/product/Ignition/IgnitionDispatch.vue +90 -92
  8. package/src/components/product/Ignition/IgnitionListManage.vue +21 -19
  9. package/src/components/product/List/ShowAllActivity.vue +5 -4
  10. package/src/components/product/Print/BuildOrder/buildOrderList.vue +446 -446
  11. package/src/components/product/Process/ExplorationUser.vue +5 -8
  12. package/src/components/product/Process/New1ExplorationUser.vue +6 -8
  13. package/src/components/product/Process/NewExplorationSelect.vue +5 -4
  14. package/src/components/product/Process/NewExplorationUser.vue +6 -9
  15. package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
  16. package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
  17. package/src/components/product/Process/Processes/selectApply.vue +250 -250
  18. package/src/components/product/Process/Service/ServiceControl.vue +63 -53
  19. package/src/components/product/Stop/StopApplyList.vue +224 -224
  20. package/src/components/product/Supervisory/SupervisoryControl.vue +114 -116
  21. package/src/components/product/Supervisory/SupervisoryhCart.vue +1 -0
  22. package/src/components/product/Supervisory/YiBanSupervisoryControl.vue +111 -114
  23. package/src/components/product/Supervisory/YiBanSupervisoryList.vue +9 -9
@@ -1,116 +1,114 @@
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
- <new-supervisory-chart :selectdata="selectdata"></new-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
- :source="source"
19
- :isupload = "projectStart"
20
- :isdelete="false"
21
- :isusetype="true"
22
- :isremark = "true"
23
- :takeimg="false"
24
- :issearch="true"
25
- :defname="selectdata.defname">
26
- </apply-upload>
27
- </tab>
28
- </tabset>
29
- </div>
30
- </div>
31
- </div>
32
- </div>
33
-
34
- </template>
35
- <script>
36
- import Vue from 'vue'
37
- import {HttpResetClass} from 'vue-client'
38
- export default {
39
- title: '流程监控',
40
- data () {
41
- return {
42
- showtotal: false, // 控制详细信息显示
43
- showData: true,
44
- selectdata: {},
45
- source: '流程查看',
46
- xmlname: '' // 配置文件名称
47
- }
48
- },
49
- created () {
50
- },
51
- methods: {
52
- // 获取页面配置json文件
53
- async loadName () {
54
- let data = {
55
- workname: this.selectdata.processname
56
- }
57
-
58
- let res = await this.$resetpost(
59
- 'rs/logic/ApplyGetConfigs',
60
- {data: data},
61
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
62
- )
63
-
64
- Vue.prototype.$workflow_vue = res.data
65
- }
66
- },
67
- events: {
68
- 'onMessage' (data) {
69
- console.log('接收消息')
70
- console.log(data)
71
- if (data.type === 'apply-task') {
72
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
73
- }
74
- },
75
- async 'apply' (val) {
76
- this.selectdata = val
77
- this.showtotal = false
78
-
79
- // 获取配置文件
80
- await this.loadName()
81
-
82
- this.$refs.query.$refs.cp.pager = false
83
- this.showData = false
84
-
85
- this.showtotal = true
86
- },
87
- 'search' () {
88
- // 关闭详细
89
- this.showtotal = false
90
- // 显示列表数据
91
- this.showData = true
92
- // 显示分页
93
- this.$refs.query.$refs.cp.pager = true
94
- // 调用查询
95
- this.$refs.query.$refs.cp.$refs.cri.search()
96
- },
97
- 'loadPage' () {
98
- // 关闭详细
99
- this.showtotal = false
100
- // 显示列表数据
101
- this.showData = true
102
- // 显示分页
103
- this.$refs.query.$refs.cp.pager = true
104
- // 调用查询
105
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
106
- }
107
- },
108
- computed: {
109
- projectStart () {
110
- return this.$login.r.includes('报装文件上传')
111
- }
112
- },
113
- watch: {
114
- }
115
- }
116
- </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
+ <new-supervisory-chart :selectdata="selectdata"></new-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
+ :source="source"
19
+ :isupload = "projectStart"
20
+ :isdelete="false"
21
+ :isusetype="true"
22
+ :isremark = "true"
23
+ :takeimg="false"
24
+ :issearch="true"
25
+ :defname="selectdata.defname">
26
+ </apply-upload>
27
+ </tab>
28
+ </tabset>
29
+ </div>
30
+ </div>
31
+ </div>
32
+ </div>
33
+
34
+ </template>
35
+ <script>
36
+ import Vue from 'vue'
37
+ import {HttpResetClass} from 'vue-client'
38
+ export default {
39
+ title: '流程监控',
40
+ data () {
41
+ return {
42
+ showtotal: false, // 控制详细信息显示
43
+ showData: true,
44
+ selectdata: {},
45
+ source: '流程查看',
46
+ xmlname: '' // 配置文件名称
47
+ }
48
+ },
49
+ created () {
50
+ },
51
+ methods: {
52
+ // 获取页面配置json文件
53
+ async loadName () {
54
+ let http = new HttpResetClass()
55
+ let data = {
56
+ workname: this.selectdata.processname
57
+ }
58
+ let res= await http.load('POST', 'rs/logic/ApplyGetConfigs', {
59
+ data
60
+ }, {resolveMsg: null, rejectMsg: null})
61
+ Vue.prototype.$workflow_vue = res.data
62
+
63
+ }
64
+ },
65
+ events: {
66
+ 'onMessage' (data) {
67
+ console.log('接收消息')
68
+ console.log(data)
69
+ if (data.type === 'apply-task') {
70
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
71
+ }
72
+ },
73
+ async 'apply' (val) {
74
+ this.selectdata = val
75
+ this.showtotal = false
76
+
77
+ // 获取配置文件
78
+ await this.loadName()
79
+
80
+ this.$refs.query.$refs.cp.pager = false
81
+ this.showData = false
82
+
83
+ this.showtotal = true
84
+ },
85
+ 'search' () {
86
+ // 关闭详细
87
+ this.showtotal = false
88
+ // 显示列表数据
89
+ this.showData = true
90
+ // 显示分页
91
+ this.$refs.query.$refs.cp.pager = true
92
+ // 调用查询
93
+ this.$refs.query.$refs.cp.$refs.cri.search()
94
+ },
95
+ 'loadPage' () {
96
+ // 关闭详细
97
+ this.showtotal = false
98
+ // 显示列表数据
99
+ this.showData = true
100
+ // 显示分页
101
+ this.$refs.query.$refs.cp.pager = true
102
+ // 调用查询
103
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
104
+ }
105
+ },
106
+ computed: {
107
+ projectStart () {
108
+ return this.$login.r.includes('报装文件上传')
109
+ }
110
+ },
111
+ watch: {
112
+ }
113
+ }
114
+ </script>
@@ -33,6 +33,7 @@
33
33
  processid: this.selectdata.f_process_id
34
34
  }
35
35
 
36
+
36
37
  let res = await this.$resetpost(
37
38
  'rs/sql/getAllNode',
38
39
  {data: data},
@@ -1,114 +1,111 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div :class="showData ? 'top' : 'auto'">
5
- <yiban-supervisory-list v-ref:query :show-data="showData"></yiban-supervisory-list>
6
- </div>
7
- <div v-if="showtotal" style="height: 89%">
8
- <div class="col-sm-2" style="margin-top: 20px">
9
- <new-supervisory-chart :selectdata="selectdata"></new-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 = "projectStart"
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
- 'onMessage' (data) {
67
- console.log('接收消息')
68
- console.log(data)
69
- if (data.type === 'apply-task') {
70
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
71
- }
72
- },
73
- async 'apply' (val) {
74
- this.selectdata = val
75
- this.showtotal = false
76
-
77
- // 获取配置文件
78
- await this.loadName()
79
-
80
- this.$refs.query.$refs.cp.pager = false
81
- this.showData = false
82
-
83
- this.showtotal = true
84
- },
85
- 'search' () {
86
- // 关闭详细
87
- this.showtotal = false
88
- // 显示列表数据
89
- this.showData = true
90
- // 显示分页
91
- this.$refs.query.$refs.cp.pager = true
92
- // 调用查询
93
- this.$refs.query.$refs.cp.$refs.cri.search()
94
- },
95
- 'loadPage' () {
96
- // 关闭详细
97
- this.showtotal = false
98
- // 显示列表数据
99
- this.showData = true
100
- // 显示分页
101
- this.$refs.query.$refs.cp.pager = true
102
- // 调用查询
103
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
104
- }
105
- },
106
- computed: {
107
- projectStart () {
108
- return this.$login.r.includes('报装文件上传')
109
- }
110
- },
111
- watch: {
112
- }
113
- }
114
- </script>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div :class="showData ? 'top' : 'auto'">
5
+ <yiban-supervisory-list v-ref:query :show-data="showData"></yiban-supervisory-list>
6
+ </div>
7
+ <div v-if="showtotal" style="height: 89%">
8
+ <div class="col-sm-2" style="margin-top: 20px">
9
+ <new-supervisory-chart :selectdata="selectdata"></new-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 = "projectStart"
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 http = new HttpResetClass()
53
+ let data = {
54
+ workname: this.selectdata.processname
55
+ }
56
+ let res= await http.load('POST', 'rs/logic/ApplyGetConfigs', {
57
+ data
58
+ }, {resolveMsg: null, rejectMsg: null})
59
+ Vue.prototype.$workflow_vue = res.data
60
+ }
61
+ },
62
+ events: {
63
+ 'onMessage' (data) {
64
+ console.log('接收消息')
65
+ console.log(data)
66
+ if (data.type === 'apply-task') {
67
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
68
+ }
69
+ },
70
+ async 'apply' (val) {
71
+ this.selectdata = val
72
+ this.showtotal = false
73
+
74
+ // 获取配置文件
75
+ await this.loadName()
76
+
77
+ this.$refs.query.$refs.cp.pager = false
78
+ this.showData = false
79
+
80
+ this.showtotal = true
81
+ },
82
+ 'search' () {
83
+ // 关闭详细
84
+ this.showtotal = false
85
+ // 显示列表数据
86
+ this.showData = true
87
+ // 显示分页
88
+ this.$refs.query.$refs.cp.pager = true
89
+ // 调用查询
90
+ this.$refs.query.$refs.cp.$refs.cri.search()
91
+ },
92
+ 'loadPage' () {
93
+ // 关闭详细
94
+ this.showtotal = false
95
+ // 显示列表数据
96
+ this.showData = true
97
+ // 显示分页
98
+ this.$refs.query.$refs.cp.pager = true
99
+ // 调用查询
100
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
101
+ }
102
+ },
103
+ computed: {
104
+ projectStart () {
105
+ return this.$login.r.includes('报装文件上传')
106
+ }
107
+ },
108
+ watch: {
109
+ }
110
+ }
111
+ </script>
@@ -329,7 +329,7 @@
329
329
  </div>
330
330
  </template>
331
331
  <script>
332
- import {PagedList} from 'vue-client'
332
+ import {HttpResetClass, PagedList} from 'vue-client'
333
333
  import {isEmpty} from '../../Util'
334
334
  export default {
335
335
  title: '勘探详情',
@@ -474,14 +474,13 @@
474
474
  this.$dispatch('apply', val)
475
475
  },
476
476
  async applyTypeChange () {
477
+ let http = new HttpResetClass()
477
478
  if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
478
- let res = await this.$resetpost('rs/logic/getDefnameByType',
479
- { f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
480
- {resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
479
+ let res = await http.load('POST', 'rs/logic/getDefnameByType', {
480
+ f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type},
481
+ {resolveMsg: null, rejectMsg: '流程标识获取失败!!!'}
481
482
  )
482
-
483
483
  this.defnames = [{label: '全部', value: ''}, ...res.data]
484
-
485
484
  // this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
486
485
  } else {
487
486
  this.defnames = isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
@@ -493,9 +492,10 @@
493
492
  source: 'this.getParentByType($organization$).getChildByName($设计人员$).getChildren()',
494
493
  userid: this.$login.f.id
495
494
  }
496
-
497
- let res = await this.$resetpost(
498
- 'rs/search',
495
+ let http = new HttpResetClass()
496
+ let res = await http.load(
497
+ 'POST',
498
+ `rs/search`,
499
499
  {data: data},
500
500
  {resolveMsg: null, rejectMsg: '设计人员人员查询失败!!!'}
501
501
  )