manage-client 3.2.215 → 3.2.217

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 (31) 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 +193 -191
  13. package/package.json +1 -1
  14. package/src/components/sale/filesquery/MeterQuery.vue +607 -627
  15. package/src/filiale/WEINAN/CancellationQuery.vue +526 -526
  16. package/src/filiale/WEINAN/ChargeQuery.vue +800 -800
  17. package/src/filiale/WEINAN/EnableQuery.vue +456 -456
  18. package/src/filiale/WEINAN/StatisticalAnalysis.vue +270 -0
  19. package/src/filiale/WEINAN/UserAddress.vue +655 -655
  20. package/src/filiale/WEINAN/UserAddressChange.vue +58 -58
  21. package/src/filiale/WEINAN/config/exportConfig.js +824 -824
  22. package/src/filiale/WEINAN/sale.js +54 -52
  23. package/src/filiale/jingwei/ChargeQuery.vue +10 -0
  24. package/src/filiale/wuhai/ChargeQuery.vue +2 -2
  25. package/src/filiale/wuhai/OtherChargeQuery.vue +5 -2
  26. package/src/filiale/wuhai/ReportList.vue +26 -2
  27. package/src/filiale/wuhai/config/DefaultPrint.js +6 -0
  28. package/src/filiale/wuhai/config/exportConfig.js +1090 -0
  29. package/src/filiale/wuhai/config/tableConfig.js +54 -0
  30. package/src/filiale/wuhai/webmeterManage.js +1 -1
  31. package/src/main.js +66 -66
@@ -1,58 +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>
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>