manage-client 3.3.192 → 3.3.194

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 (30) hide show
  1. package/build/dev-server.js +193 -190
  2. package/package.json +2 -2
  3. package/src/components/sale/businessquery/ArrearsQuery.vue +6 -0
  4. package/src/components/webmeter/newwebmeter/WebhandMonthGas.vue +3 -3
  5. package/src/filiale/jingyang/ChargeQuery.vue +1435 -0
  6. package/src/filiale/jingyang/config/DefaultPrint.js +6 -0
  7. package/src/filiale/jingyang/config/exportConfig.js +2776 -0
  8. package/src/filiale/jingyang/config/tableConfig.js +58 -0
  9. package/src/filiale/jingyang/sale.js +2 -0
  10. package/src/filiale/meihekou/YingShouMingXi.vue +1 -1
  11. package/src/filiale/taizhoukesi/config/exportConfig.js +521 -188
  12. package/src/filiale/yangchun/OtherChargeDetailQuery.vue +74 -0
  13. package/src/filiale/yangchun/OtherChargeQuery.vue +755 -0
  14. package/src/filiale/yangchun/config/exportConfig.js +1 -2
  15. package/src/filiale/yangchun/sale.js +4 -0
  16. package/src/filiale/yuncheng/LostContactAnalysisList.vue +3 -5
  17. package/src/filiale/yuncheng/config/exportConfig.js +2058 -598
  18. package/src/main.js +76 -68
  19. package/.gradle/7.4/checksums/checksums.lock +0 -0
  20. package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
  21. package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
  22. package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
  23. package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
  24. package/.gradle/7.4/fileChanges/last-build.bin +0 -0
  25. package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
  26. package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
  27. package/.gradle/7.4/gc.properties +0 -0
  28. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  29. package/.gradle/file-system.probe +0 -0
  30. package/.gradle/vcs-1/gc.properties +0 -0
@@ -0,0 +1,74 @@
1
+ <template >
2
+ <div class="flex">
3
+ <div class="height:auto">
4
+ <criteria-paged :model="model" v-ref:paged >
5
+ <criteria partial='criteria' v-ref:criteria @condition-changed='$parent.search'>
6
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
7
+
8
+ </div>
9
+ </criteria>
10
+ <data-grid :model="model" class="list_area table_sy" partial='list' v-ref:grid>
11
+ <template partial='head'>
12
+ <tr>
13
+ <th><nobr>序号</nobr></th>
14
+ <th><nobr>收费类型</nobr></th>
15
+ <th><nobr>规格</nobr></th>
16
+ <th><nobr>型号</nobr></th>
17
+ <th><nobr>数量</nobr></th>
18
+ <th><nobr>单价</nobr></th>
19
+ <th><nobr>价格</nobr></th>
20
+ </tr>
21
+ </template>
22
+ <template partial='body' partial='list' v-ref:grid>
23
+ <tr >
24
+ <td style="text-align:center;">{{$index+1}}</td>
25
+ <th style="text-align:center">{{row.f_brand_spec}}</th>
26
+ <th style="text-align:center">{{row.f_typename}}</th>
27
+ <th style="text-align:center">{{row.f_typenumber}}</th>
28
+ <th style="text-align:center">{{row.f_number}}</th>
29
+ <th style="text-align:center">{{row.f_unitprice}}</th>
30
+ <th style="text-align:center">{{(row.f_number-0)*(row.f_unitprice-0)}}</th>
31
+ </tr>
32
+ </template>
33
+ <template partial='foot'></template>
34
+ </data-grid>
35
+ </criteria-paged>
36
+
37
+ </div>
38
+
39
+ </div>
40
+
41
+ </template>
42
+
43
+ <script>
44
+ import {PagedList} from 'vue-client'
45
+
46
+ export default {
47
+ title: '抄表',
48
+
49
+ data () {
50
+ return {
51
+ condition: '1=1',
52
+ model: new PagedList('api/af-revenue/sql/manage_singleTable', 20,{
53
+ tablename: `'t_othercharge_detail'`,
54
+ items: '`*`',
55
+ orderitem: '`id`'
56
+
57
+ })
58
+
59
+ }
60
+ },
61
+ props:['otherchargeid'],
62
+ ready() {
63
+ this.$refs.paged.$refs.criteria.search()
64
+ },
65
+ methods: {
66
+ search() {
67
+ console.log(`f_othercharge_id='${this.otherchargeid}'`)
68
+ this.condition=`f_othercharge_id='${this.otherchargeid}'`
69
+ this.model.search(this.condition, this.model)
70
+ }
71
+
72
+ }
73
+ }
74
+ </script>