apply-clients 3.4.93 → 3.4.94
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/build/dev-server.js
CHANGED
|
@@ -8,8 +8,8 @@ var compiler = webpack(config)
|
|
|
8
8
|
// var proxy = httpProxy.createProxyServer()
|
|
9
9
|
// var ldap = 'http://121.36.79.201:8400'
|
|
10
10
|
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
var ldap = 'http://
|
|
12
|
-
var applyinstall = 'http://
|
|
11
|
+
var ldap = 'http://192.168.50.4:8400'
|
|
12
|
+
var applyinstall = 'http://192.168.50.4:8400'
|
|
13
13
|
|
|
14
14
|
var proxyTable = {
|
|
15
15
|
'/rs/logic/getSaleInitData': {
|
package/package.json
CHANGED
|
@@ -209,6 +209,17 @@
|
|
|
209
209
|
:value-single="true"
|
|
210
210
|
close-on-select ></v-select>
|
|
211
211
|
</div>
|
|
212
|
+
<div class="form-group col-sm-3">
|
|
213
|
+
<label class="font_normal_body">是否确认:</label>
|
|
214
|
+
<v-select
|
|
215
|
+
v-model="model.f_confirm"
|
|
216
|
+
placeholder='请选择'
|
|
217
|
+
:value.sync="model.f_confirm"
|
|
218
|
+
class="select select_list"
|
|
219
|
+
:options='$parent.$parent.confirms'
|
|
220
|
+
:value-single="true"
|
|
221
|
+
close-on-select ></v-select>
|
|
222
|
+
</div>
|
|
212
223
|
<div class="form-group col-sm-3">
|
|
213
224
|
<label class="font_normal_body">确 认 人:</label>
|
|
214
225
|
<input type="text" style="width: 60%"
|
|
@@ -265,6 +276,7 @@
|
|
|
265
276
|
<th style="white-space: nowrap;">收费日期(退款日期)</th>
|
|
266
277
|
<th style="white-space: nowrap;">确认人</th>
|
|
267
278
|
<th style="white-space: nowrap;">确认日期</th>
|
|
279
|
+
<th style="white-space: nowrap;">备注</th>
|
|
268
280
|
<th style="white-space: nowrap;">实际收费时间</th>
|
|
269
281
|
<th style="white-space: nowrap;">状态</th>
|
|
270
282
|
</tr>
|
|
@@ -331,6 +343,9 @@
|
|
|
331
343
|
<td style="text-align: center;">
|
|
332
344
|
<nobr><font>{{row.f_confirm_date}}</font></nobr>
|
|
333
345
|
</td>
|
|
346
|
+
<td style="text-align: center;">
|
|
347
|
+
<nobr><font>{{row.f_charge_remarks}}</font></nobr>
|
|
348
|
+
</td>
|
|
334
349
|
<td style="text-align: center;">
|
|
335
350
|
<nobr><font>{{row.f_actual_date}}</font></nobr>
|
|
336
351
|
</td>
|
|
@@ -369,6 +384,11 @@ export default {
|
|
|
369
384
|
{label: '作废', value: '作废'},
|
|
370
385
|
{label: '退款', value: '退款'}
|
|
371
386
|
],
|
|
387
|
+
confirms: [
|
|
388
|
+
{label: '全部', value: ''},
|
|
389
|
+
{label: '是', value: '是'},
|
|
390
|
+
{label: '否', value: '否'}
|
|
391
|
+
],
|
|
372
392
|
criteriaShow: false,
|
|
373
393
|
chargeAll: {
|
|
374
394
|
count: 0,
|
|
@@ -392,6 +412,7 @@ export default {
|
|
|
392
412
|
'f_actual_date': '实际收费时间',
|
|
393
413
|
'f_confirm_person': '确认人',
|
|
394
414
|
'f_confirm_date': '确认时间',
|
|
415
|
+
'f_charge_remarks': '备注',
|
|
395
416
|
'f_charge_status': '状态'
|
|
396
417
|
}
|
|
397
418
|
}
|
|
@@ -459,6 +480,15 @@ export default {
|
|
|
459
480
|
if (this.curuserid.length > 0) {
|
|
460
481
|
args.condition = args.condition + ` and cr.f_charge_collectors_id in (${this.curuserid})`
|
|
461
482
|
}
|
|
483
|
+
if (args.model.f_confirm){
|
|
484
|
+
if (args.model.f_confirm == '是'){
|
|
485
|
+
args.condition = args.condition + ` and cr.f_confirm_person is not null`
|
|
486
|
+
}
|
|
487
|
+
if (args.model.f_confirm == '否'){
|
|
488
|
+
args.condition = args.condition + ` and cr.f_confirm_person is null`
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
}
|
|
462
492
|
this.model.search(args.condition, args.model)
|
|
463
493
|
},
|
|
464
494
|
// 查询
|