apply-clients 4.1.2 → 4.1.3-weinan

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 (33) hide show
  1. package/index.html +1 -1
  2. package/package.json +6 -4
  3. package/src/apply.js +81 -66
  4. package/src/applyAndroid.js +41 -39
  5. package/src/components/app_apply/AppChargeManagement.vue +619 -0
  6. package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
  7. package/src/components/product/Function/InstallInfoSelect.vue +40 -27
  8. package/src/components/product/Function/StopApplyCrrdList.vue +1 -1
  9. package/src/components/product/Function/functions/StopInstall.vue +7 -1
  10. package/src/components/product/Process/ExplorationSelect.vue +82 -59
  11. package/src/components/product/Process/Processes/InstallationDetails.vue +276 -246
  12. package/src/components/product/Process/Processes/UserFireInfo.vue +409 -0
  13. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +1458 -99
  14. package/src/components/product/Process/Processes/addressAndUserinfoManagementPro.vue +1221 -0
  15. package/src/components/product/Process/Processes/chargeManagement.vue +47 -53
  16. package/src/components/product/Process/Processes/devicesDetails.vue +834 -0
  17. package/src/components/product/Process/Processes/materialshoufei.vue +182 -0
  18. package/src/components/product/Process/Processes/printCharge.vue +130 -130
  19. package/src/components/product/Process/Processes/recordcancel.vue +50 -0
  20. package/src/components/product/Process/Processes/selectUserinfo.vue +199 -0
  21. package/src/components/product/Process/Processes/splitMaterial.vue +358 -0
  22. package/src/components/product/Process/Service/ServiceControl.vue +1124 -703
  23. package/src/components/product/Process/ShowBackReason.vue +1 -0
  24. package/src/components/product/ServiceView.vue +82 -35
  25. package/src/components/product/Stop/StopApply.vue +101 -0
  26. package/src/components/product/Stop/StopApplyList.vue +257 -0
  27. package/src/components/product/Supervisory/SupervisoryControl.vue +7 -4
  28. package/src/components/product/Supervisory/SupervisoryList.vue +40 -27
  29. package/src/components/product/Supervisory/SupervisoryhCart.vue +0 -7
  30. package/src/components/product/Test.vue +8 -4
  31. package/src/components/product/VueUtils/ApplyUpload.vue +4 -4
  32. package/src/main.js +25 -23
  33. package/static/images/lefticon//347/237/251/345/275/2421183.png +0 -0
@@ -1,251 +1,251 @@
1
- <template>
2
- <criteria-paged :model="model" v-ref:cp>
3
- <criteria partial='criteria' @condition-changed='search' v-ref:cri>
4
- <div class="form-horizontal select-overspread container-fluid auto" partial>
5
- <div class="row">
6
- <div class="form-group col-sm-3">
7
- <label class="font_normal_body">项目名称:</label>
8
- <input type="text" class="input_search" style="width: 60%" v-model="model.f_entry_name"
9
- v-on:keyup.enter="$parent.$parent.search()" condition="a.f_entry_name like '%{}%'" placeholder='项目名'>
10
- </div>
11
- <div class="form-group col-sm-3">
12
- <label for="startDate" class="font_normal_body">开始时间:</label>
13
- <datepicker id="startDate" placeholder="开始日期"
14
- style="width: 60%!important;"
15
- v-model="model.startDate"
16
- :value.sync="model.startDate"
17
- :format="'yyyy-MM-dd HH:mm:ss'"
18
- :show-reset-button="true"
19
- condition="cr.f_charge_date >= '{}'">
20
- </datepicker>
21
- </div>
22
- <div class="form-group col-sm-3">
23
- <label for="endDate" class="font_normal_body">结束时间:</label>
24
- <datepicker id="endDate" placeholder="结束日期"
25
- style="width: 60%!important;"
26
- v-model="model.endDate"
27
- :value.sync="model.endDate"
28
- :format="'yyyy-MM-dd HH:mm:ss'"
29
- :show-reset-button="true"
30
- condition="cr.f_charge_date <= '{}'">
31
- </datepicker>
32
- </div>
33
- <div class="form-group col-sm-3 button-range">
34
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
35
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
36
- <export-excel :data="$parent.$parent.getCondition"
37
- :field="$parent.$parent.getfield"
38
- sqlurl="rs/logic/applyExportfile"
39
- sql-name="getApplyCharge"
40
- template-name='收费记录信息导出'
41
- :choose-col="true"></export-excel>
42
- <div
43
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
44
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
45
- class="button_spacing"
46
- style="float: right">
47
- </div>
48
- </div>
49
- </div>
50
- <div class="row" v-show="$parent.$parent.criteriaShow">
51
- <div class="form-group col-sm-3">
52
- <label class="font_normal_body">报建编号:</label>
53
- <input type="text" style="width: 60%" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
54
- v-on:keyup.enter="$parent.$parent.search()"
55
- condition="a.f_apply_num = '{}'">
56
- </div>
57
- <div class="form-group col-sm-3">
58
- <label class="font_normal_body">合同编号:</label>
59
- <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
60
- v-on:keyup.enter="$parent.$parent.search()"
61
- condition="a.f_contract_number = '{}'">
62
- </div>
63
- <div class="form-group col-sm-3">
64
- <label class="font_normal_body">报建类型:</label>
65
- <v-select
66
- v-model="model.f_apply_type"
67
- placeholder='请选择'
68
- condition="a.f_apply_type = '{}'"
69
- :value.sync="model.f_apply_type"
70
- :options='$parent.$parent.applytype'
71
- class="select select_list"
72
- :value-single="true"
73
- close-on-select ></v-select>
74
- </div>
75
- <div class="form-group col-sm-3">
76
- <label class="font_normal_body">收费人员:</label>
77
- <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
78
- v-on:keyup.enter="$parent.$parent.search()"
79
- condition="cr.f_charge_collectors like '%{}%'">
80
- </div>
81
- <div class="form-group col-sm-3">
82
- <label class="font_normal_body">付款方式:</label>
83
- <v-select
84
- v-model="model.f_payment_method"
85
- placeholder='请选择'
86
- condition="cr.f_payment_method = '{}'"
87
- :value.sync="model.f_payment_method"
88
- :options='$parent.$parent.paymentMethod'
89
- class="select select_list"
90
- :value-single="true"
91
- close-on-select ></v-select>
92
- </div>
93
- <div class="form-group col-sm-3">
94
- <label class="font_normal_body">缴费状态:</label>
95
- <v-select
96
- v-model="model.f_charging_status"
97
- placeholder='请选择'
98
- condition="cr.f_charging_status = '{}'"
99
- :value.sync="model.f_charging_status"
100
- :options='$parent.$parent.chargingStatus'
101
- class="select select_list"
102
- :value-single="true"
103
- close-on-select ></v-select>
104
- </div>
105
- </div>
106
- </div>
107
- </criteria>
108
- <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
109
- <template partial='head'>
110
- <tr>
111
- <th>序号</th>
112
- <th>报建编号</th>
113
- <th>项目名称</th>
114
- <th>合同编号</th>
115
- <th>报建类型</th>
116
- <th>缴费编码</th>
117
- <th>收费金额</th>
118
- <th>付款方式</th>
119
- <th>收费人员</th>
120
- <th>收费日期</th>
121
- <th>状态</th>
122
- <th>地址</th>
123
- </tr>
124
- </template>
125
- <template partial='body'>
126
- <tr >
127
- <td style="text-align: center;">
128
- <nobr><font>{{$index+1}}</font></nobr>
129
- </td>
130
- <td style="text-align: center;">
131
- <nobr><font>{{row.f_apply_num}}</font></nobr>
132
- </td>
133
- <td style="text-align: center;">
134
- <nobr><font>{{row.f_apply_entry_name}}</font></nobr>
135
- </td>
136
- <td style="text-align: center;">
137
- <nobr><font>{{row.f_contract_number}}</font></nobr>
138
- </td>
139
- <td style="text-align: center;">
140
- <nobr><font>{{row.f_apply_type}}</font></nobr>
141
- </td>
142
- <td style="text-align: center;">
143
- <nobr><font>{{row.f_charge_number}}</font></nobr>
144
- </td>
145
- <td style="text-align: center;">
146
- <nobr><font>{{row.f_charge_money}}</font></nobr>
147
- </td>
148
- <td style="text-align: center;">
149
- <nobr><font>{{row.f_payment_method}}</font></nobr>
150
- </td>
151
- <td style="text-align: center;">
152
- <nobr><font>{{row.f_charge_collectors}}</font></nobr>
153
- </td>
154
- <td style="text-align: center;">
155
- <nobr><font>{{row.f_charge_date}}</font></nobr>
156
- </td>
157
- <td style="text-align: center;">
158
- <nobr><font>{{row.f_charge_status}}</font></nobr>
159
- </td>
160
- <td style="text-align: center;">
161
- <nobr><font>{{row.f_address}}</font></nobr>
162
- </td>
163
- </tr>
164
- </template>
165
- </data-grid>
166
- </criteria-paged>
167
- </template>
168
-
169
- <script>
170
- import {PagedList} from 'vue-client'
171
- import {HttpResetClass} from 'vue-client'
172
- export default {
173
- title: '报建收费列表',
174
- data () {
175
- return {
176
- model: new PagedList('rs/sql/getApplyCharge', 30, {
177
- data: {
178
- orgid: this.$login.f.orgid
179
- }
180
- }, {
181
- f_charge_money: 0
182
- }),
183
- applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
184
- paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
185
- chargingStatus: [
186
- {label: '全部', value: ''},
187
- {label: '有效', value: '有效'},
188
- {label: '作废', value: '作废'}
189
- ],
190
- criteriaShow: false,
191
- chargeAll: {
192
- count: 0,
193
- sum: 0
194
- },
195
- getfield: {
196
- 'f_apply_num': '报建编号',
197
- 'f_entry_name': '项目名称',
198
- 'f_contract_number': '合同编号',
199
- 'f_apply_type': '报建类型',
200
- 'f_charge_money': '收费金额',
201
- 'f_payment_method': '付款方式',
202
- 'f_charge_collectors': '收费人员',
203
- 'f_charge_date': '收费日期',
204
- 'f_charging_status': '状态',
205
- 'f_address': '地址'
206
- }
207
- }
208
- },
209
- ready () {
210
- // 调用查询
211
- this.search()
212
- },
213
- methods: {
214
- clear () {
215
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
216
- this.$refs.cp.$refs.cri.model[key] = []
217
- })
218
- },
219
- // 查询
220
- search () {
221
- this.$refs.cp.$refs.cri.search()
222
- this.getChargeAll()
223
- },
224
- async getChargeAll () {
225
- let http = new HttpResetClass()
226
- let data = {
227
- condition: this.model.condition,
228
- data: {
229
- orgid: this.$login.f.orgid
230
- }
231
- }
232
- let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
233
-
234
- this.chargeAll = res.data[0]
235
- }
236
- },
237
- computed: {
238
- getCondition () {
239
- return {
240
- condition: this.$refs.cp.$refs.cri.condition,
241
- data: {
242
- orgid: this.$login.f.orgid
243
- }
244
- }
245
- }
246
- }
247
- }
248
- </script>
249
-
250
- <style scoped>
251
- </style>
1
+ <template>
2
+ <criteria-paged :model="model" v-ref:cp>
3
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri>
4
+ <div class="form-horizontal select-overspread container-fluid auto" partial>
5
+ <div class="row">
6
+ <div class="form-group col-sm-3">
7
+ <label class="font_normal_body">项目名称:</label>
8
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_entry_name"
9
+ v-on:keyup.enter="$parent.$parent.search()" condition="a.f_entry_name like '%{}%'" placeholder='项目名'>
10
+ </div>
11
+ <div class="form-group col-sm-3">
12
+ <label for="startDate" class="font_normal_body">开始时间:</label>
13
+ <datepicker id="startDate" placeholder="开始日期"
14
+ style="width: 60%!important;"
15
+ v-model="model.startDate"
16
+ :value.sync="model.startDate"
17
+ :format="'yyyy-MM-dd HH:mm:ss'"
18
+ :show-reset-button="true"
19
+ condition="cr.f_charge_date >= '{}'">
20
+ </datepicker>
21
+ </div>
22
+ <div class="form-group col-sm-3">
23
+ <label for="endDate" class="font_normal_body">结束时间:</label>
24
+ <datepicker id="endDate" placeholder="结束日期"
25
+ style="width: 60%!important;"
26
+ v-model="model.endDate"
27
+ :value.sync="model.endDate"
28
+ :format="'yyyy-MM-dd HH:mm:ss'"
29
+ :show-reset-button="true"
30
+ condition="cr.f_charge_date <= '{}'">
31
+ </datepicker>
32
+ </div>
33
+ <div class="form-group col-sm-3 button-range">
34
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
35
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
36
+ <export-excel :data="$parent.$parent.getCondition"
37
+ :field="$parent.$parent.getfield"
38
+ sqlurl="rs/logic/applyExportfile"
39
+ sql-name="getApplyCharge"
40
+ template-name='收费记录信息导出'
41
+ :choose-col="true"></export-excel>
42
+ <div
43
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
44
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
45
+ class="button_spacing"
46
+ style="float: right">
47
+ </div>
48
+ </div>
49
+ </div>
50
+ <div class="row" v-show="$parent.$parent.criteriaShow">
51
+ <div class="form-group col-sm-3">
52
+ <label class="font_normal_body">报建编号:</label>
53
+ <input type="text" style="width: 60%" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
54
+ v-on:keyup.enter="$parent.$parent.search()"
55
+ condition="a.f_apply_num = '{}'">
56
+ </div>
57
+ <div class="form-group col-sm-3">
58
+ <label class="font_normal_body">合同编号:</label>
59
+ <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
60
+ v-on:keyup.enter="$parent.$parent.search()"
61
+ condition="a.f_contract_number = '{}'">
62
+ </div>
63
+ <div class="form-group col-sm-3">
64
+ <label class="font_normal_body">报建类型:</label>
65
+ <v-select
66
+ v-model="model.f_apply_type"
67
+ placeholder='请选择'
68
+ condition="a.f_apply_type = '{}'"
69
+ :value.sync="model.f_apply_type"
70
+ :options='$parent.$parent.applytype'
71
+ class="select select_list"
72
+ :value-single="true"
73
+ close-on-select ></v-select>
74
+ </div>
75
+ <div class="form-group col-sm-3">
76
+ <label class="font_normal_body">收费人员:</label>
77
+ <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
78
+ v-on:keyup.enter="$parent.$parent.search()"
79
+ condition="cr.f_charge_collectors like '%{}%'">
80
+ </div>
81
+ <div class="form-group col-sm-3">
82
+ <label class="font_normal_body">付款方式:</label>
83
+ <v-select
84
+ v-model="model.f_payment_method"
85
+ placeholder='请选择'
86
+ condition="cr.f_payment_method = '{}'"
87
+ :value.sync="model.f_payment_method"
88
+ :options='$parent.$parent.paymentMethod'
89
+ class="select select_list"
90
+ :value-single="true"
91
+ close-on-select ></v-select>
92
+ </div>
93
+ <div class="form-group col-sm-3">
94
+ <label class="font_normal_body">缴费状态:</label>
95
+ <v-select
96
+ v-model="model.f_charge_status"
97
+ placeholder='请选择'
98
+ condition="cr.f_charge_status = '{}'"
99
+ :value.sync="model.f_charge_status"
100
+ :options='$parent.$parent.chargingStatus'
101
+ class="select select_list"
102
+ :value-single="true"
103
+ close-on-select ></v-select>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </criteria>
108
+ <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
109
+ <template partial='head'>
110
+ <tr>
111
+ <th>序号</th>
112
+ <th>报建编号</th>
113
+ <th>项目名称</th>
114
+ <th>合同编号</th>
115
+ <th>报建类型</th>
116
+ <th>缴费编码</th>
117
+ <th>收费金额</th>
118
+ <th>付款方式</th>
119
+ <th>收费人员</th>
120
+ <th>收费日期</th>
121
+ <th>状态</th>
122
+ <th>地址</th>
123
+ </tr>
124
+ </template>
125
+ <template partial='body'>
126
+ <tr >
127
+ <td style="text-align: center;">
128
+ <nobr><font>{{$index+1}}</font></nobr>
129
+ </td>
130
+ <td style="text-align: center;">
131
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
132
+ </td>
133
+ <td style="text-align: center;">
134
+ <nobr><font>{{row.f_apply_entry_name}}</font></nobr>
135
+ </td>
136
+ <td style="text-align: center;">
137
+ <nobr><font>{{row.f_contract_number}}</font></nobr>
138
+ </td>
139
+ <td style="text-align: center;">
140
+ <nobr><font>{{row.f_apply_type}}</font></nobr>
141
+ </td>
142
+ <td style="text-align: center;">
143
+ <nobr><font>{{row.f_charge_number}}</font></nobr>
144
+ </td>
145
+ <td style="text-align: center;">
146
+ <nobr><font>{{row.f_charge_money}}</font></nobr>
147
+ </td>
148
+ <td style="text-align: center;">
149
+ <nobr><font>{{row.f_payment_method}}</font></nobr>
150
+ </td>
151
+ <td style="text-align: center;">
152
+ <nobr><font>{{row.f_charge_collectors}}</font></nobr>
153
+ </td>
154
+ <td style="text-align: center;">
155
+ <nobr><font>{{row.f_charge_date}}</font></nobr>
156
+ </td>
157
+ <td style="text-align: center;">
158
+ <nobr><font>{{row.f_charge_status}}</font></nobr>
159
+ </td>
160
+ <td style="text-align: center;">
161
+ <nobr><font>{{row.f_address}}</font></nobr>
162
+ </td>
163
+ </tr>
164
+ </template>
165
+ </data-grid>
166
+ </criteria-paged>
167
+ </template>
168
+
169
+ <script>
170
+ import {PagedList} from 'vue-client'
171
+ import {HttpResetClass} from 'vue-client'
172
+ export default {
173
+ title: '报建收费列表',
174
+ data () {
175
+ return {
176
+ model: new PagedList('rs/sql/getApplyCharge', 30, {
177
+ data: {
178
+ orgid: this.$login.f.orgid
179
+ }
180
+ }, {
181
+ f_charge_money: 0
182
+ }),
183
+ applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
184
+ paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
185
+ chargingStatus: [
186
+ {label: '全部', value: ''},
187
+ {label: '有效', value: '有效'},
188
+ {label: '作废', value: '作废'}
189
+ ],
190
+ criteriaShow: false,
191
+ chargeAll: {
192
+ count: 0,
193
+ sum: 0
194
+ },
195
+ getfield: {
196
+ 'f_apply_num': '报建编号',
197
+ 'f_entry_name': '项目名称',
198
+ 'f_contract_number': '合同编号',
199
+ 'f_apply_type': '报建类型',
200
+ 'f_charge_money': '收费金额',
201
+ 'f_payment_method': '付款方式',
202
+ 'f_charge_collectors': '收费人员',
203
+ 'f_charge_date': '收费日期',
204
+ 'f_charge_status': '状态',
205
+ 'f_address': '地址'
206
+ }
207
+ }
208
+ },
209
+ ready () {
210
+ // 调用查询
211
+ this.search()
212
+ },
213
+ methods: {
214
+ clear () {
215
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
216
+ this.$refs.cp.$refs.cri.model[key] = []
217
+ })
218
+ },
219
+ // 查询
220
+ search () {
221
+ this.$refs.cp.$refs.cri.search()
222
+ this.getChargeAll()
223
+ },
224
+ async getChargeAll () {
225
+ let http = new HttpResetClass()
226
+ let data = {
227
+ condition: this.model.condition,
228
+ data: {
229
+ orgid: this.$login.f.orgid
230
+ }
231
+ }
232
+ let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
233
+
234
+ this.chargeAll = res.data[0]
235
+ }
236
+ },
237
+ computed: {
238
+ getCondition () {
239
+ return {
240
+ condition: this.$refs.cp.$refs.cri.condition,
241
+ data: {
242
+ orgid: this.$login.f.orgid
243
+ }
244
+ }
245
+ }
246
+ }
247
+ }
248
+ </script>
249
+
250
+ <style scoped>
251
+ </style>
@@ -5,15 +5,15 @@
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
7
  <div class="form-group col-sm-5">
8
- <label class="font_normal_body">项目名称/客户名称/联系人:</label>
9
- <input type="text" class="input_search" v-model="model.f_user_name"
10
- v-on:keyup.enter="$parent.$parent.search()" condition=" (f_entry_name like '%{}%' or f_user_name like '%{}%' or f_contact like '%{}%') " placeholder='三选一输入'>
8
+ <label class="font_normal_body">项目名称:</label>
9
+ <input type="text" class="input_search" v-model="model.f_entry_name"
10
+ v-on:keyup.enter="$parent.$parent.search()" condition=" f_entry_name like '%{}%' " placeholder='请输入'>
11
11
  </div>
12
12
  <div class="form-group col-sm-4">
13
13
  <label class="font_normal_body">报建编号:</label>
14
14
  <input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
15
15
  v-on:keyup.enter="$parent.$parent.search()"
16
- condition="f_apply_num = '{}'">
16
+ condition="f_apply_num like '%{}%'">
17
17
  </div>
18
18
  <div class="form-group col-sm-3 button-range">
19
19
  <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
@@ -31,7 +31,7 @@
31
31
  <label class="font_normal_body">合同编号:</label>
32
32
  <input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
33
33
  v-on:keyup.enter="$parent.$parent.search()"
34
- condition="f_contract_number = '{}'">
34
+ condition="f_contract_number like '%{}%'">
35
35
  </div>
36
36
  <div class="form-group col-sm-4">
37
37
  <label class="font_normal_body">报建类型:</label>
@@ -59,17 +59,29 @@
59
59
  close-on-select ></v-select>
60
60
  </div>
61
61
  <div class="form-group col-sm-4">
62
- <label class="font_normal_body">联系电话:</label>
63
- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"
64
- v-on:keyup.enter="$parent.$parent.search()"
65
- condition="f_phone like '%{}%'">
66
- </div>
67
- <div class="form-group col-sm-4">
68
- <label class="font_normal_body">用户地址:</label>
69
- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"
70
- v-on:keyup.enter="$parent.$parent.search()"
71
- condition="f_address like '%{}%'">
62
+ <label class="font_normal_body">流程状态:</label>
63
+ <v-select
64
+ v-model="model.f_sub_state"
65
+ placeholder='流程状态'
66
+ condition="f_sub_state = '{}'"
67
+ :value.sync="model.f_sub_state"
68
+ :options='$parent.$parent.f_sub_state'
69
+ class="select select_list"
70
+ :value-single="true"
71
+ close-on-select ></v-select>
72
72
  </div>
73
+ <!-- <div class="form-group col-sm-4">-->
74
+ <!-- <label class="font_normal_body">联系电话:</label>-->
75
+ <!-- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"-->
76
+ <!-- v-on:keyup.enter="$parent.$parent.search()"-->
77
+ <!-- condition="f_phone like '%{}%'">-->
78
+ <!-- </div>-->
79
+ <!-- <div class="form-group col-sm-4">-->
80
+ <!-- <label class="font_normal_body">用户地址:</label>-->
81
+ <!-- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"-->
82
+ <!-- v-on:keyup.enter="$parent.$parent.search()"-->
83
+ <!-- condition="f_address like '%{}%'">-->
84
+ <!-- </div>-->
73
85
  <div class="form-group col-sm-4">
74
86
  <label for="startDate" class="font_normal_body">开始时间:</label>
75
87
  <datepicker id="startDate" placeholder="开始日期"
@@ -100,10 +112,10 @@
100
112
  <tr class="title">
101
113
  <th style="white-space: nowrap;">序号</th>
102
114
  <th style="white-space: nowrap;">报建编号</th>
103
- <th style="white-space: nowrap;">项目名称/客户名称/联系人</th>
115
+ <th style="white-space: nowrap;">项目名称</th>
104
116
  <th style="white-space: nowrap;">合同编号</th>
105
- <th style="white-space: nowrap;">电话</th>
106
- <th style="white-space: nowrap;">地址</th>
117
+ <!-- <th style="white-space: nowrap;">电话</th>-->
118
+ <!-- <th style="white-space: nowrap;">地址</th>-->
107
119
  <th style="white-space: nowrap;">报建类型</th>
108
120
  <th style="white-space: nowrap;">办理环节</th>
109
121
  <th style="white-space: nowrap;">流程状态</th>
@@ -120,17 +132,17 @@
120
132
  <nobr>{{row.f_apply_num}}</nobr>
121
133
  </td>
122
134
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
123
- <nobr>{{row.f_entry_name}}/{{row.f_user_name}}/{{row.f_contact}}</nobr>
135
+ <nobr>{{row.f_entry_name}}</nobr>
124
136
  </td>
125
137
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
126
138
  <nobr>{{row.f_contract_number}}</nobr>
127
139
  </td>
128
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
129
- <nobr>{{row.f_phone}}</nobr>
130
- </td>
131
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
132
- <nobr>{{row.f_address}}</nobr>
133
- </td>
140
+ <!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
141
+ <!-- <nobr>{{row.f_phone}}</nobr>-->
142
+ <!-- </td>-->
143
+ <!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
144
+ <!-- <nobr>{{row.f_address}}</nobr>-->
145
+ <!-- </td>-->
134
146
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
135
147
  <nobr>{{row.f_apply_type}}</nobr>
136
148
  </td>
@@ -171,7 +183,8 @@
171
183
  data () {
172
184
  return {
173
185
  applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
174
- defnames: [{label: '全部', value: ''}], // 流程节点
186
+ defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
187
+ f_sub_state: [{label: '全部', value: ''}, {label: '完工', value: '完工'}, {label: '正在进行', value: '正在进行'}],
175
188
  model: new PagedList('rs/sql/checkuserfunction', 20, {
176
189
  data: {
177
190
  id: this.$login.f.id,
@@ -206,7 +219,7 @@
206
219
  this.defnames = [{label: '全部', value: ''}, ...res.data]
207
220
  })
208
221
  } else {
209
- this.defnames = [{label: '全部', value: ''}]
222
+ this.defnames = [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
210
223
  }
211
224
  },
212
225
  // 获取配置
@@ -137,7 +137,7 @@
137
137
  title: '操作汇总',
138
138
  data () {
139
139
  return {
140
- model: new PagedList('rs/sql/getStopApply', 9999999, {
140
+ model: new PagedList('rs/sql/get2StopApply', 9999999, {
141
141
  data: {
142
142
  id: this.$login.f.id,
143
143
  orgid: this.$login.f.orgid