apply-clients 5.0.35-45 → 5.0.35-48

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.
@@ -0,0 +1,589 @@
1
+ <template>
2
+ <div class="d1">
3
+ <div class="left col-sm-12">
4
+ <criteria-paged :model="model" v-ref:cp>
5
+ <criteria partial='criteria' @condition-changed='search' v-ref:cri style="padding: 20px;background-color: #f6f6f6;">
6
+ <form novalidate class="" partial>
7
+ <div class="col-sm-12">
8
+ <div class="col-sm-2">
9
+ <label class="col-sm-4 control-label">联&nbsp;&nbsp;系&nbsp;人</label>
10
+ <div class="col-sm-8">
11
+ <input type="text" class="form-control" placeholder='联系人' v-model="model.f_user_name"
12
+ v-on:keyup.enter="search"
13
+ condition="f_user_name like '{}%'">
14
+ </div>
15
+ </div>
16
+ <div class="col-sm-2">
17
+ <label class="col-sm-4 control-label">工程编号</label>
18
+ <div class="col-sm-8">
19
+ <input type="text" class="form-control" :options="$parent.$parent.fapplytype" placeholder='报建编号' v-model="model.f_apply_num"
20
+ v-on:keyup.enter="search"
21
+ condition="f_apply_num like '{}%'">
22
+ </div>
23
+ </div>
24
+ <div class="col-sm-2">
25
+ <label class="col-sm-4 control-label">报装地址</label>
26
+ <div class="col-sm-8">
27
+ <input type="text" class="form-control" placeholder='用户地址' v-model="model.f_address"
28
+ v-on:keyup.enter="search"
29
+ condition="f_address like '{}%'">
30
+ </div>
31
+ </div>
32
+ <div class="col-sm-3 " style="width:30%">
33
+ <button class="btn btn-primary btn-sm width-80" type="button" @click="$parent.$parent.searchNow(),$parent.$parent.close()" style="margin-left:5%">
34
+ <span class="glyphicon glyphicon-search"></span>{{$parent.$parent.button_name}}
35
+ </button>
36
+ <button class="btn-primary btn btn-sm" @click.prevent="$parent.$parent.clear()">清空</button>
37
+ <button class="btn btn-primary btn-sm" type="button" v-show="$parent.$parent.startFlowonce"
38
+ @click="$parent.$parent.addactive('踏勘、建立工程编号')">
39
+ <span class="glyphicon glyphicon-plus" ></span>新增流程
40
+ </button>
41
+ </div>
42
+
43
+
44
+ </div>
45
+ <div class="col-sm-12 " style="margin-top:5px">
46
+ <div class="col-sm-2 ">
47
+ <label for="startDate" class="col-sm-4 control-label">开始日期</label>
48
+ <div class="col-sm-8">
49
+ <datepicker @change="$dispatch('setQueryCondition',model)" id="startDate" placeholder="开始日期"
50
+ style="display: block;"
51
+ v-model="model.startDate"
52
+ :value.sync="model.startDate"
53
+ :format="'yyyy-MM-dd HH:mm:ss'"
54
+ :show-reset-button="true"
55
+ condition="f_apply_date >= '{}'">
56
+ </datepicker>
57
+ </div>
58
+ </div>
59
+
60
+ <div class="col-sm-2 ">
61
+ <label for="startDate" class="col-sm-4 control-label">终止日期</label>
62
+ <div class="col-sm-8">
63
+ <datepicker @change="$dispatch('setQueryCondition',model)" id="endDate" placeholder="终止日期"
64
+ style="display: block;"
65
+ v-model="model.endDate"
66
+ :value.sync="model.endDate"
67
+ :format="'yyyy-MM-dd HH:mm:ss'"
68
+ :show-reset-button="true"
69
+ condition="f_apply_date <= '{}'">
70
+ </datepicker>
71
+ </div>
72
+
73
+ </div>
74
+ <div class="col-sm-2">
75
+ <label class="col-sm-4 control-label">流程状态</label>
76
+ <div class="col-sm-8">
77
+ <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="$parent.$parent.alloptions"
78
+ condition="defname = '{}'" placeholder='流程状态'
79
+ v-model="model.defname" :value.sync="model.defname" close-on-select>
80
+ </v-select>
81
+ </div>
82
+ </div>
83
+
84
+ <div class="col-sm-2" style="float: left">
85
+ <label class="col-sm-4 control-label">报装来源</label>
86
+ <div class="col-sm-8">
87
+ <v-select style="min-width: 100%;" @change="$dispatch('setQueryCondition',model)" :options="[{label:'全部',value:''},{label:'燃气系统',value:'燃气系统'},{label:'住建局',value:'住建局'}]"
88
+ condition="f_apply_source = '{}'" placeholder='报装来源'
89
+ v-model="model.f_apply_source" :value.sync="model.f_apply_source" close-on-select>
90
+ </v-select>
91
+ </div>
92
+ </div>
93
+
94
+
95
+
96
+ </div>
97
+ <div class="col-sm-12 " style="margin-top:5px">
98
+ <div class="col-sm-2">
99
+ <label class="col-sm-4 control-label ">用户类型</label>
100
+ <div class="col-sm-8">
101
+ <v-select :options="$parent.$parent.usertype" placeholder='用户类型' condition="f_user_type like '{}'"
102
+ :width="100" style="width:100%"
103
+ v-model="model.f_user_type" :value.sync="model.f_user_type" close-on-select>
104
+ </v-select>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+
110
+ <!--<div class="col-sm-1">-->
111
+ <!--<button class="btn btn-primary btn-sm" type="button" @click="$parent.$parent.modify()"><span-->
112
+ <!--class="glyphicon glyphicon-plus"></span>改装登记-->
113
+ <!--</button>-->
114
+ <!--</div>-->
115
+ <!--</div>-->
116
+
117
+ </form>
118
+ </criteria>
119
+ <data-grid :model="model" partial='list' v-ref:grid class="data-grid" is-fixed='false' style="overflow-x:auto">
120
+ <template partial='head'>
121
+ <tr class="title">
122
+ <th>
123
+ <nobr>序号</nobr>
124
+ </th>
125
+ <th>
126
+ <nobr>来源</nobr>
127
+ </th>
128
+ <th>
129
+ <nobr>当前状态</nobr>
130
+ </th>
131
+ <th>
132
+ <nobr>工程编号</nobr>
133
+ </th>
134
+ <th>
135
+ <nobr>业务类型</nobr>
136
+ </th>
137
+ <th>
138
+ <nobr>联系人</nobr>
139
+ </th>
140
+ <th>
141
+ <nobr>用户类型</nobr>
142
+ </th>
143
+ <th>
144
+ <nobr>电话</nobr>
145
+ </th>
146
+ <th>
147
+ <nobr>地址</nobr>
148
+ </th>
149
+ <th>
150
+ <nobr>流程状态</nobr>
151
+ </th>
152
+ <th>
153
+ <nobr>报建类型</nobr>
154
+ </th>
155
+ <th>
156
+ <nobr>报建日期</nobr>
157
+ </th>
158
+ <th>
159
+ <nobr>操作</nobr>
160
+ </th>
161
+ </tr>
162
+ </template>
163
+ <template partial='body'>
164
+ <tr >
165
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
166
+ <nobr><font>{{$index+1}}</font></nobr>
167
+ </td>
168
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
169
+ <nobr><font>{{row.f_apply_source}}</font></nobr>
170
+ </td>
171
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
172
+ <nobr><font>{{row.f_sub_state!='完工' ? '未完工' :'完工'}}</font></nobr>
173
+ </td>
174
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
175
+ <nobr><font>{{row.f_apply_num}}</font></nobr>
176
+ </td>
177
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
178
+ <nobr><font>{{row.f_work_type}}</font></nobr>
179
+ </td>
180
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
181
+ <nobr><font>{{row.f_user_name}}</font></nobr>
182
+ </td>
183
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
184
+ <nobr><font>{{row.f_user_type}}</font></nobr>
185
+ </td>
186
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
187
+ <nobr><font>{{row.f_phone}}</font></nobr>
188
+ </td>
189
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
190
+ <nobr><font>{{row.f_address}}</font></nobr>
191
+ </td>
192
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
193
+ <nobr><font>{{row.defname}}</font></nobr>
194
+ </td>
195
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
196
+ <nobr><font>{{row.f_apply_type}}</font></nobr>
197
+ </td>
198
+ <td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
199
+ <nobr><font>{{row.f_apply_date}}</font></nobr>
200
+ </td>
201
+ <td style="text-align: center;">
202
+ <dropdown v-if="row.defname != '完工'">
203
+ <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
204
+ <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
205
+ </button>
206
+ <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
207
+ <li>
208
+ <a href="#" @click="$parent.$parent.$parent.check(row)">{{row.defname}}</a>
209
+ </li>
210
+ </ul>
211
+ </dropdown>
212
+ </td>
213
+ </tr>
214
+ </template>
215
+ </data-grid>
216
+ </criteria-paged>
217
+ </div>
218
+ <modal :show.sync="showstopinfoflag" v-ref:modal backdrop="false">
219
+ <header slot="modal-header" class="modal-header">
220
+ <button type="button" class="close" @click="closestopinfo"><span>&times;</span></button>
221
+ <h4 class="modal-title">督办信息</h4>
222
+ </header>
223
+ <article slot="modal-body" class="modal-body">
224
+ <p >{{stopremarks}}</p>
225
+ </article>
226
+ <footer slot="modal-footer" class="modal-footer">
227
+ </footer>
228
+ </modal>
229
+ </div>
230
+ </template>
231
+ <script>
232
+ import * as Util from '../../Util'
233
+ import Vue from 'vue'
234
+ import {
235
+ PagedList
236
+ } from 'vue-client'
237
+ import getNowDate from '../../getNowDate.js'
238
+ import {HttpResetClass} from 'vue-client'
239
+ export default {
240
+ title: '勘探详情',
241
+ data() {
242
+ return {
243
+ timer: null,
244
+ timer1:null,
245
+ remindTime:5,//超时提醒时间
246
+ isOverNum:0,//报建是否提醒过
247
+ model: new PagedList('rs/sql/checkuser', 20, {
248
+ data: {
249
+ id: this.$login.f.id,
250
+ fengongsi: this.$login.f.f_fengongsi
251
+ }
252
+ }),
253
+ fapplytype: this.$appdata.getParam('用户类型'),
254
+ applytype: this.$appdata.getParam('报建类型'),
255
+ department: this.$appdata.getParam('受理部门'),
256
+ derection: this.$appdata.getParam('方向'),
257
+ containt: this.$appdata.getParam('工作内容'),
258
+ condition: '',
259
+ select: '',
260
+ alloptions:[],
261
+ button_name:"查询",
262
+ showstopinfoflag:false,
263
+ stopremarks:"",
264
+ startFlowonce:true,
265
+ usertype: this.$appdata.getParam('用户类型'),
266
+ }
267
+ },
268
+ compiled(){
269
+ console.log("开始判断")
270
+ },
271
+ async ready() {
272
+ this.eachFind();
273
+ this.$refs.cp.$refs.cri.model.startDate = Util.toStandardDateString() + ' 00:00:00'
274
+ this.$refs.cp.$refs.cri.model.endDate = Util.toStandardDateString() + ' 23:59:59'
275
+ await this.getConfig()
276
+ let str='报建语音提醒时间'
277
+ this.$refs.cp.$refs.cri.search()
278
+ str='超时提前提醒时间'
279
+ this.loadSingleValue(str)
280
+ let self = this
281
+ //判断用户是否有权限
282
+ this.checkUserOperator();
283
+ },
284
+ methods: {
285
+ //清空 查询条件项
286
+ clear(){
287
+ Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
288
+ this.$refs.cp.$refs.cri.model[key] = []
289
+ })
290
+ },
291
+ checkUserOperator(){
292
+ if(this.$login.r.find(value => value == '踏勘、建立工程编号')){
293
+ this.startFlowonce=true;
294
+ }
295
+ },
296
+ stopinfoshow(index){
297
+ this.showstopinfoflag = true;
298
+ let remakrs = this.model.rows[index].f_surpervise_info;
299
+ console.log(JSON.stringify(remakrs))
300
+ console.log(remakrs)
301
+
302
+ this.stopremarks= remakrs;
303
+ },
304
+ closestopinfo(){
305
+ this.showstopinfoflag = close;
306
+ },
307
+ getapplyName(str){
308
+ console.log("开始获取所有名")
309
+ console.log(JSON.stringify(str.activitys))
310
+ let param = [];
311
+ // let workflow = JSON.parse(str);
312
+ param.push({label:"全部",value:""})
313
+ str.activitys.forEach(function(item){
314
+ let title = item.title;
315
+ console.log(title)
316
+ param.push({label:title,value:title});
317
+ })
318
+ this.alloptions = param;
319
+
320
+ },
321
+ generateUUID() {
322
+ var d = new Date().getTime()
323
+ var uuid = 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
324
+ var r = (d + Math.random() * 16) % 16 | 0
325
+ d = Math.floor(d / 16)
326
+ return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16)
327
+ })
328
+ return uuid
329
+ },
330
+ searchNow(){
331
+ if(this.button_name == "返回"){
332
+ this.button_name ="查询";
333
+ }
334
+ this.$refs.cp.$refs.cri.search()
335
+ this.eachFind()
336
+ },
337
+ async getConfig(){
338
+ let http = new HttpResetClass()
339
+ await http.load('POST','rs/logic/ApplyGetConfigs', {data:this.$login.f}, {resolveMsg: null, rejectMsg: null}
340
+ ).then((res)=>{
341
+ if(res.data.code && res.data.code == 200){
342
+ Vue.workflow_vue = Vue.prototype.$workflow_vue = res.data.workflow_vue
343
+ console.log("$workflow_vue===>"+JSON.stringify(this.$workflow_vue))
344
+ this.getapplyName(this.$workflow_vue);
345
+ }else{
346
+ this.$showMessage('获取报建配置失败,原因:' + res.data.msg)
347
+ return
348
+ }
349
+ })
350
+
351
+ },
352
+ async addactive(modify) {
353
+ this.button_name ="返回"
354
+ //await this.getConfig()
355
+ this.$workflow_vue.start_activity = modify
356
+ let http = new HttpResetClass()
357
+ let res = await http.load('POST','rs/logic/ApplyGetProcessID',{data:{filename:this.$workflow_vue.workflow_xmlfilename,start_activity:this.$workflow_vue.start_activity}}, {resolveMsg: null, rejectMsg: '获取流程ID失败,请联系开发人员'})
358
+ this.$refs.cp.pager = false
359
+ let val = {
360
+ defname: this.$workflow_vue.start_activity,
361
+ f_process_id: res.data.f_process_id,
362
+ f_apply_date: Util.toStandardTimeString(),
363
+ f_apply_num: this.generateUUID(),
364
+ f_apply_operator_telephone: this.$login.f.f_fgsdianhua
365
+ }
366
+ // // 如果是改装,将modify装入val
367
+ // if(modify){
368
+ // modify.f_customer_type = '个人'
369
+ // modify.f_apply_type = '改装登记'
370
+ // modify.f_phone = modify.f_user_phone
371
+ // let temp = modify.f_residential_area
372
+ // modify.f_residential_area = modify.f_area
373
+ // modify.f_area = temp
374
+ // Object.assign(val,modify)
375
+ // }
376
+
377
+ console.log(112 + JSON.stringify(this.$login.f.f_apply_department))
378
+ this.$dispatch('check', val)
379
+ this.$dispatch('changeheight')
380
+ this.$dispatch('addactive')
381
+ },
382
+ // 改装申请
383
+ modify(){
384
+ // 调出改装申请界面
385
+ this.$parent.show = false
386
+ }
387
+ ,
388
+ check(val) {
389
+ this.button_name="返回"
390
+ // if(val.defname.includes("派单")){
391
+ // if(val.f_unaccounts_money && parseInt(val.f_unaccounts_money)!=0){
392
+ // this.$showAlert('当前用户金额未结余!!!', 'warning', 3000)
393
+ // this.button_name ="查询";
394
+ // return;
395
+ // }
396
+ // }
397
+ console.log("当前qqqq的数据",val.f_process_id)
398
+ this.$dispatch('check', val)
399
+ this.$dispatch('addactive')
400
+ }
401
+ ,
402
+ close() {
403
+ this.$dispatch('close')
404
+ }
405
+ ,
406
+ compare(val) {
407
+ val === '完工'
408
+ console.log('完工', val)
409
+ return false
410
+ },
411
+ // 获取数据
412
+ loadSingleValue(str) {
413
+ let http = new HttpResetClass()
414
+ let data = {
415
+ singlename: str,
416
+ //预先提醒时间
417
+
418
+ }
419
+ http.load('POST', 'rs/sql/findsingle', {data: data}, {resolveMsg: null, rejectMsg: '获取语音提醒时间失败'}).then((res) => {
420
+ console.log('-----------------进去之前-----------'+JSON.stringify(res))
421
+ let flag1=false
422
+ let flag2=false
423
+ if (res.data.length==0){
424
+ flag1=true
425
+ console.log('没有单值'+flag1)
426
+ flag2=false
427
+ }else if (res.data[0].value==0) {
428
+ flag2=true
429
+ console.log('为0')
430
+ flag1=false
431
+ }else{
432
+ if (str==='报建语音提醒时间'){
433
+ this.remindTime = res.data[0].value
434
+ }
435
+ console.log('为'+res.data[0].value)
436
+ flag1=false
437
+ flag2=false
438
+ }
439
+
440
+ if (this.isOverNum==0){
441
+ if (flag1){
442
+ console.log('不启动定时器')
443
+
444
+ }else if (flag2) {
445
+ console.log('启动定时器out')
446
+ this.setOut()
447
+ }else{
448
+ console.log('启动定时器timer和out')
449
+ this.setTimer()
450
+ this.setOut()
451
+ }
452
+ this.isOverNum++;
453
+ } else{
454
+ this.isOverNum=0;
455
+ }
456
+
457
+
458
+ },(res)=>{
459
+ //响应错误回调
460
+ console.log('响应错误')
461
+ })
462
+
463
+ },
464
+ setTimer() {
465
+ if(this.timer == null) {
466
+ this.timer = setInterval( () => {
467
+ console.log('开始定时...每过5秒执行一次')
468
+ this.$refs.cp.$refs.cri.search()
469
+ console.log('数据已刷新')
470
+ this.eachFind()
471
+ console.log('eachfind完毕');
472
+ }, 60*1000*this.remindTime)
473
+ }
474
+ },
475
+ setOut() {
476
+ if(this.timer1 == null) {
477
+ this.timer1 = setTimeout( () => {
478
+ console.log('开始setTimeout')
479
+ this.eachFind()
480
+ console.log('setTimeout完毕');
481
+ }, 1000)
482
+ }
483
+ },
484
+ //语音提醒
485
+ speckText(str) {
486
+ var url= "http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=6&text=" + encodeURI(str);
487
+ new Audio(url).play();
488
+
489
+ },
490
+
491
+ eachFind() {
492
+ debugger
493
+ let arr = this.$refs.cp.$refs.grid.model.rows
494
+ let overNumString1=''
495
+ let flagNum1=1
496
+ let dbflag = 1
497
+ let dbinfo = []
498
+ let hourfals = 0
499
+ let hourstr = ''
500
+ for(let val of arr) {
501
+ if(val.f_surpervise_type){
502
+ dbflag = dbflag+1
503
+ dbinfo.push(val.f_user_name)
504
+ }
505
+ if(val.ishourover =='1'){
506
+ hourfals += 1
507
+ hourstr+=hourfals+'条'
508
+ }
509
+ console.log(val.isbeforeover)
510
+ if (val.isbeforeover==='预期提醒'){
511
+ console.log('flagNUm:'+flagNum1);
512
+ if (flagNum1==1){
513
+ overNumString1=flagNum1+'条'
514
+ flagNum1=flagNum1+1
515
+ }else{
516
+ overNumString1=overNumString1+'和第'+flagNum1+'条'
517
+ flagNum1=flagNum1+1
518
+ }
519
+ }
520
+ }
521
+ debugger
522
+ if(hourfals!=0){
523
+ debugger
524
+ this.speckText('请注意:第:'+overNumString1+'数据一小时后过期')
525
+ this.$showMessage("请注意:第:" + overNumString1 + "数据一小时后过期")
526
+ }
527
+ if (flagNum1!=1){
528
+ console.log(overNumString1);
529
+ this.speckText('请注意:第:'+overNumString1+'数据即将过期')
530
+ this.$showMessage("请注意:第:" + overNumString1 + "数据即将过期")
531
+ }
532
+ if(dbflag !=1){
533
+ this.speckText('请注意: 您有'+dbflag-1+'条数据被督办')
534
+ this.$showMessage("用户:"+dbinfo.join(",")+"需要紧急处理!!")
535
+ }
536
+ console.log('语音播放完毕');
537
+ }
538
+ },
539
+ created: function() {
540
+ clearInterval(this.timer)
541
+ clearInterval(this.timer1)
542
+ this.timer = null
543
+ this.timer1 = null
544
+ },
545
+ beforeDestroy() {
546
+ clearInterval(this.timer)
547
+ clearInterval(this.timer1)
548
+ this.timer = null
549
+ this.timer1 = null
550
+ },
551
+ computed: {
552
+ date() {
553
+ return getNowDate()
554
+ }
555
+ ,
556
+ selected() {
557
+ return this.$refs.cp.$refs.grid.selected
558
+ }
559
+ }
560
+ }
561
+ </script>
562
+ <style scoped>
563
+ label {
564
+ display: flex;
565
+ justify-content:center;
566
+ align-items:Center;
567
+ padding-top: 8px;
568
+ }
569
+ tr.title {
570
+ background-color: #6666ff;
571
+ }
572
+ td{
573
+ text-align: center;
574
+ }
575
+ /* .active{
576
+ color: Crimson;
577
+ }
578
+ .p{
579
+ color: green;
580
+ }*/
581
+
582
+ .p1 {
583
+ color: #dc0b12;
584
+ font-weight:bold
585
+ }
586
+ .p {
587
+ color: #ffaf4f;
588
+ }
589
+ </style>
@@ -180,7 +180,7 @@
180
180
  <div class="flex" style="height: 10%">
181
181
  <div novalidate class="form-inline auto" partial>
182
182
  <p class="bg-info text-center" style="padding: 8px;font-size: 20px">合计收费记录共
183
- <span style="color: red">{{modeluse.rows.length}}</span>笔,合计收费金额<span style="color: red">{{price.rows[0].f_charge_money}}</span>元,
183
+ <span style="color: red">{{modeluse.rows.length}}</span>笔,
184
184
  合计应缴总金额<span style="color: red">{{price.rows[0].f_total_cost}}</span>元,
185
185
  已缴<span style="color: red">{{price.rows[0].f_cumulative_money}}</span>元,未缴<span style="color: red">{{price.rows[0].f_unaccounts_money}}</span>元
186
186
  </p>