apply-clients 3.3.47 → 3.3.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 (38) hide show
  1. package/build/dev-server.js +3 -2
  2. package/package.json +1 -1
  3. package/src/AndroidApp.vue +35 -35
  4. package/src/apply.js +93 -93
  5. package/src/applyAndroid.js +31 -31
  6. package/src/components/android/AppOnetomany.vue +301 -301
  7. package/src/components/android/AppServiceView.vue +566 -566
  8. package/src/components/android/AppSign.vue +142 -142
  9. package/src/components/android/Function/AppInstallFunction.vue +366 -366
  10. package/src/components/android/Process/AppExplorationUser.vue +340 -340
  11. package/src/components/android/Process/AppServiceControl.vue +4 -0
  12. package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
  13. package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
  14. package/src/components/android/Supervisory/AppSupervisoryCart.vue +4 -0
  15. package/src/components/product/ApplyCharge/ApplyChargeList.vue +382 -367
  16. package/src/components/product/Function/InstallFunction.vue +132 -132
  17. package/src/components/product/Function/InstallInfoSelect.vue +320 -310
  18. package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
  19. package/src/components/product/Material/MaterialDetailed.vue +235 -235
  20. package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
  21. package/src/components/product/OldApply/OldApply.vue +150 -150
  22. package/src/components/product/Onetomany.vue +377 -377
  23. package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
  24. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
  25. package/src/components/product/Process/ExplorationSelect.vue +457 -457
  26. package/src/components/product/Process/ExplorationUser.vue +147 -147
  27. package/src/components/product/Process/Processes/InstallationDetails.vue +592 -592
  28. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
  29. package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
  30. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -207
  31. package/src/components/product/Process/Processes/chargeManagement.vue +17 -0
  32. package/src/components/product/Process/Service/ServiceControl.vue +1265 -1254
  33. package/src/components/product/ServiceView.vue +631 -631
  34. package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
  35. package/src/components/product/Supervisory/SupervisoryList.vue +296 -296
  36. package/src/components/product/Supervisory/SupervisoryhCart.vue +130 -130
  37. package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
  38. package/src/components/product/VueUtils/HighMeter.vue +208 -208
@@ -1,147 +1,147 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div :class="showData ? 'top' : 'auto'" v-show="showQuery">
5
- <exploration-select v-ref:query :show-data="showData"></exploration-select>
6
- </div>
7
- <div v-if="showtotal" style="height: 89%">
8
- <tabset v-ref:tabs :close="false">
9
- <tab :header='selectdata.defname'>
10
- <service-control v-ref:service :selectdata="selectdata"></service-control>
11
- </tab>
12
- <tab header='附件'>
13
- <apply-upload :blodid="selectdata.f_process_id"
14
- :isupload = "true"
15
- :isdelete="true"
16
- :isusetype="true"
17
- :isremark = "true"
18
- :takeimg="true"
19
- :issearch="true"
20
- :defname="selectdata.defname">
21
- </apply-upload>
22
- </tab>
23
- </tabset>
24
- </div>
25
- </div>
26
- </div>
27
- </template>
28
- <script>
29
- import Vue from 'vue'
30
- import {HttpResetClass} from 'vue-client'
31
- export default {
32
- title: '报建流程',
33
- data () {
34
- return {
35
- showQuery: true, // 控制查询页
36
- showData: true, // 控制列表数据
37
- showtotal: false, // 详情显示
38
- selectdata: {},
39
- xmlname: '' // 配置文件名
40
- }
41
- },
42
- ready () {
43
- },
44
- methods: {
45
- // 获取页面配置json文件
46
- async loadName () {
47
-
48
- let data = {
49
- workname: this.selectdata.processname
50
- }
51
- let http = new HttpResetClass()
52
- let res = await http.load(
53
- 'POST',
54
- 'rs/logic/ApplyGetConfigs',
55
- {data: data},
56
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
57
- )
58
-
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.query.$refs.cp.$refs.cri.search()
68
- }
69
- },
70
- // 刷新控制层
71
- async 'breakControl' (servicedata) {
72
-
73
- if (servicedata.id) {
74
- let data = {
75
- condition: `u.id = ${servicedata.id}`,
76
- data: {
77
- id: this.$login.f.id,
78
- orgid: this.$login.f.orgid
79
- }
80
- }
81
- let res = await this.$resetpost(
82
- 'rs/sql/checkuser',
83
- {data: data},
84
- {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
85
- )
86
-
87
- this.selectdata = res.data[0]
88
- } else {
89
- this.selectdata = servicedata
90
- }
91
-
92
- this.showtotal = false
93
- this.$nextTick(() => {
94
- this.showtotal = true
95
- })
96
-
97
- },
98
- async 'later' (row) {
99
- row.f_is_later = '是'
100
- let res = await this.$resetpost(
101
- 'rs/entity/t_apply',
102
- row
103
- )
104
-
105
- this.$refs.query.loadPage()
106
- },
107
- // 初始化
108
- async 'apply' (val) {
109
- this.showtotal = false
110
- this.selectdata = val
111
-
112
- // 次方法必须同步执行,否则后续会出问题
113
- // 获取页面json配置文件
114
- await this.loadName()
115
-
116
- // 显示详细
117
- this.showtotal = true
118
- // 关闭列表数据
119
- this.showData = false
120
- // 关闭分页
121
- this.$refs.query.$refs.cp.pager = false
122
- },
123
- 'search' () {
124
- // 关闭详细
125
- this.showtotal = false
126
- // 显示列表数据
127
- this.showData = true
128
- // 显示分页
129
- this.$refs.query.$refs.cp.pager = true
130
- // 调用查询
131
- this.$refs.query.$refs.cp.$refs.cri.search()
132
- },
133
- 'loadPage' () {
134
- // 关闭详细
135
- this.showtotal = false
136
- // 显示列表数据
137
- this.showData = true
138
- // 显示分页
139
- this.$refs.query.$refs.cp.pager = true
140
- // 调用查询
141
- this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
142
- }
143
- },
144
- watch: {
145
- }
146
- }
147
- </script>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div :class="showData ? 'top' : 'auto'" v-show="showQuery">
5
+ <exploration-select v-ref:query :show-data="showData"></exploration-select>
6
+ </div>
7
+ <div v-if="showtotal" style="height: 89%">
8
+ <tabset v-ref:tabs :close="false">
9
+ <tab :header='selectdata.defname'>
10
+ <service-control v-ref:service :selectdata="selectdata"></service-control>
11
+ </tab>
12
+ <tab header='附件'>
13
+ <apply-upload :blodid="selectdata.f_process_id"
14
+ :isupload = "true"
15
+ :isdelete="true"
16
+ :isusetype="true"
17
+ :isremark = "true"
18
+ :takeimg="true"
19
+ :issearch="true"
20
+ :defname="selectdata.defname">
21
+ </apply-upload>
22
+ </tab>
23
+ </tabset>
24
+ </div>
25
+ </div>
26
+ </div>
27
+ </template>
28
+ <script>
29
+ import Vue from 'vue'
30
+ import {HttpResetClass} from 'vue-client'
31
+ export default {
32
+ title: '报建流程',
33
+ data () {
34
+ return {
35
+ showQuery: true, // 控制查询页
36
+ showData: true, // 控制列表数据
37
+ showtotal: false, // 详情显示
38
+ selectdata: {},
39
+ xmlname: '' // 配置文件名
40
+ }
41
+ },
42
+ ready () {
43
+ },
44
+ methods: {
45
+ // 获取页面配置json文件
46
+ async loadName () {
47
+
48
+ let data = {
49
+ workname: this.selectdata.processname
50
+ }
51
+ let http = new HttpResetClass()
52
+ let res = await http.load(
53
+ 'POST',
54
+ 'rs/logic/ApplyGetConfigs',
55
+ {data: data},
56
+ {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
57
+ )
58
+
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.query.$refs.cp.$refs.cri.search()
68
+ }
69
+ },
70
+ // 刷新控制层
71
+ async 'breakControl' (servicedata) {
72
+
73
+ if (servicedata.id) {
74
+ let data = {
75
+ condition: `u.id = ${servicedata.id}`,
76
+ data: {
77
+ id: this.$login.f.id,
78
+ orgid: this.$login.f.orgid
79
+ }
80
+ }
81
+ let res = await this.$resetpost(
82
+ 'rs/sql/checkuser',
83
+ {data: data},
84
+ {resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
85
+ )
86
+
87
+ this.selectdata = res.data[0]
88
+ } else {
89
+ this.selectdata = servicedata
90
+ }
91
+
92
+ this.showtotal = false
93
+ this.$nextTick(() => {
94
+ this.showtotal = true
95
+ })
96
+
97
+ },
98
+ async 'later' (row) {
99
+ row.f_is_later = '是'
100
+ let res = await this.$resetpost(
101
+ 'rs/entity/t_apply',
102
+ row
103
+ )
104
+
105
+ this.$refs.query.loadPage()
106
+ },
107
+ // 初始化
108
+ async 'apply' (val) {
109
+ this.showtotal = false
110
+ this.selectdata = val
111
+
112
+ // 次方法必须同步执行,否则后续会出问题
113
+ // 获取页面json配置文件
114
+ await this.loadName()
115
+
116
+ // 显示详细
117
+ this.showtotal = true
118
+ // 关闭列表数据
119
+ this.showData = false
120
+ // 关闭分页
121
+ this.$refs.query.$refs.cp.pager = false
122
+ },
123
+ 'search' () {
124
+ // 关闭详细
125
+ this.showtotal = false
126
+ // 显示列表数据
127
+ this.showData = true
128
+ // 显示分页
129
+ this.$refs.query.$refs.cp.pager = true
130
+ // 调用查询
131
+ this.$refs.query.$refs.cp.$refs.cri.search()
132
+ },
133
+ 'loadPage' () {
134
+ // 关闭详细
135
+ this.showtotal = false
136
+ // 显示列表数据
137
+ this.showData = true
138
+ // 显示分页
139
+ this.$refs.query.$refs.cp.pager = true
140
+ // 调用查询
141
+ this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
142
+ }
143
+ },
144
+ watch: {
145
+ }
146
+ }
147
+ </script>