apply-clients 4.0.66 → 4.0.68

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 (28) hide show
  1. package/package.json +1 -1
  2. package/src/apply.js +186 -186
  3. package/src/components/product/Function/InstallInfoSelect.vue +239 -239
  4. package/src/components/product/ImageUpload.vue +575 -575
  5. package/src/components/product/ImageUpload1.vue +623 -619
  6. package/src/components/product/Process/ExplorationSelect.vue +463 -463
  7. package/src/components/product/Process/Processes/BatchItem.vue +507 -507
  8. package/src/components/product/Process/Processes/Service/ServiceControl.vue +2114 -2112
  9. package/src/components/product/Statistics/ApplyPaySearch/ApplyCheckBill.vue +420 -420
  10. package/src/components/product/Statistics/ApplyPaySearch/ApplyPaySearch.vue +363 -363
  11. package/src/components/product/Statistics/ApplyPaySearch/MaterialSummary.vue +373 -373
  12. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +207 -207
  13. package/src/components/product/Supervisory/SupervisoryControl.vue +157 -157
  14. package/src/components/product/Supervisory/SupervisoryList.vue +450 -450
  15. package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
  16. package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
  17. package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
  18. package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
  19. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  20. package/.gradle/5.2.1/gc.properties +0 -0
  21. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  22. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  23. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  24. package/.gradle/vcs-1/gc.properties +0 -0
  25. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  26. package/gradle/wrapper/gradle-wrapper.properties +0 -5
  27. package/gradlew +0 -172
  28. package/gradlew.bat +0 -84
@@ -1,157 +1,157 @@
1
- <template>
2
- <div class="col-sm-12" style="overflow:auto;">
3
- <button type="button" class="btn btn-primary" header="全部查询" @click="$dispatch('tabsselect',1)" >未完成环节查询
4
- </button>
5
- <button type="button" class="btn btn-primary" header="完成环节查询" @click="$dispatch('tabsselect',2)">已完成环节查询
6
- </button>
7
- <div class="tops" v-bind:style="{ height: topheight }">
8
- <supervisory-list v-if="showflag" v-ref:queryuser></supervisory-list>
9
- <apply-finish-search v-if="!showflag" v-ref:queryuser ></apply-finish-search>
10
- </div>
11
- <div v-show="showtotal" v-bind:style="{ height: botheight }">
12
- <div class="col-sm-2" v-show="showbasic">
13
- <supervisory-chart :selectdata="selectdata" v-ref:supervisorychart></supervisory-chart>
14
- </div>
15
- <div class="col-sm-9">
16
- <tabset v-ref:tabs :close="false">
17
- <tab :header='header'>
18
- <supervisory-service-control :selectdata="selectdata" ></supervisory-service-control>
19
- </tab>
20
- <!-- <tab header='户档案信息'>
21
- <record-message v-ref:record :selectdata="selectdata" :key="tittle1" :edit = "false"></record-message>
22
- </tab>
23
- <tab header='表档案信息'>
24
- <record-message v-ref:record :selectdata="selectdata" :key="tittle2" :edit = "false"></record-message>
25
- </tab>
26
- <tab header='设备信息' v-if="selectdata.f_user_type =='非民用'">
27
- <equipment-message v-ref:equipment :selectdata="selectdata" :key="tittle3" :edit = "false"></equipment-message>
28
- </tab>
29
- <tab header='材料信息'>
30
- <material-message v-ref:material :selectdata="selectdata" :edit = "false"></material-message>
31
- </tab>-->
32
- <tab header='附件'>
33
- <image-upload1 v-ref:file :blodid = "selectdata" :isusetype = "false" :isremark ="false"
34
- :isupload = "true"
35
- :takeimg = "true"
36
- :defname = "selectdata.defname"
37
- :edit = "false">
38
- </image-upload1>
39
- </tab>
40
- </tabset>
41
- </div>
42
- </div>
43
- </div>
44
- </template>
45
- <script>
46
- import Vue from 'vue'
47
- import {HttpResetClass} from 'vue-client'
48
- export default {
49
- title: '流程监控',
50
- props: [ 'defname'],
51
- data() {
52
- return {
53
- showflag:true,
54
- flagl:false,
55
- flagg: false,
56
- showbasic: false,
57
- showtotal: false,
58
- header: null,
59
- selectdata: {},
60
- botheight: '0%',
61
- topheight: '90%',
62
- tittle1:'户档案管理',
63
- tittle2:'表档案管理',
64
- tittle3:'设备管理',
65
- info: '流程监控'
66
- }
67
- },
68
- created(){
69
- let http = new HttpResetClass()
70
- http.load('POST','rs/logic/ApplyGetConfigs', {data:this.$login.f}, {resolveMsg: null, rejectMsg: null}
71
- ).then((res)=>{
72
- if(res.data.code && res.data.code == 200){
73
- Vue.supervisory_vue = Vue.prototype.$supervisory_vue = res.data.workflow_vue
74
- }else{
75
- this.$showMessage('获取报建配置失败,原因:' + res.data.msg)
76
- return
77
- }
78
- }).catch((ret)=>{
79
- this.$showMessage('获取报建配置失败,原因:' + JSON.stringify(ret.data))
80
- return
81
- })
82
- console.log("$supervisory_vue:"+JSON.stringify(this.$supervisory_vue))
83
- },
84
- events: {
85
- 'tabsselect'(val){
86
- if(val==1){
87
- this.showflag = true
88
- }
89
- if(val==2){
90
- this.showflag = false
91
- }
92
- },
93
- 'addactive'() {
94
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
95
- this.hidden()
96
- this.showbasic = true
97
- this.topheight = '20%'
98
- this.botheight = '80%'
99
- },
100
- 'changeheight'() {
101
- this.show = false
102
- this.botheight = '0%'
103
- },
104
- 'check'(val) {
105
- this.selectdata = ''
106
- this.selectdata = val
107
- console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
108
- this.topheight = '20%'
109
- this.botheight = '80%'
110
- this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
111
- this.$refs.queryuser.$refs.cp.pager = false
112
- this.showbasic = true
113
- let msg = val.defname
114
- this.header = msg
115
- this.hidden()
116
- },
117
- 'selfsearch'() {
118
- this.$refs.queryuser.$refs.cp.$refs.cri.search()
119
- },
120
- 'close'() {
121
- this.hidden()
122
- this.showtotal = false
123
- this.topheight = '90%'
124
- this.botheight = '0%'
125
- if(this.$refs.queryuser){
126
- this.$refs.queryuser.$refs.cp.pager = true
127
- }
128
- }
129
- },
130
- methods: {
131
- hidden() {
132
- this.showtotal = true
133
- },
134
- close() {
135
- this.hidden()
136
- this.topheight = '100%'
137
- this.botheight = '0%'
138
- }
139
- },
140
- watch: {
141
- 'selectdata'(val) {
142
- console.log('selectdata:', val)
143
- },
144
- 'selectdata.f_customer_type'() {
145
- if (this.selectdata.f_customer_type == '企业') {
146
- this.flagg = true
147
- }
148
- },
149
- 'selectdata.f_apply_type'() {
150
- if (this.selectdata.f_apply_type=="集体报建" || this.selectdata.f_apply_type=="集体报建流程") {
151
- this.flagl = true
152
- }
153
- }
154
- },
155
-
156
- }
157
- </script>
1
+ <template>
2
+ <div class="col-sm-12" style="overflow:auto;">
3
+ <button type="button" class="btn btn-primary" header="全部查询" @click="$dispatch('tabsselect',1)" >未完成环节查询
4
+ </button>
5
+ <button type="button" class="btn btn-primary" header="完成环节查询" @click="$dispatch('tabsselect',2)">已完成环节查询
6
+ </button>
7
+ <div class="tops" v-bind:style="{ height: topheight }">
8
+ <supervisory-list v-if="showflag" v-ref:queryuser></supervisory-list>
9
+ <apply-finish-search v-if="!showflag" v-ref:queryuser ></apply-finish-search>
10
+ </div>
11
+ <div v-show="showtotal" v-bind:style="{ height: botheight }">
12
+ <div class="col-sm-2" v-show="showbasic">
13
+ <supervisory-chart :selectdata="selectdata" v-ref:supervisorychart></supervisory-chart>
14
+ </div>
15
+ <div class="col-sm-9">
16
+ <tabset v-ref:tabs :close="false">
17
+ <tab :header='header'>
18
+ <supervisory-service-control :selectdata="selectdata" ></supervisory-service-control>
19
+ </tab>
20
+ <!-- <tab header='户档案信息'>
21
+ <record-message v-ref:record :selectdata="selectdata" :key="tittle1" :edit = "false"></record-message>
22
+ </tab>
23
+ <tab header='表档案信息'>
24
+ <record-message v-ref:record :selectdata="selectdata" :key="tittle2" :edit = "false"></record-message>
25
+ </tab>
26
+ <tab header='设备信息' v-if="selectdata.f_user_type =='非民用'">
27
+ <equipment-message v-ref:equipment :selectdata="selectdata" :key="tittle3" :edit = "false"></equipment-message>
28
+ </tab>
29
+ <tab header='材料信息'>
30
+ <material-message v-ref:material :selectdata="selectdata" :edit = "false"></material-message>
31
+ </tab>-->
32
+ <tab header='附件'>
33
+ <image-upload1 v-ref:file :blodid = "selectdata" :isusetype = "false" :isremark ="false"
34
+ :isupload = "true"
35
+ :takeimg = "true"
36
+ :defname = "selectdata.defname"
37
+ :edit = "false">
38
+ </image-upload1>
39
+ </tab>
40
+ </tabset>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </template>
45
+ <script>
46
+ import Vue from 'vue'
47
+ import {HttpResetClass} from 'vue-client'
48
+ export default {
49
+ title: '流程监控',
50
+ props: [ 'defname'],
51
+ data() {
52
+ return {
53
+ showflag:true,
54
+ flagl:false,
55
+ flagg: false,
56
+ showbasic: false,
57
+ showtotal: false,
58
+ header: null,
59
+ selectdata: {},
60
+ botheight: '0%',
61
+ topheight: '90%',
62
+ tittle1:'户档案管理',
63
+ tittle2:'表档案管理',
64
+ tittle3:'设备管理',
65
+ info: '流程监控'
66
+ }
67
+ },
68
+ created(){
69
+ let http = new HttpResetClass()
70
+ http.load('POST','rs/logic/ApplyGetConfigs', {data:this.$login.f}, {resolveMsg: null, rejectMsg: null}
71
+ ).then((res)=>{
72
+ if(res.data.code && res.data.code == 200){
73
+ Vue.supervisory_vue = Vue.prototype.$supervisory_vue = res.data.workflow_vue
74
+ }else{
75
+ this.$showMessage('获取报建配置失败,原因:' + res.data.msg)
76
+ return
77
+ }
78
+ }).catch((ret)=>{
79
+ this.$showMessage('获取报建配置失败,原因:' + JSON.stringify(ret.data))
80
+ return
81
+ })
82
+ console.log("$supervisory_vue:"+JSON.stringify(this.$supervisory_vue))
83
+ },
84
+ events: {
85
+ 'tabsselect'(val){
86
+ if(val==1){
87
+ this.showflag = true
88
+ }
89
+ if(val==2){
90
+ this.showflag = false
91
+ }
92
+ },
93
+ 'addactive'() {
94
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
95
+ this.hidden()
96
+ this.showbasic = true
97
+ this.topheight = '20%'
98
+ this.botheight = '80%'
99
+ },
100
+ 'changeheight'() {
101
+ this.show = false
102
+ this.botheight = '0%'
103
+ },
104
+ 'check'(val) {
105
+ this.selectdata = ''
106
+ this.selectdata = val
107
+ console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
108
+ this.topheight = '20%'
109
+ this.botheight = '80%'
110
+ this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
111
+ this.$refs.queryuser.$refs.cp.pager = false
112
+ this.showbasic = true
113
+ let msg = val.defname
114
+ this.header = msg
115
+ this.hidden()
116
+ },
117
+ 'selfsearch'() {
118
+ this.$refs.queryuser.$refs.cp.$refs.cri.search()
119
+ },
120
+ 'close'() {
121
+ this.hidden()
122
+ this.showtotal = false
123
+ this.topheight = '90%'
124
+ this.botheight = '0%'
125
+ if(this.$refs.queryuser){
126
+ this.$refs.queryuser.$refs.cp.pager = true
127
+ }
128
+ }
129
+ },
130
+ methods: {
131
+ hidden() {
132
+ this.showtotal = true
133
+ },
134
+ close() {
135
+ this.hidden()
136
+ this.topheight = '100%'
137
+ this.botheight = '0%'
138
+ }
139
+ },
140
+ watch: {
141
+ 'selectdata'(val) {
142
+ console.log('selectdata:', val)
143
+ },
144
+ 'selectdata.f_customer_type'() {
145
+ if (this.selectdata.f_customer_type == '企业') {
146
+ this.flagg = true
147
+ }
148
+ },
149
+ 'selectdata.f_apply_type'() {
150
+ if (this.selectdata.f_apply_type=="集体报建" || this.selectdata.f_apply_type=="集体报建流程") {
151
+ this.flagl = true
152
+ }
153
+ }
154
+ },
155
+
156
+ }
157
+ </script>