apply-clients 3.1.224 → 3.1.225
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.
- package/package.json +1 -1
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +265 -265
- package/src/components/product/Order/OrderApplyList.vue +252 -268
- package/src/components/product/Process/ExplorationSelect.vue +374 -374
- package/src/components/product/Supervisory/SupervisoryList.vue +253 -253
package/package.json
CHANGED
|
@@ -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 >=
|
|
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 <=
|
|
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">流 水 号:</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 >= '{}'">
|
|
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 <= '{}'">
|
|
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">流 水 号:</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>
|