apply-clients 3.3.16 → 3.3.17

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 (57) hide show
  1. package/index.html +33 -33
  2. package/package.json +1 -1
  3. package/src/AndroidApp.vue +30 -30
  4. package/src/android.js +21 -21
  5. package/src/apply.js +3 -6
  6. package/src/applyAndroid.js +35 -35
  7. package/src/components/android/AppOnetomany.vue +285 -285
  8. package/src/components/android/AppServiceView.vue +570 -570
  9. package/src/components/android/AppTakePic.vue +143 -143
  10. package/src/components/android/Function/AppFunctionServiceControl.vue +329 -329
  11. package/src/components/android/Function/AppInstallFunction.vue +327 -327
  12. package/src/components/android/Process/AppExplorationUser.vue +268 -268
  13. package/src/components/android/Process/AppServiceControl.vue +711 -686
  14. package/src/components/android/Process/Processes/AppChargeManagement.vue +468 -468
  15. package/src/components/android/Process/Processes/AppDevicesManagement.vue +490 -490
  16. package/src/components/android/Process/Processes/AppInstallationDetails.vue +466 -466
  17. package/src/components/android/Process/Processes/AppSupplementalAgreement.vue +297 -297
  18. package/src/components/android/Supervisory/AppProcessSupervisory.vue +261 -261
  19. package/src/components/android/Supervisory/AppSupervisoryCart.vue +115 -115
  20. package/src/components/product/ApplyCharge/ApplyChargeList.vue +265 -265
  21. package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
  22. package/src/components/product/Function/InstallFunction.vue +122 -122
  23. package/src/components/product/Function/InstallInfoSelect.vue +289 -289
  24. package/src/components/product/Function/Service/FunctionServiceControl.vue +254 -254
  25. package/src/components/product/Onetomany.vue +296 -296
  26. package/src/components/product/Order/OrderApply.vue +47 -47
  27. package/src/components/product/Order/OrderApplyList.vue +62 -62
  28. package/src/components/product/Order/OrderMessage.vue +237 -237
  29. package/src/components/product/Process/ExplorationSelect.vue +145 -143
  30. package/src/components/product/Process/ExplorationUser.vue +128 -128
  31. package/src/components/product/Process/Processes/InstallationDetails.vue +421 -352
  32. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  33. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  34. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  35. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  36. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  37. package/src/components/product/Process/Processes/{printCharge.vue → Print/printCharge.vue} +139 -121
  38. package/src/components/product/Process/Processes/Print/printRefund.vue +193 -0
  39. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +181 -181
  40. package/src/components/product/Process/Processes/chargeManagement.vue +639 -639
  41. package/src/components/product/Process/Processes/devicesManagement.vue +458 -458
  42. package/src/components/product/Process/Processes/selectApply.vue +250 -250
  43. package/src/components/product/Process/Processes/selectUserinfo.vue +182 -182
  44. package/src/components/product/Process/Processes/supplementalAgreement.vue +298 -298
  45. package/src/components/product/Process/Service/ServiceControl.vue +916 -810
  46. package/src/components/product/Process/ShowBackReason.vue +33 -33
  47. package/src/components/product/ServiceView.vue +301 -307
  48. package/src/components/product/Stop/StopApplyList.vue +254 -254
  49. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +512 -517
  50. package/src/components/product/Supervisory/SupervisoryControl.vue +100 -100
  51. package/src/components/product/Supervisory/SupervisoryList.vue +226 -226
  52. package/src/components/product/Supervisory/SupervisoryhCart.vue +124 -124
  53. package/src/components/product/VueUtils/ApplyUpload.vue +262 -262
  54. package/src/components/product/VueUtils/GaoPaiYi/HighMeter.vue +1090 -1090
  55. package/src/main.js +23 -23
  56. package/src/components/product/Function/Inform.vue +0 -74
  57. package/src/components/product/Function/MarketSurvey.vue +0 -80
@@ -1,265 +1,265 @@
1
- <template>
2
- <criteria-paged :model="model" v-ref:cp>
3
- <criteria partial='criteria' @condition-changed='$parent.searchCondition' 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
- <res-select
9
- restype='organization'
10
- :initresid='$parent.$parent.curorgid'
11
- @res-select="$parent.$parent.getorg"
12
- is-mul="false"
13
- ></res-select>
14
- </div>
15
- <div class="form-group col-sm-3">
16
- <label for="startDate" class="font_normal_body">开始时间:</label>
17
- <datepicker id="startDate" placeholder="开始日期"
18
- style="width: 60%!important;"
19
- v-model="model.startDate"
20
- :value.sync="model.startDate"
21
- :format="'yyyy-MM-dd HH:mm:ss'"
22
- :show-reset-button="true"
23
- condition="cr.f_charge_date >= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
24
- </datepicker>
25
- </div>
26
- <div class="form-group col-sm-3">
27
- <label for="endDate" class="font_normal_body">结束时间:</label>
28
- <datepicker id="endDate" placeholder="结束日期"
29
- style="width: 60%!important;"
30
- v-model="model.endDate"
31
- :value.sync="model.endDate"
32
- :format="'yyyy-MM-dd HH:mm:ss'"
33
- :show-reset-button="true"
34
- condition="cr.f_charge_date <= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
35
- </datepicker>
36
- </div>
37
- <div class="form-group col-sm-3 button-range">
38
- <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
39
- <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
40
- <export-excel :data="$parent.$parent.getCondition"
41
- :field="$parent.$parent.getfield"
42
- sqlurl="rs/logic/applyExportfile"
43
- sql-name="getApplyCharge"
44
- template-name='收费记录信息导出'
45
- :choose-col="true"></export-excel>
46
- <div
47
- :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
48
- @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
49
- class="button_spacing"
50
- style="float: right">
51
- </div>
52
- </div>
53
- </div>
54
- <div class="row" v-show="$parent.$parent.criteriaShow">
55
- <div class="form-group col-sm-3">
56
- <label class="font_normal_body">工程编号:</label>
57
- <input type="text" style="width: 60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
58
- v-on:keyup.enter="$parent.$parent.search()"
59
- condition="a.f_apply_num = '{}'">
60
- </div>
61
- <div class="form-group col-sm-3">
62
- <label class="font_normal_body">合同编号:</label>
63
- <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
64
- v-on:keyup.enter="$parent.$parent.search()"
65
- condition="a.f_contract_number = '{}'">
66
- </div>
67
- <div class="form-group col-sm-3">
68
- <label class="font_normal_body">流&ensp;水&ensp;号:</label>
69
- <input type="text" style="width: 60%" class="input_search" placeholder='流水号' v-model="model.f_payer_number"
70
- v-on:keyup.enter="$parent.$parent.search()"
71
- condition="cr.f_payer_number = '{}'">
72
- </div>
73
- <div class="form-group col-sm-3">
74
- <label class="font_normal_body">报建类型:</label>
75
- <v-select
76
- v-model="model.f_apply_type"
77
- placeholder='请选择'
78
- condition="a.f_apply_type = '{}'"
79
- :value.sync="model.f_apply_type"
80
- :options='$parent.$parent.applytype'
81
- class="select select_list"
82
- :value-single="true"
83
- close-on-select ></v-select>
84
- </div>
85
- <div class="form-group col-sm-3">
86
- <label class="font_normal_body">收费人员:</label>
87
- <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
88
- v-on:keyup.enter="$parent.$parent.search()"
89
- condition="cr.f_charge_collectors like '%{}%'">
90
- </div>
91
- <div class="form-group col-sm-3">
92
- <label class="font_normal_body">付款方式:</label>
93
- <v-select
94
- v-model="model.f_payment_method"
95
- placeholder='请选择'
96
- condition="cr.f_payment_method = '{}'"
97
- :value.sync="model.f_payment_method"
98
- :options='$parent.$parent.paymentMethod'
99
- class="select select_list"
100
- :value-single="true"
101
- close-on-select ></v-select>
102
- </div>
103
- <div class="form-group col-sm-3">
104
- <label class="font_normal_body">缴费状态:</label>
105
- <v-select
106
- v-model="model.f_charge_status"
107
- placeholder='请选择'
108
- condition="cr.f_charge_status = '{}'"
109
- :value.sync="model.f_charge_status"
110
- :options='$parent.$parent.chargeStatus'
111
- class="select select_list"
112
- :value-single="true"
113
- close-on-select ></v-select>
114
- </div>
115
- </div>
116
- </div>
117
- </criteria>
118
- <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
119
- <template partial='head'>
120
- <tr>
121
- <th>序号</th>
122
- <th>工程编号</th>
123
- <th>合同编号</th>
124
- <th>报建类型</th>
125
- <th>缴费编码</th>
126
- <th>收费金额(退款金额)</th>
127
- <th>付款方式</th>
128
- <th>流水号</th>
129
- <th>收费人员(退款人员)</th>
130
- <th>收费日期(退款日期)</th>
131
- <th>状态</th>
132
- </tr>
133
- </template>
134
- <template partial='body'>
135
- <tr >
136
- <td style="text-align: center;">
137
- <nobr><font>{{$index+1}}</font></nobr>
138
- </td>
139
- <td style="text-align: center;">
140
- <nobr><font>{{row.f_apply_num}}</font></nobr>
141
- </td>
142
- <td style="text-align: center;">
143
- <nobr><font>{{row.f_contract_number}}</font></nobr>
144
- </td>
145
- <td style="text-align: center;">
146
- <nobr><font>{{row.f_apply_type}}</font></nobr>
147
- </td>
148
- <td style="text-align: center;">
149
- <nobr><font>{{row.f_charge_number}}</font></nobr>
150
- </td>
151
- <td style="text-align: center;">
152
- <nobr><font>{{row.f_charge_money}}</font></nobr>
153
- </td>
154
- <td style="text-align: center;">
155
- <nobr><font>{{row.f_payment_method}}</font></nobr>
156
- </td>
157
- <td style="text-align: center;">
158
- <nobr><font>{{row.f_payer_number}}</font></nobr>
159
- </td>
160
- <td style="text-align: center;">
161
- <nobr><font>{{row.f_charge_collectors}}</font></nobr>
162
- </td>
163
- <td style="text-align: center;">
164
- <nobr><font>{{row.f_charge_date}}</font></nobr>
165
- </td>
166
- <td style="text-align: center;">
167
- <nobr><font>{{row.f_charge_status}}</font></nobr>
168
- </td>
169
- </tr>
170
- </template>
171
- </data-grid>
172
- </criteria-paged>
173
- </template>
174
-
175
- <script>
176
- import {PagedList} from 'vue-client'
177
- import {HttpResetClass} from 'vue-client'
178
- export default {
179
- title: '报建收费列表',
180
- data () {
181
- return {
182
- model: new PagedList('rs/sql/getApplyCharge', 30, null, {
183
- f_charge_money: 0
184
- }),
185
- curorgid: [this.$login.f.orgid],
186
- applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
187
- paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
188
- chargeStatus: [
189
- {label: '全部', value: ''},
190
- {label: '有效', value: '有效'},
191
- {label: '作废', value: '作废'},
192
- {label: '退款', value: '退款'}
193
- ],
194
- criteriaShow: false,
195
- chargeAll: {
196
- count: 0,
197
- sum: 0
198
- },
199
- getfield: {
200
- 'f_apply_num': '工程编号',
201
- 'f_entry_name': '项目名称',
202
- 'f_contract_number': '合同编号',
203
- 'f_apply_type': '报建类型',
204
- 'f_charge_money': '收费金额',
205
- 'f_payment_method': '付款方式',
206
- 'f_charge_collectors': '收费人员',
207
- 'f_charge_date': '收费日期',
208
- 'f_charge_status': '状态'
209
- }
210
- }
211
- },
212
- ready () {
213
- // 调用查询
214
- this.search()
215
- },
216
- methods: {
217
- clear () {
218
- Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
219
- this.$refs.cp.$refs.cri.model[key] = ''
220
- })
221
- },
222
- searchCondition (args) {
223
- args.condition = args.condition + ` and cr.f_orgid = '${this.curorgid[0]}'`
224
- this.model.search(args.condition, args.model)
225
- },
226
- // 查询
227
- search () {
228
- this.$refs.cp.$refs.cri.search()
229
- this.getChargeAll()
230
- },
231
- async getChargeAll () {
232
- let http = new HttpResetClass()
233
- let data = {
234
- condition: this.model.condition,
235
- data: {
236
- orgid: this.$login.f.orgid
237
- }
238
- }
239
- let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
240
-
241
- this.chargeAll = res.data[0]
242
- },
243
- getorg (val) {
244
- if (val.length <= 0) {
245
- return
246
- }
247
- this.curorgid = val
248
- this.search()
249
- }
250
- },
251
- computed: {
252
- getCondition () {
253
- return {
254
- condition: this.$refs.cp.$refs.cri.condition,
255
- data: {
256
- orgid: this.$login.f.orgid
257
- }
258
- }
259
- }
260
- }
261
- }
262
- </script>
263
-
264
- <style scoped>
265
- </style>
1
+ <template>
2
+ <criteria-paged :model="model" v-ref:cp>
3
+ <criteria partial='criteria' @condition-changed='$parent.searchCondition' 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
+ <res-select
9
+ restype='organization'
10
+ :initresid='$parent.$parent.curorgid'
11
+ @res-select="$parent.$parent.getorg"
12
+ is-mul="false"
13
+ ></res-select>
14
+ </div>
15
+ <div class="form-group col-sm-3">
16
+ <label for="startDate" class="font_normal_body">开始时间:</label>
17
+ <datepicker id="startDate" placeholder="开始日期"
18
+ style="width: 60%!important;"
19
+ v-model="model.startDate"
20
+ :value.sync="model.startDate"
21
+ :format="'yyyy-MM-dd HH:mm:ss'"
22
+ :show-reset-button="true"
23
+ condition="cr.f_charge_date >= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
24
+ </datepicker>
25
+ </div>
26
+ <div class="form-group col-sm-3">
27
+ <label for="endDate" class="font_normal_body">结束时间:</label>
28
+ <datepicker id="endDate" placeholder="结束日期"
29
+ style="width: 60%!important;"
30
+ v-model="model.endDate"
31
+ :value.sync="model.endDate"
32
+ :format="'yyyy-MM-dd HH:mm:ss'"
33
+ :show-reset-button="true"
34
+ condition="cr.f_charge_date <= to_date('{}', 'yyyy-mm-dd hh24:mi:ss')">
35
+ </datepicker>
36
+ </div>
37
+ <div class="form-group col-sm-3 button-range">
38
+ <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
39
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
40
+ <export-excel :data="$parent.$parent.getCondition"
41
+ :field="$parent.$parent.getfield"
42
+ sqlurl="rs/logic/applyExportfile"
43
+ sql-name="getApplyCharge"
44
+ template-name='收费记录信息导出'
45
+ :choose-col="true"></export-excel>
46
+ <div
47
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
48
+ @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
49
+ class="button_spacing"
50
+ style="float: right">
51
+ </div>
52
+ </div>
53
+ </div>
54
+ <div class="row" v-show="$parent.$parent.criteriaShow">
55
+ <div class="form-group col-sm-3">
56
+ <label class="font_normal_body">工程编号:</label>
57
+ <input type="text" style="width: 60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
58
+ v-on:keyup.enter="$parent.$parent.search()"
59
+ condition="a.f_apply_num = '{}'">
60
+ </div>
61
+ <div class="form-group col-sm-3">
62
+ <label class="font_normal_body">合同编号:</label>
63
+ <input type="text" style="width: 60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
64
+ v-on:keyup.enter="$parent.$parent.search()"
65
+ condition="a.f_contract_number = '{}'">
66
+ </div>
67
+ <div class="form-group col-sm-3">
68
+ <label class="font_normal_body">流&ensp;水&ensp;号:</label>
69
+ <input type="text" style="width: 60%" class="input_search" placeholder='流水号' v-model="model.f_payer_number"
70
+ v-on:keyup.enter="$parent.$parent.search()"
71
+ condition="cr.f_payer_number = '{}'">
72
+ </div>
73
+ <div class="form-group col-sm-3">
74
+ <label class="font_normal_body">报建类型:</label>
75
+ <v-select
76
+ v-model="model.f_apply_type"
77
+ placeholder='请选择'
78
+ condition="a.f_apply_type = '{}'"
79
+ :value.sync="model.f_apply_type"
80
+ :options='$parent.$parent.applytype'
81
+ class="select select_list"
82
+ :value-single="true"
83
+ close-on-select ></v-select>
84
+ </div>
85
+ <div class="form-group col-sm-3">
86
+ <label class="font_normal_body">收费人员:</label>
87
+ <input type="text" class="input_search" style="width: 60%" placeholder='收费人员' v-model="model.f_charge_collectors"
88
+ v-on:keyup.enter="$parent.$parent.search()"
89
+ condition="cr.f_charge_collectors like '%{}%'">
90
+ </div>
91
+ <div class="form-group col-sm-3">
92
+ <label class="font_normal_body">付款方式:</label>
93
+ <v-select
94
+ v-model="model.f_payment_method"
95
+ placeholder='请选择'
96
+ condition="cr.f_payment_method = '{}'"
97
+ :value.sync="model.f_payment_method"
98
+ :options='$parent.$parent.paymentMethod'
99
+ class="select select_list"
100
+ :value-single="true"
101
+ close-on-select ></v-select>
102
+ </div>
103
+ <div class="form-group col-sm-3">
104
+ <label class="font_normal_body">缴费状态:</label>
105
+ <v-select
106
+ v-model="model.f_charge_status"
107
+ placeholder='请选择'
108
+ condition="cr.f_charge_status = '{}'"
109
+ :value.sync="model.f_charge_status"
110
+ :options='$parent.$parent.chargeStatus'
111
+ class="select select_list"
112
+ :value-single="true"
113
+ close-on-select ></v-select>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </criteria>
118
+ <data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
119
+ <template partial='head'>
120
+ <tr>
121
+ <th>序号</th>
122
+ <th>工程编号</th>
123
+ <th>合同编号</th>
124
+ <th>报建类型</th>
125
+ <th>缴费编码</th>
126
+ <th>收费金额(退款金额)</th>
127
+ <th>付款方式</th>
128
+ <th>流水号</th>
129
+ <th>收费人员(退款人员)</th>
130
+ <th>收费日期(退款日期)</th>
131
+ <th>状态</th>
132
+ </tr>
133
+ </template>
134
+ <template partial='body'>
135
+ <tr >
136
+ <td style="text-align: center;">
137
+ <nobr><font>{{$index+1}}</font></nobr>
138
+ </td>
139
+ <td style="text-align: center;">
140
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
141
+ </td>
142
+ <td style="text-align: center;">
143
+ <nobr><font>{{row.f_contract_number}}</font></nobr>
144
+ </td>
145
+ <td style="text-align: center;">
146
+ <nobr><font>{{row.f_apply_type}}</font></nobr>
147
+ </td>
148
+ <td style="text-align: center;">
149
+ <nobr><font>{{row.f_charge_number}}</font></nobr>
150
+ </td>
151
+ <td style="text-align: center;">
152
+ <nobr><font>{{row.f_charge_money}}</font></nobr>
153
+ </td>
154
+ <td style="text-align: center;">
155
+ <nobr><font>{{row.f_payment_method}}</font></nobr>
156
+ </td>
157
+ <td style="text-align: center;">
158
+ <nobr><font>{{row.f_payer_number}}</font></nobr>
159
+ </td>
160
+ <td style="text-align: center;">
161
+ <nobr><font>{{row.f_charge_collectors}}</font></nobr>
162
+ </td>
163
+ <td style="text-align: center;">
164
+ <nobr><font>{{row.f_charge_date}}</font></nobr>
165
+ </td>
166
+ <td style="text-align: center;">
167
+ <nobr><font>{{row.f_charge_status}}</font></nobr>
168
+ </td>
169
+ </tr>
170
+ </template>
171
+ </data-grid>
172
+ </criteria-paged>
173
+ </template>
174
+
175
+ <script>
176
+ import {PagedList} from 'vue-client'
177
+ import {HttpResetClass} from 'vue-client'
178
+ export default {
179
+ title: '报建收费列表',
180
+ data () {
181
+ return {
182
+ model: new PagedList('rs/sql/getApplyCharge', 30, null, {
183
+ f_charge_money: 0
184
+ }),
185
+ curorgid: [this.$login.f.orgid],
186
+ applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
187
+ paymentMethod: [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')],
188
+ chargeStatus: [
189
+ {label: '全部', value: ''},
190
+ {label: '有效', value: '有效'},
191
+ {label: '作废', value: '作废'},
192
+ {label: '退款', value: '退款'}
193
+ ],
194
+ criteriaShow: false,
195
+ chargeAll: {
196
+ count: 0,
197
+ sum: 0
198
+ },
199
+ getfield: {
200
+ 'f_apply_num': '工程编号',
201
+ 'f_entry_name': '项目名称',
202
+ 'f_contract_number': '合同编号',
203
+ 'f_apply_type': '报建类型',
204
+ 'f_charge_money': '收费金额',
205
+ 'f_payment_method': '付款方式',
206
+ 'f_charge_collectors': '收费人员',
207
+ 'f_charge_date': '收费日期',
208
+ 'f_charge_status': '状态'
209
+ }
210
+ }
211
+ },
212
+ ready () {
213
+ // 调用查询
214
+ this.search()
215
+ },
216
+ methods: {
217
+ clear () {
218
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
219
+ this.$refs.cp.$refs.cri.model[key] = ''
220
+ })
221
+ },
222
+ searchCondition (args) {
223
+ args.condition = args.condition + ` and cr.f_orgid = '${this.curorgid[0]}'`
224
+ this.model.search(args.condition, args.model)
225
+ },
226
+ // 查询
227
+ search () {
228
+ this.$refs.cp.$refs.cri.search()
229
+ this.getChargeAll()
230
+ },
231
+ async getChargeAll () {
232
+ let http = new HttpResetClass()
233
+ let data = {
234
+ condition: this.model.condition,
235
+ data: {
236
+ orgid: this.$login.f.orgid
237
+ }
238
+ }
239
+ let res = await http.load('POST', 'rs/sql/getChargeAll', {data: data}, {resolveMsg: null, rejectMsg: null})
240
+
241
+ this.chargeAll = res.data[0]
242
+ },
243
+ getorg (val) {
244
+ if (val.length <= 0) {
245
+ return
246
+ }
247
+ this.curorgid = val
248
+ this.search()
249
+ }
250
+ },
251
+ computed: {
252
+ getCondition () {
253
+ return {
254
+ condition: this.$refs.cp.$refs.cri.condition,
255
+ data: {
256
+ orgid: this.$login.f.orgid
257
+ }
258
+ }
259
+ }
260
+ }
261
+ }
262
+ </script>
263
+
264
+ <style scoped>
265
+ </style>
@@ -1,30 +1,30 @@
1
- <template>
2
- <div class="flex-row">
3
- <div class="basic-main">
4
- <div style="height: 95%">
5
- <apply-charge-list v-ref:query ></apply-charge-list>
6
- </div>
7
- <p class="bg-info text-center" style="font-size: 20px;height: 5%">
8
- 合计记录共<span style="color: red">&ensp;{{$refs.query.chargeAll.count}}&ensp;</span>笔,
9
- 合计金额<span style="color: red">&ensp;{{$refs.query.chargeAll.sum}}&ensp;</span>元
10
- </p>
11
- </div>
12
- </div>
13
- </template>
14
-
15
- <script>
16
- export default {
17
- title: '报建收费明细',
18
- data () {
19
- return {
20
- }
21
- },
22
- ready () {
23
- },
24
- methods: {
25
- }
26
- }
27
- </script>
28
-
29
- <style scoped>
30
- </style>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div class="basic-main">
4
+ <div style="height: 95%">
5
+ <apply-charge-list v-ref:query ></apply-charge-list>
6
+ </div>
7
+ <p class="bg-info text-center" style="font-size: 20px;height: 5%">
8
+ 合计记录共<span style="color: red">&ensp;{{$refs.query.chargeAll.count}}&ensp;</span>笔,
9
+ 合计金额<span style="color: red">&ensp;{{$refs.query.chargeAll.sum}}&ensp;</span>元
10
+ </p>
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ export default {
17
+ title: '报建收费明细',
18
+ data () {
19
+ return {
20
+ }
21
+ },
22
+ ready () {
23
+ },
24
+ methods: {
25
+ }
26
+ }
27
+ </script>
28
+
29
+ <style scoped>
30
+ </style>