manage-client 3.2.209 → 3.2.211

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.
Files changed (42) hide show
  1. package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
  2. package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
  3. package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  4. package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
  5. package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
  6. package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
  7. package/.gradle/7.1/fileChanges/last-build.bin +0 -0
  8. package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
  9. package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
  10. package/.gradle/7.1/gc.properties +0 -0
  11. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  12. package/build/dev-server.js +4 -4
  13. package/package.json +1 -1
  14. package/src/filiale/WEINAN/CancellationQuery.vue +528 -486
  15. package/src/filiale/WEINAN/ChargeQuery.vue +800 -800
  16. package/src/filiale/WEINAN/EnableQuery.vue +456 -456
  17. package/src/filiale/WEINAN/UserAddress.vue +655 -0
  18. package/src/filiale/WEINAN/UserAddressChange.vue +58 -0
  19. package/src/filiale/WEINAN/config/exportConfig.js +824 -824
  20. package/src/filiale/WEINAN/sale.js +52 -48
  21. package/src/filiale/huayin/ChangeMeterQuery.vue +657 -0
  22. package/src/filiale/huayin/ChargeQuery.vue +1305 -0
  23. package/src/filiale/huayin/config/DefaultPrint.js +6 -0
  24. package/src/filiale/huayin/config/exportConfig.js +1084 -0
  25. package/src/filiale/huayin/sale.js +8 -0
  26. package/src/filiale/qianneng/BusinessManage.vue +3 -0
  27. package/src/filiale/qianneng/OtherChargeQuery.vue +10 -1
  28. package/src/filiale/qianneng/WebHandplanQuery.vue +992 -0
  29. package/src/filiale/qianneng/WebmeterQuery.vue +67 -0
  30. package/src/filiale/qianneng/exportConfig.js +9 -1
  31. package/src/filiale/qianneng/sale.js +2 -0
  32. package/src/filiale/qianneng/webmeterManage.js +3 -1
  33. package/src/filiale/rizhao/ChargeQuery.vue +3 -3
  34. package/src/filiale/shangluo/UserQuery.vue +932 -0
  35. package/src/filiale/shangluo/sale.js +11 -0
  36. package/src/filiale/shanxian/BankManager.vue +146 -0
  37. package/src/filiale/shanxian/BussinessType.vue +137 -0
  38. package/src/filiale/shanxian/InspectListUserNew.vue +466 -0
  39. package/src/filiale/shanxian/InspectManage.vue +50 -0
  40. package/src/filiale/shanxian/reportManage.js +4 -0
  41. package/src/filiale/shanxian/sale.js +3 -1
  42. package/yarn-error.log +0 -7659
@@ -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>