apply-clients 3.5.6-13 → 3.5.6-15
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/filiale/yangchunboneng/android/AppOtherChargeList.vue +281 -0
- package/src/filiale/yangchunboneng/android.js +2 -1
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +622 -612
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +36 -1
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +30 -3
package/package.json
CHANGED
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
|
|
5
|
+
<div partial>
|
|
6
|
+
<form>
|
|
7
|
+
<div class="row app-row">
|
|
8
|
+
<div class="col-xs-4">
|
|
9
|
+
<label for="f_plan_name" class="font text-left">用户编号:</label>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col-xs-8">
|
|
12
|
+
<input type="text" class="search_input input-font" v-model="model.f_userinfo_code"
|
|
13
|
+
condition="f_userinfo_code = '{}'">
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="row app-row">
|
|
17
|
+
<div class="col-xs-4">
|
|
18
|
+
<label for="f_plan_name" class="font text-left">用户名称:</label>
|
|
19
|
+
</div>
|
|
20
|
+
<div class="col-xs-8">
|
|
21
|
+
<input type="text" class="search_input input-font" v-model="model.f_user_name"
|
|
22
|
+
condition="f_user_name like '%{}%'">
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="row app-row">
|
|
26
|
+
<div class="col-xs-4">
|
|
27
|
+
<label for="f_plan_name" class="font text-left">用户电话:</label>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-xs-8">
|
|
30
|
+
<input type="text" class="search_input input-font"
|
|
31
|
+
v-model=model.f_user_phone
|
|
32
|
+
condition="f_user_phone like '%{}%'">
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="row app-row">
|
|
36
|
+
<div class="col-xs-4">
|
|
37
|
+
<label for="f_plan_name" class="font text-left">用户地址:</label>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="col-xs-8">
|
|
40
|
+
<input type="text" class="search_input input-font"
|
|
41
|
+
v-model=model.f_address
|
|
42
|
+
condition="f_address like '%{}%'">
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="row app-row">
|
|
46
|
+
<div class="col-xs-4">
|
|
47
|
+
<label for="f_brand_spec" class="font text-left">收费项目:</label>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="col-xs-8">
|
|
50
|
+
<v-select id="checker" :value.sync="model.f_brand_spec" class="input-font"
|
|
51
|
+
:width="'60%'"
|
|
52
|
+
:options='$parent.$parent.brandspecs' placeholder='收费项目'
|
|
53
|
+
:value-single="true"
|
|
54
|
+
condition="f_brand_spec like '%{}%'"
|
|
55
|
+
v-model="model.f_brand_spec"
|
|
56
|
+
close-on-select
|
|
57
|
+
clear-button></v-select>
|
|
58
|
+
<!-- <input type="text" class="search_input input-font"
|
|
59
|
+
v-model=model.f_brand_spec
|
|
60
|
+
condition="f_brand_spec like '%{}%'">-->
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
<div class="row app-row">
|
|
64
|
+
<div class="col-xs-4">
|
|
65
|
+
<label for="f_payment" class="font text-left">付款方式:</label>
|
|
66
|
+
</div>
|
|
67
|
+
<div class="col-xs-8">
|
|
68
|
+
<v-select id="checker" :value.sync="model.f_payment" class="input-font"
|
|
69
|
+
:width="'60%'"
|
|
70
|
+
:options='$parent.$parent.payments' placeholder='付款方式'
|
|
71
|
+
:value-single="true"
|
|
72
|
+
condition="f_payment like '%{}%'"
|
|
73
|
+
v-model="model.f_payment"
|
|
74
|
+
close-on-select
|
|
75
|
+
clear-button></v-select>
|
|
76
|
+
<!-- <input type="text" class="search_input input-font"
|
|
77
|
+
v-model=model.f_payment
|
|
78
|
+
condition="f_payment like '%{}%'">-->
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
<div class="row app-row">
|
|
82
|
+
<div class="col-xs-4">
|
|
83
|
+
<label for="f_state" class="font text-left">收费状态:</label>
|
|
84
|
+
</div>
|
|
85
|
+
<div class="col-xs-8">
|
|
86
|
+
<v-select id="checker" :value.sync="model.f_state" class="input-font"
|
|
87
|
+
:width="'60%'"
|
|
88
|
+
:options='$parent.$parent.states' placeholder='收费状态'
|
|
89
|
+
:value-single="true"
|
|
90
|
+
condition="f_state ='{}'"
|
|
91
|
+
v-model="model.f_state"
|
|
92
|
+
close-on-select
|
|
93
|
+
clear-button></v-select>
|
|
94
|
+
</div>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="row app-row">
|
|
97
|
+
<div class="col-xs-4">
|
|
98
|
+
<label for="f_plan_name" class="font text-left">开始时间:</label>
|
|
99
|
+
</div>
|
|
100
|
+
<div class="col-xs-8">
|
|
101
|
+
<datepicker
|
|
102
|
+
:value.sync="model.startDate"
|
|
103
|
+
:format="'yyyy-MM-dd'"
|
|
104
|
+
v-model="model.startDate"
|
|
105
|
+
:isUp="true"
|
|
106
|
+
condition="f_operate_date >= '{} 00:00:00'"
|
|
107
|
+
:show-reset-button="reset" placeholder="开始时间">
|
|
108
|
+
</datepicker>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
<div class="row app-row">
|
|
112
|
+
<div class="col-xs-4">
|
|
113
|
+
<label for="f_plan_name" class="font text-left">结束时间:</label>
|
|
114
|
+
</div>
|
|
115
|
+
<div class="col-xs-8">
|
|
116
|
+
<datepicker
|
|
117
|
+
:value.sync="model.endDate"
|
|
118
|
+
:format="'yyyy-MM-dd'"
|
|
119
|
+
v-model="model.endDate"
|
|
120
|
+
:isUp="true"
|
|
121
|
+
condition="f_operate_date <= '{} 23:59:59'"
|
|
122
|
+
:show-reset-button="reset" placeholder="结束时间">
|
|
123
|
+
</datepicker>
|
|
124
|
+
</div>
|
|
125
|
+
</div>
|
|
126
|
+
<div class="row app-row">
|
|
127
|
+
<div class="col-xs-4">
|
|
128
|
+
<label for="f_plan_name" class="font text-left">收费人员:</label>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="col-xs-8">
|
|
131
|
+
<input type="text" class="search_input input-font" v-model="model.f_operator"
|
|
132
|
+
condition="f_operator = '{}'">
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
<div class="row app-row" >
|
|
136
|
+
<div class="col-xs-6" style="text-align: center">
|
|
137
|
+
<span class="font text-left">合计户数:{{$parent.model.count}}</span>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="col-xs-6" style="text-align: center">
|
|
140
|
+
<span class="font text-left">合计金额:{{$parent.model.sums.f_money}}</span>
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
<div class="row text-center app-row" >
|
|
144
|
+
<button type="button" class="btn btn-lg btn-font btn-color" style="width: 45%;" @click="search()">查询</button>
|
|
145
|
+
</div>
|
|
146
|
+
</form>
|
|
147
|
+
</div>
|
|
148
|
+
|
|
149
|
+
</criteria>
|
|
150
|
+
<list :model="model" partial='list'>
|
|
151
|
+
<div partial>
|
|
152
|
+
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
|
153
|
+
<div class="panel-body panel-self">
|
|
154
|
+
<div class="row">
|
|
155
|
+
<p class="panel-title col-xs-3 text-left font">用户编号:</p>
|
|
156
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_userinfo_code }}</p>
|
|
157
|
+
</div>
|
|
158
|
+
<div class="row">
|
|
159
|
+
<p class="panel-title col-xs-3 text-left font">用户姓名:</p>
|
|
160
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_user_name }}</p>
|
|
161
|
+
</div>
|
|
162
|
+
<div class="row">
|
|
163
|
+
<p class="panel-title col-xs-3 text-left font">用户电话:</p>
|
|
164
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_user_phone }}</p>
|
|
165
|
+
</div>
|
|
166
|
+
<div class="row">
|
|
167
|
+
<p class="panel-title col-xs-3 text-left font">用户地址:</p>
|
|
168
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_address }}</p>
|
|
169
|
+
</div>
|
|
170
|
+
<div class="row">
|
|
171
|
+
<p class="panel-title col-xs-3 text-left font">用户类型:</p>
|
|
172
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_user_type }}</p>
|
|
173
|
+
</div>
|
|
174
|
+
<div class="row">
|
|
175
|
+
<p class="panel-title col-xs-3 text-left font">收费金额</p>
|
|
176
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_money }}</p>
|
|
177
|
+
</div>
|
|
178
|
+
<div class="row">
|
|
179
|
+
<p class="panel-title col-xs-3 text-left font">收费项目</p>
|
|
180
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_brand_spec }}</p>
|
|
181
|
+
</div>
|
|
182
|
+
<div class="row">
|
|
183
|
+
<p class="panel-title col-xs-3 text-left font">付款方式</p>
|
|
184
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_payment }}</p>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="row">
|
|
187
|
+
<p class="panel-title col-xs-3 text-left font">收费人员</p>
|
|
188
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_operator }}</p>
|
|
189
|
+
</div>
|
|
190
|
+
<div class="row">
|
|
191
|
+
<p class="panel-title col-xs-3 text-left font">收费日期</p>
|
|
192
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_operate_date }}</p>
|
|
193
|
+
</div>
|
|
194
|
+
<div class="row">
|
|
195
|
+
<p class="panel-title col-xs-3 text-left font">收费状态</p>
|
|
196
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_state }}</p>
|
|
197
|
+
</div>
|
|
198
|
+
<div class="row">
|
|
199
|
+
<p class="panel-title col-xs-3 text-left font">确认人</p>
|
|
200
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_confirm_person }}</p>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="row">
|
|
203
|
+
<p class="panel-title col-xs-3 text-left font">确认时间</p>
|
|
204
|
+
<p class="panel-title col-xs-9 text-left input-font">{{ row.f_confirm_date }}</p>
|
|
205
|
+
</div>
|
|
206
|
+
</div>
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
</list>
|
|
210
|
+
</criteria-paged>
|
|
211
|
+
</div>
|
|
212
|
+
</template>
|
|
213
|
+
|
|
214
|
+
<script>
|
|
215
|
+
|
|
216
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
217
|
+
import Vue from 'vue'
|
|
218
|
+
import * as Util from "../../../components/Util";
|
|
219
|
+
|
|
220
|
+
export default {
|
|
221
|
+
title: '其他收费明细',
|
|
222
|
+
data () {
|
|
223
|
+
return {
|
|
224
|
+
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/applyotherChargeQuery`,
|
|
225
|
+
10, {
|
|
226
|
+
orderitem: '`f_operate_date DESC`'
|
|
227
|
+
},{f_money:''}
|
|
228
|
+
),
|
|
229
|
+
states:[{'label':'全部','value':''},{'label':'有效','value':'有效'},{'label':'无效','value':'无效'},{'label':'冲正','value':'冲正'},{'label':'撤销','value':'撤销'}],
|
|
230
|
+
payments:this.$appdata.getParam('付款方式查询')?[{label:'全部',value:''}, ...this.$appdata.getParam('付款方式查询')]:[{label:'全部',value:''}],
|
|
231
|
+
brandspecs:this.$appdata.getParam('手机端其他收费查询')?[{label:'全部',value:''}, ...this.$appdata.getParam('手机端其他收费查询')]:[{label:'全部',value:''}]
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
ready () {
|
|
235
|
+
this.$refs.paged.$refs.cri.model.startDate=`${Util.toStandardYearMonth()}-01`
|
|
236
|
+
this.$refs.paged.$refs.cri.model.endDate=Util.toStartAndEndDateString()[1]
|
|
237
|
+
this.$refs.paged.$refs.cri.search()
|
|
238
|
+
},
|
|
239
|
+
methods: {
|
|
240
|
+
async selfSearch (args) {
|
|
241
|
+
args.condition = args.condition + ` and f_orgid = '${Vue.user.orgid}'`
|
|
242
|
+
this.model.search(args.condition, args.model,args.condValueStr)
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
}
|
|
247
|
+
</script>
|
|
248
|
+
<style>
|
|
249
|
+
.app-row {
|
|
250
|
+
background-color: white;
|
|
251
|
+
padding: 10px 10px 0 10px;
|
|
252
|
+
border-bottom: 1px solid rgba(235, 235, 235, 0.5);
|
|
253
|
+
}
|
|
254
|
+
.search_input {
|
|
255
|
+
border: 0;
|
|
256
|
+
outline: none;
|
|
257
|
+
}
|
|
258
|
+
.font{
|
|
259
|
+
font: 15px PingFang-SC-Medium;
|
|
260
|
+
color: #666666;
|
|
261
|
+
}
|
|
262
|
+
.input-font{
|
|
263
|
+
font: 15px PingFang-SC-Medium;
|
|
264
|
+
color: #333333;
|
|
265
|
+
}
|
|
266
|
+
.btn-font{
|
|
267
|
+
font:600 16px PingFang-SC-Bold;
|
|
268
|
+
color: #499EDF;
|
|
269
|
+
}
|
|
270
|
+
.btn-color{
|
|
271
|
+
background-color: #FFFFFF;
|
|
272
|
+
border-radius: 10px ;
|
|
273
|
+
border: 1px solid #499EDF;
|
|
274
|
+
}
|
|
275
|
+
.panel-self{
|
|
276
|
+
border-radius: 10px;
|
|
277
|
+
border:1px solid #499EDF;
|
|
278
|
+
background-color: #F8F8F8;
|
|
279
|
+
}
|
|
280
|
+
</style>
|
|
281
|
+
|
|
@@ -15,7 +15,8 @@ let specialComp = {
|
|
|
15
15
|
'app-supervisory-cart': (resolve) => { require(['./android/AppSupervisoryCart'], resolve) },
|
|
16
16
|
'app-contract-charge': (resolve) => { require(['./android/AppContractCharge'], resolve) },
|
|
17
17
|
'app-upload': (resolve) => { require(['./android/AppUpload'], resolve) },
|
|
18
|
-
'app-process-supervisory': (resolve) => { require(['./android/AppProcessSupervisory'], resolve) }
|
|
18
|
+
'app-process-supervisory': (resolve) => { require(['./android/AppProcessSupervisory'], resolve) },
|
|
19
|
+
'app-other-charge-list': (resolve) => { require(['./android/AppOtherChargeList.vue'], resolve) }
|
|
19
20
|
|
|
20
21
|
}
|
|
21
22
|
exports.specialComp = specialComp
|