apply-clients 6.0.1 → 6.0.4

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 (43) hide show
  1. package/build/dev-server.js +72 -72
  2. package/package.json +1 -1
  3. package/src/apply.js +219 -219
  4. package/src/components/apply/base/rightview/InstallCardList2.vue +267 -268
  5. package/src/components/apply/base/rightview/carddetail/BuildFeeDetail2.vue +77 -77
  6. package/src/components/apply/base/rightview/carddetail/ChangeFeeDetail2.vue +116 -116
  7. package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
  8. package/src/components/build/Install/ExplorationSelect.vue +308 -308
  9. package/src/components/build/Install/ExplorationUser.vue +315 -315
  10. package/src/components/build/Install/InstallFee/AddContract.vue +257 -257
  11. package/src/components/build/Install/InstallFee/InstallFee.vue +929 -929
  12. package/src/components/build/Install/InstallFee/InstallInfoSelect.vue +232 -232
  13. package/src/components/build/Install/InstallFee/PreparationFee.vue +223 -223
  14. package/src/components/build/Install/InstallFee/PrestoreFee.vue +630 -630
  15. package/src/components/build/Install/Process/CustomerBuildingMessage.vue +251 -251
  16. package/src/components/build/Install/Process/CustomerEquipmentMessage.vue +172 -172
  17. package/src/components/build/Install/Process/CustomerEssentialInfo.vue +1 -1
  18. package/src/components/build/Install/Process/CustomerFile.vue +423 -423
  19. package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -414
  20. package/src/components/build/Install/Process/CustomerRecordMessage.vue +10 -10
  21. package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -376
  22. package/src/components/build/Install/Process/MeterType.vue +379 -379
  23. package/src/components/build/Install/Process/PlaceControler.vue +304 -304
  24. package/src/components/build/Install/Process/boneng/qbj_placecontroler.vue +1 -1
  25. package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -388
  26. package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +1 -1
  27. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -259
  28. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -243
  29. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -426
  30. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler_print.vue +187 -187
  31. package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -441
  32. package/src/components/build/Install/ProcessInfo/ApplyRecordCancel.vue +135 -135
  33. package/src/components/build/Install/bill/BillGZKMakeInfo.vue +58 -58
  34. package/src/components/build/Install/bill/BillQRKMakeInfo.vue +79 -79
  35. package/src/components/build/Install/bill/BillXSDMakeInfo.vue +206 -206
  36. package/src/components/build/Install/monitor/SupervisoryControl.vue +178 -178
  37. package/src/main.js +25 -25
  38. package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
  39. package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
  40. package/.gradle/buildOutputCleanup/built.bin +0 -0
  41. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  42. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
  43. package/yarn.lock +0 -8074
@@ -1,178 +1,178 @@
1
- <template>
2
- <div class="col-sm-12" style="overflow:auto;">
3
- <div class="tops" v-bind:style="{ height: topheight }">
4
- <supervisory-list v-ref:queryuser></supervisory-list>
5
- </div>
6
- <div v-show="showtotal" v-bind:style="{ height: botheight }">
7
- <div class="col-sm-2" v-show="showbasic">
8
- <supervisory-chart :selectdata="selectdata"></supervisory-chart>
9
- </div>
10
- <div class="col-sm-9">
11
- <tabset v-ref:tabs :close="false">
12
- <tab :header='header'>
13
- <route v-ref:route></route>
14
- <route :comp="{name: 'customer-essential-info'}" v-if = "r1" ></route>
15
- </tab>
16
- <tab header='户档案信息'>
17
- <customer-record-message v-ref:record :selectdata="selectdata" :key="tittle1" :edit = "false"></customer-record-message>
18
- </tab>
19
- <tab header='表档案信息'>
20
- <customer-record-message v-ref:record :selectdata="selectdata" :key="tittle2" :edit = "false"></customer-record-message>
21
- </tab>
22
- <tab header='设备信息' v-if="selectdata.f_user_type =='非民用'">
23
- <customer-equipment-message v-ref:equipment :selectdata="selectdata" :key="tittle3" :edit = "false"></customer-equipment-message>
24
- </tab>
25
- <tab header='材料信息'>
26
- <customer-material-message v-ref:material :selectdata="selectdata" :edit = "false"></customer-material-message>
27
- </tab>
28
- <tab header='附件'>
29
- <upload v-ref:file :blodid = "selectdata.f_process_id" :isusetype = "false" :isremark ="false"
30
- :isupload = "true"
31
- :takeimg = "true"
32
- :edit = "false">
33
- </upload>
34
- </tab>
35
- </tabset>
36
- </div>
37
- </div>
38
- </div>
39
- </template>
40
- <script>
41
- export default {
42
- title: '流程监控',
43
- props: [ 'defname'],
44
- data() {
45
- return {
46
- flagl:false,
47
- flagg: false,
48
- showbasic: false,
49
- showtotal: false,
50
- header: null,
51
- selectdata: {},
52
- botheight: '0%',
53
- topheight: '100%',
54
- tittle1:'户档案管理',
55
- tittle2:'表档案管理',
56
- tittle3:'设备管理',
57
- info: '流程监控'
58
- }
59
- },
60
- events: {
61
- 'addactive'() {
62
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
63
- this.hidden()
64
- this.showbasic = true
65
- this.topheight = '20%'
66
- this.botheight = '80%'
67
- },
68
- 'changeheight'() {
69
- this.show = false
70
- this.botheight = '0%'
71
- if (this.$refs.binfo) {
72
- this.$refs.pinfo.flush()
73
- this.$refs.jinfo.flush()
74
- this.$refs.binfo.flush()
75
- this.$refs.finfo.flush()
76
- this.$refs.cinfo.flush()
77
- this.$refs.fvinfo.flush()
78
- this.$refs.minfo.flush()
79
- this.$refs.dinfo.flush()
80
- this.$refs.buinfo.flush()
81
- this.$refs.ninfo.flush()
82
- this.$refs.iinfo.flush()
83
- }
84
- },
85
- 'check'(val) {
86
-
87
- this.selectdata = ''
88
- this.selectdata = val
89
- console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
90
- this.topheight = '20%'
91
- this.botheight = '80%'
92
- this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
93
- this.$refs.queryuser.$refs.cp.pager = false
94
- this.showbasic = true
95
- let msg = val.defname
96
- this.header = msg
97
- this.hidden()
98
- if(this.$login.f.f_fengongsi.includes("西昌")){
99
- if(msg === '测绘申请'){
100
- this.$refs.route.init('zr_placecontroler', {selectdata: this.selectdata,edit : false})//zr_placecontroler zr_receivingnote
101
- }
102
- if(msg === '测绘设计'){
103
- console.log('测绘设计')
104
- this.$refs.route.init('zr_testdesign', {selectdata: this.selectdata,edit : false})//zr_placecontroler zr_receivingnote
105
- }
106
- if (msg === '报建登记') {
107
- console.log(this.selectdata)
108
- this.$refs.route.init('zr_customeressentialinfo', {selectdata: this.selectdata,edit : false})
109
- console.log(this.$refs.record)
110
- }
111
- if (msg === '收费标准制定') {
112
- this.$refs.route.init('zr_feenorme', {selectdata: this.selectdata,edit : false})
113
- }
114
- if (msg === '合同签订') {
115
- this.$refs.route.init('zr_contratsigne', {selectdata: this.selectdata,edit : false})
116
- }
117
- if (msg === '材料计划') {
118
- this.$refs.route.init('zr_materialplan', {selectdata: this.selectdata,edit : false})
119
- }
120
- if (msg === '施工报建') {
121
- this.$refs.route.init('zr_construction', {selectdata: this.selectdata,edit : false})
122
- }
123
- if (msg === '工程施工任务书') {
124
- this.$refs.route.init('zr_dispatchingjob', {selectdata: this.selectdata,edit : false})
125
- }
126
- if (msg === '竣工验收') {
127
- this.$refs.route.init('zr_receivingnote', {selectdata: this.selectdata,edit : false})
128
- }
129
- if (msg === '资料移交') {
130
- this.$refs.route.init('zr_ignitionventilation_transfer', {selectdata: this.selectdata,edit : false})
131
- }
132
- if (msg === '通气点火') {
133
- this.$refs.route.init('zr_ignitionventilation', {selectdata: this.selectdata,edit : false})
134
- }
135
- if (msg === '完工') {
136
- this.$refs.route.init('zr_end')
137
- }
138
- }
139
- },
140
- 'selfsearch'() {
141
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
142
- },
143
- 'close'() {
144
- this.hidden()
145
- this.showtotal = false
146
- this.topheight = '100%'
147
- this.botheight = '0%'
148
- this.$refs.queryuser.$refs.cp.pager = true
149
- }
150
- },
151
- methods: {
152
- hidden() {
153
- this.showtotal = true
154
- },
155
- close() {
156
- this.hidden()
157
- this.topheight = '100%'
158
- this.botheight = '0%'
159
- }
160
- },
161
- watch: {
162
- 'selectdata'(val) {
163
- console.log('selectdata:', val)
164
- },
165
- 'selectdata.f_customer_type'() {
166
- if (this.selectdata.f_customer_type == '企业') {
167
- this.flagg = true
168
- }
169
- },
170
- 'selectdata.f_apply_type'() {
171
- if (this.selectdata.f_apply_type=="集体报建" || this.selectdata.f_apply_type=="集体报建流程") {
172
- this.flagl = true
173
- }
174
- }
175
- },
176
-
177
- }
178
- </script>
1
+ <template>
2
+ <div class="col-sm-12" style="overflow:auto;">
3
+ <div class="tops" v-bind:style="{ height: topheight }">
4
+ <supervisory-list v-ref:queryuser></supervisory-list>
5
+ </div>
6
+ <div v-show="showtotal" v-bind:style="{ height: botheight }">
7
+ <div class="col-sm-2" v-show="showbasic">
8
+ <supervisory-chart :selectdata="selectdata"></supervisory-chart>
9
+ </div>
10
+ <div class="col-sm-9">
11
+ <tabset v-ref:tabs :close="false">
12
+ <tab :header='header'>
13
+ <route v-ref:route></route>
14
+ <route :comp="{name: 'customer-essential-info'}" v-if = "r1" ></route>
15
+ </tab>
16
+ <tab header='户档案信息'>
17
+ <customer-record-message v-ref:record :selectdata="selectdata" :key="tittle1" :edit = "false"></customer-record-message>
18
+ </tab>
19
+ <tab header='表档案信息'>
20
+ <customer-record-message v-ref:record :selectdata="selectdata" :key="tittle2" :edit = "false"></customer-record-message>
21
+ </tab>
22
+ <tab header='设备信息' v-if="selectdata.f_user_type =='非民用'">
23
+ <customer-equipment-message v-ref:equipment :selectdata="selectdata" :key="tittle3" :edit = "false"></customer-equipment-message>
24
+ </tab>
25
+ <tab header='材料信息'>
26
+ <customer-material-message v-ref:material :selectdata="selectdata" :edit = "false"></customer-material-message>
27
+ </tab>
28
+ <tab header='附件'>
29
+ <upload v-ref:file :blodid = "selectdata.f_process_id" :isusetype = "false" :isremark ="false"
30
+ :isupload = "true"
31
+ :takeimg = "true"
32
+ :edit = "false">
33
+ </upload>
34
+ </tab>
35
+ </tabset>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </template>
40
+ <script>
41
+ export default {
42
+ title: '流程监控',
43
+ props: [ 'defname'],
44
+ data() {
45
+ return {
46
+ flagl:false,
47
+ flagg: false,
48
+ showbasic: false,
49
+ showtotal: false,
50
+ header: null,
51
+ selectdata: {},
52
+ botheight: '0%',
53
+ topheight: '100%',
54
+ tittle1:'户档案管理',
55
+ tittle2:'表档案管理',
56
+ tittle3:'设备管理',
57
+ info: '流程监控'
58
+ }
59
+ },
60
+ events: {
61
+ 'addactive'() {
62
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
63
+ this.hidden()
64
+ this.showbasic = true
65
+ this.topheight = '20%'
66
+ this.botheight = '80%'
67
+ },
68
+ 'changeheight'() {
69
+ this.show = false
70
+ this.botheight = '0%'
71
+ if (this.$refs.binfo) {
72
+ this.$refs.pinfo.flush()
73
+ this.$refs.jinfo.flush()
74
+ this.$refs.binfo.flush()
75
+ this.$refs.finfo.flush()
76
+ this.$refs.cinfo.flush()
77
+ this.$refs.fvinfo.flush()
78
+ this.$refs.minfo.flush()
79
+ this.$refs.dinfo.flush()
80
+ this.$refs.buinfo.flush()
81
+ this.$refs.ninfo.flush()
82
+ this.$refs.iinfo.flush()
83
+ }
84
+ },
85
+ 'check'(val) {
86
+
87
+ this.selectdata = ''
88
+ this.selectdata = val
89
+ console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
90
+ this.topheight = '20%'
91
+ this.botheight = '80%'
92
+ this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
93
+ this.$refs.queryuser.$refs.cp.pager = false
94
+ this.showbasic = true
95
+ let msg = val.defname
96
+ this.header = msg
97
+ this.hidden()
98
+ if(this.$login.f.f_fengongsi.includes("西昌")){
99
+ if(msg === '测绘申请'){
100
+ this.$refs.route.init('zr_placecontroler', {selectdata: this.selectdata,edit : false})//zr_placecontroler zr_receivingnote
101
+ }
102
+ if(msg === '测绘设计'){
103
+ console.log('测绘设计')
104
+ this.$refs.route.init('zr_testdesign', {selectdata: this.selectdata,edit : false})//zr_placecontroler zr_receivingnote
105
+ }
106
+ if (msg === '报建登记') {
107
+ console.log(this.selectdata)
108
+ this.$refs.route.init('zr_customeressentialinfo', {selectdata: this.selectdata,edit : false})
109
+ console.log(this.$refs.record)
110
+ }
111
+ if (msg === '收费标准制定') {
112
+ this.$refs.route.init('zr_feenorme', {selectdata: this.selectdata,edit : false})
113
+ }
114
+ if (msg === '合同签订') {
115
+ this.$refs.route.init('zr_contratsigne', {selectdata: this.selectdata,edit : false})
116
+ }
117
+ if (msg === '材料计划') {
118
+ this.$refs.route.init('zr_materialplan', {selectdata: this.selectdata,edit : false})
119
+ }
120
+ if (msg === '施工报建') {
121
+ this.$refs.route.init('zr_construction', {selectdata: this.selectdata,edit : false})
122
+ }
123
+ if (msg === '工程施工任务书') {
124
+ this.$refs.route.init('zr_dispatchingjob', {selectdata: this.selectdata,edit : false})
125
+ }
126
+ if (msg === '竣工验收') {
127
+ this.$refs.route.init('zr_receivingnote', {selectdata: this.selectdata,edit : false})
128
+ }
129
+ if (msg === '资料移交') {
130
+ this.$refs.route.init('zr_ignitionventilation_transfer', {selectdata: this.selectdata,edit : false})
131
+ }
132
+ if (msg === '通气点火') {
133
+ this.$refs.route.init('zr_ignitionventilation', {selectdata: this.selectdata,edit : false})
134
+ }
135
+ if (msg === '完工') {
136
+ this.$refs.route.init('zr_end')
137
+ }
138
+ }
139
+ },
140
+ 'selfsearch'() {
141
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
142
+ },
143
+ 'close'() {
144
+ this.hidden()
145
+ this.showtotal = false
146
+ this.topheight = '100%'
147
+ this.botheight = '0%'
148
+ this.$refs.queryuser.$refs.cp.pager = true
149
+ }
150
+ },
151
+ methods: {
152
+ hidden() {
153
+ this.showtotal = true
154
+ },
155
+ close() {
156
+ this.hidden()
157
+ this.topheight = '100%'
158
+ this.botheight = '0%'
159
+ }
160
+ },
161
+ watch: {
162
+ 'selectdata'(val) {
163
+ console.log('selectdata:', val)
164
+ },
165
+ 'selectdata.f_customer_type'() {
166
+ if (this.selectdata.f_customer_type == '企业') {
167
+ this.flagg = true
168
+ }
169
+ },
170
+ 'selectdata.f_apply_type'() {
171
+ if (this.selectdata.f_apply_type=="集体报建" || this.selectdata.f_apply_type=="集体报建流程") {
172
+ this.flagl = true
173
+ }
174
+ }
175
+ },
176
+
177
+ }
178
+ </script>
package/src/main.js CHANGED
@@ -1,25 +1,25 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
- import {ldap} from 'ldap-clients'
5
- import {system} from 'system-clients'
6
- import {sale} from 'sale-client'
7
- import apply from './apply'
8
- import applyAndroid from './applyAndroid'
9
- import 'lib-flexible/flexible.js'
10
- // import AndroidPlugin from './AndroidPlugin.js'
11
- import {systemphonegrid} from 'system-phone'
12
-
13
- all()
14
- system()
15
- apply()
16
- ldap()
17
- sale()
18
- applyAndroid()
19
- // Vue.use(AndroidPlugin)
20
- require('./bootstrap/less/bootstrap.less')
21
-
22
- new Vue({
23
- el: 'body',
24
- components: { App }
25
- })
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+ import {ldap} from 'ldap-clients'
5
+ import {system} from 'system-clients'
6
+ import {sale} from 'sale-client'
7
+ import apply from './apply'
8
+ //import applyAndroid from './applyAndroid'
9
+ import 'lib-flexible/flexible.js'
10
+ // import AndroidPlugin from './AndroidPlugin.js'
11
+ import {systemphonegrid} from 'system-phone'
12
+
13
+ all()
14
+ system()
15
+ apply()
16
+ ldap()
17
+ sale()
18
+ //applyAndroid()
19
+ // Vue.use(AndroidPlugin)
20
+ require('./bootstrap/less/bootstrap.less')
21
+
22
+ new Vue({
23
+ el: 'body',
24
+ components: { App }
25
+ })
File without changes
@@ -1,2 +0,0 @@
1
- #Mon Sep 23 18:01:15 CST 2019
2
- gradle.version=3.5.1