apply-clients 6.0.1 → 6.0.3

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.
@@ -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>
File without changes
@@ -1,2 +0,0 @@
1
- #Mon Sep 23 18:01:15 CST 2019
2
- gradle.version=3.5.1