apply-clients 3.3.48 → 3.3.52

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/.project +17 -0
  2. package/build/dev-server.js +130 -130
  3. package/package.json +1 -1
  4. package/src/AndroidApp.vue +35 -35
  5. package/src/apply.js +93 -93
  6. package/src/applyAndroid.js +31 -31
  7. package/src/components/android/AppOnetomany.vue +301 -301
  8. package/src/components/android/AppServiceView.vue +566 -566
  9. package/src/components/android/AppSign.vue +142 -142
  10. package/src/components/android/Function/AppInstallFunction.vue +366 -366
  11. package/src/components/android/Process/AppExplorationUser.vue +340 -340
  12. package/src/components/android/Process/AppServiceControl.vue +4 -0
  13. package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
  14. package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
  15. package/src/components/android/Supervisory/AppSupervisoryCart.vue +4 -0
  16. package/src/components/product/ApplyCharge/ApplyChargeList.vue +382 -372
  17. package/src/components/product/Function/InstallFunction.vue +132 -132
  18. package/src/components/product/Function/InstallInfoSelect.vue +10 -0
  19. package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
  20. package/src/components/product/Material/MaterialDetailed.vue +235 -235
  21. package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
  22. package/src/components/product/OldApply/OldApply.vue +150 -150
  23. package/src/components/product/Onetomany.vue +377 -377
  24. package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
  25. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
  26. package/src/components/product/Process/ExplorationSelect.vue +457 -457
  27. package/src/components/product/Process/ExplorationUser.vue +147 -147
  28. package/src/components/product/Process/Processes/InstallationDetails.vue +592 -592
  29. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
  30. package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
  31. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -207
  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,132 +1,132 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div :class="showData ? 'top' : 'auto'">
5
- <installinfoselect :show-data="showData" v-ref:query></installinfoselect>
6
- </div>
7
- <div v-if="showtotal" class="panel panel-info" style="height: 90%;">
8
- <tabset v-ref:tabs :close="false">
9
- <tab :header='selectdata.title'>
10
- <function-service-control v-ref:service :selectdata="selectdata"></function-service-control>
11
- </tab>
12
- <tab header='附件'>
13
- <apply-upload :blodid="show_data.f_process_id"
14
- :isupload = "true"
15
- :isdelete="true"
16
- :isusetype="true"
17
- :isremark = "true"
18
- :takeimg="true"
19
- :issearch="true"
20
- :defname="show_data.defname"
21
- >
22
- </apply-upload>
23
- </tab>
24
- </tabset>
25
- </div>
26
- </div>
27
- </div>
28
-
29
- </template>
30
- <script>
31
- import Vue from 'vue'
32
- import {HttpResetClass} from 'vue-client'
33
- export default {
34
- title: '报建业务',
35
- data () {
36
- return {
37
- selectdata: null,
38
- showtotal: false, // 控制详情显示
39
- showData: true // 控制列表数据
40
- }
41
- },
42
- created () {
43
- this.getConfig()
44
- },
45
- methods: {
46
- // 获取功能配置
47
- async getConfig () {
48
- let res = await this.$resetpost(
49
- 'rs/logic/ApplyGetFunction',
50
- null,
51
- {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
52
- )
53
- Vue.prototype.$function_vue = res.data
54
- }
55
- },
56
- events: {
57
- // 刷新控制层
58
- async 'breakControl' (servicedata) {
59
- let http = new HttpResetClass()
60
- let data = {
61
- condition: `u.id = ${servicedata.id}`,
62
- data: {
63
- id: this.$login.f.id,
64
- orgid: this.$login.f.orgid
65
- }
66
- }
67
-
68
- let res = await http.load('POST', 'rs/sql/checkuserfunction', {data:data}, {
69
- resolveMsg: null,
70
- rejectMsg: '数据更新失败!!!'
71
- })
72
-
73
- this.showtotal = false
74
-
75
- this.selectdata = Object.assign({}, this.selectdata, res.data[0])
76
-
77
- this.$nextTick(() => {
78
- this.showtotal = true
79
- })
80
- },
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
- 'func' (funcdata, row) {
104
- this.selectdata = Object.assign({}, funcdata, row)
105
-
106
- // 关闭分页
107
- this.$refs.query.$refs.cp.pager = false
108
- // 关闭列表数据
109
- this.showData = false
110
-
111
- this.$nextTick(() => {
112
- this.showtotal = true
113
- })
114
- }
115
- }
116
- }
117
- </script>
118
- <style scoped>
119
- /*清除浮动*/
120
- .clearfix:after,.clearfix:before{
121
- display: table;
122
- }
123
- .clearfix:after{
124
- clear: both;
125
- }
126
- .head{
127
- height: auto;
128
- font-weight: bold;
129
- color: #000000;
130
- font-family: 微软雅黑;
131
- }
132
- </style>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div :class="showData ? 'top' : 'auto'">
5
+ <installinfoselect :show-data="showData" v-ref:query></installinfoselect>
6
+ </div>
7
+ <div v-if="showtotal" class="panel panel-info" style="height: 90%;">
8
+ <tabset v-ref:tabs :close="false">
9
+ <tab :header='selectdata.title'>
10
+ <function-service-control v-ref:service :selectdata="selectdata"></function-service-control>
11
+ </tab>
12
+ <tab header='附件'>
13
+ <apply-upload :blodid="show_data.f_process_id"
14
+ :isupload = "true"
15
+ :isdelete="true"
16
+ :isusetype="true"
17
+ :isremark = "true"
18
+ :takeimg="true"
19
+ :issearch="true"
20
+ :defname="show_data.defname"
21
+ >
22
+ </apply-upload>
23
+ </tab>
24
+ </tabset>
25
+ </div>
26
+ </div>
27
+ </div>
28
+
29
+ </template>
30
+ <script>
31
+ import Vue from 'vue'
32
+ import {HttpResetClass} from 'vue-client'
33
+ export default {
34
+ title: '报建业务',
35
+ data () {
36
+ return {
37
+ selectdata: null,
38
+ showtotal: false, // 控制详情显示
39
+ showData: true // 控制列表数据
40
+ }
41
+ },
42
+ created () {
43
+ this.getConfig()
44
+ },
45
+ methods: {
46
+ // 获取功能配置
47
+ async getConfig () {
48
+ let res = await this.$resetpost(
49
+ 'rs/logic/ApplyGetFunction',
50
+ null,
51
+ {resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
52
+ )
53
+ Vue.prototype.$function_vue = res.data
54
+ }
55
+ },
56
+ events: {
57
+ // 刷新控制层
58
+ async 'breakControl' (servicedata) {
59
+ let http = new HttpResetClass()
60
+ let data = {
61
+ condition: `u.id = ${servicedata.id}`,
62
+ data: {
63
+ id: this.$login.f.id,
64
+ orgid: this.$login.f.orgid
65
+ }
66
+ }
67
+
68
+ let res = await http.load('POST', 'rs/sql/checkuserfunction', {data:data}, {
69
+ resolveMsg: null,
70
+ rejectMsg: '数据更新失败!!!'
71
+ })
72
+
73
+ this.showtotal = false
74
+
75
+ this.selectdata = Object.assign({}, this.selectdata, res.data[0])
76
+
77
+ this.$nextTick(() => {
78
+ this.showtotal = true
79
+ })
80
+ },
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
+ 'func' (funcdata, row) {
104
+ this.selectdata = Object.assign({}, funcdata, row)
105
+
106
+ // 关闭分页
107
+ this.$refs.query.$refs.cp.pager = false
108
+ // 关闭列表数据
109
+ this.showData = false
110
+
111
+ this.$nextTick(() => {
112
+ this.showtotal = true
113
+ })
114
+ }
115
+ }
116
+ }
117
+ </script>
118
+ <style scoped>
119
+ /*清除浮动*/
120
+ .clearfix:after,.clearfix:before{
121
+ display: table;
122
+ }
123
+ .clearfix:after{
124
+ clear: both;
125
+ }
126
+ .head{
127
+ height: auto;
128
+ font-weight: bold;
129
+ color: #000000;
130
+ font-family: 微软雅黑;
131
+ }
132
+ </style>
@@ -43,6 +43,12 @@
43
43
  v-on:keyup.enter="$parent.$parent.search()"
44
44
  condition="f_phone like '%{}%'">
45
45
  </div>
46
+ <div class="form-group col-sm-3">
47
+ <label class="font_normal_body">身份证号:</label>
48
+ <input type="text" style="width:60%" class="input_search" placeholder='身份证号' v-model="model.f_idnumber"
49
+ v-on:keyup.enter="$parent.$parent.search()"
50
+ condition="f_idnumber like '%{}%'">
51
+ </div>
46
52
  <div class="form-group col-sm-3">
47
53
  <label class="font_normal_body">合同编号:</label>
48
54
  <input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
@@ -126,6 +132,7 @@
126
132
  <th style="white-space: nowrap;">合同编号</th>
127
133
  <th style="white-space: nowrap;">电话</th>
128
134
  <th style="white-space: nowrap;">地址</th>
135
+ <th style="white-space: nowrap;">身份证号</th>
129
136
  <th style="white-space: nowrap;">报建类型</th>
130
137
  <th style="white-space: nowrap;">办理环节</th>
131
138
  <th style="white-space: nowrap;">流程状态</th>
@@ -153,6 +160,9 @@
153
160
  <td style="text-align: center;">
154
161
  <nobr>{{row.f_address}}</nobr>
155
162
  </td>
163
+ <td style="text-align: center;">
164
+ <nobr>{{row.f_idnumber}}</nobr>
165
+ </td>
156
166
  <td style="text-align: center;">
157
167
  <nobr>{{row.f_apply_type}}</nobr>
158
168
  </td>