manage-client 3.2.209 → 3.2.210

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,58 @@
1
+ <template>
2
+ <div class="span" style="width: auto;">
3
+ <p class="bg-info text-center" style="padding: 8px;" >{{'地址变更记录'}}</p>
4
+ <partial-view v-ref:pv @condition-changed="search">
5
+ <criteria-paged :model="model" v-ref:paged :pager="false">
6
+ <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid >
7
+ <template partial='head'>
8
+ <tr>
9
+ <th><nobr>序号</nobr></th>
10
+ <th><nobr>变更内容</nobr></th>
11
+ <th><nobr>旧值</nobr></th>
12
+ <th><nobr>新值</nobr></th>
13
+ <th><nobr>变更人</nobr></th>
14
+ <th><nobr>变更日期</nobr></th>
15
+ </tr>
16
+ </template>
17
+ <template partial='body'>
18
+ <td style="text-align: center;">{{$index + 1}}</td>
19
+ <td style="text-align:center">{{row.f_field_name}}</td>
20
+ <td style="text-align:center">{{row.f_used_content}}</td>
21
+ <td style="text-align:center">{{row.f_new_content}}</td>
22
+ <td style="text-align:center">{{row.f_operator}}</td>
23
+ <td style="text-align:center">{{row.f_operate_date}}</td>
24
+ </template>
25
+ </data-grid>
26
+ </criteria-paged>
27
+ </partial-view>
28
+ </div>
29
+ </template>
30
+
31
+ <script>
32
+ import { PagedList } from 'vue-client'
33
+
34
+ export default {
35
+ title: '地址变更列表',
36
+ data () {
37
+ return {
38
+ model: new PagedList('rs/sql/address_singleTableOrderBy',20, {
39
+ tablename: `'t_address_change'`,items: `'*'`,
40
+ orderitem: `'f_operate_date desc'`}),
41
+ }
42
+ },
43
+ props: ['address_id'],
44
+ ready () {
45
+ this.search()
46
+ },
47
+ methods: {
48
+ search() {
49
+ this.model.search(`f_address_id = '${this.address_id}'`)
50
+ }
51
+ },
52
+ watch: {
53
+ 'address_id' () {
54
+ this.search()
55
+ }
56
+ }
57
+ }
58
+ </script>
@@ -39,7 +39,11 @@ let specialComp = {
39
39
  // 购气稽查
40
40
  'inspect-list-gas': (resolve) => { require(['./InspectListGas'], resolve) },
41
41
  // 档案合并查询
42
- 'merge-file-query': (resolve) => { require(['./MergeFileQuery.vue'], resolve) }
42
+ 'merge-file-query': (resolve) => { require(['./MergeFileQuery.vue'], resolve) },
43
+ //地址管理
44
+ 'user-address': (resolve) => { require(['./UserAddress.vue'], resolve) },
45
+ //地址变更记录
46
+ 'user-address-change': (resolve) => { require(['./UserAddressChange.vue'], resolve) },
43
47
  }
44
48
  exports.specialComp = specialComp
45
49
 
@@ -239,6 +239,9 @@
239
239
  <th>
240
240
  <nobr>收入</nobr>
241
241
  </th>
242
+ <th>
243
+ <nobr>违约金</nobr>
244
+ </th>
242
245
  <th>
243
246
  <nobr>付款方式</nobr>
244
247
  </th>
@@ -324,6 +327,9 @@
324
327
  <td style="text-align: center;">
325
328
  <nobr>{{row.f_newcurbalance}}</nobr>
326
329
  </td>
330
+ <td style="text-align: center;">
331
+ <nobr>{{row.f_old_overdue}}</nobr>
332
+ </td>
327
333
  <td style="text-align: center;">
328
334
  <nobr>{{row.f_payment}}</nobr>
329
335
  </td>
@@ -369,6 +375,9 @@
369
375
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
370
376
  应收合计:&emsp;{{sumsmodel.f_money}}
371
377
  </td>
378
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
379
+ 违约金合计:&emsp;{{sumsmodel.f_old_overdue}}
380
+ </td>
372
381
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
373
382
  收款合计:&emsp;{{sumsmodel.f_collection}}
374
383
  </td>
@@ -437,7 +446,7 @@
437
446
  data: {},
438
447
  other:[],
439
448
  footer:[],
440
- model: new PagedList('rs/sql/otherChargeQuery', 20, {}, {f_money: 0, f_collection: 0,
449
+ model: new PagedList('rs/sql/otherChargeQuery', 20, {}, {f_money: 0, f_old_overdue: 0, f_collection: 0,
441
450
  f_newbalance: 0, f_newcurbalance: 0, hushu:0}),
442
451
  criteriaShow: false,
443
452
  orgCondtionStr: '',