manage-client 4.0.42 → 4.0.44
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.
- package/package.json +1 -1
- package/src/filiale/bayan/OtherChargeDetailQuery.vue +74 -0
- package/src/filiale/bayan/OtherChargeQuery.vue +729 -0
- package/src/filiale/bayan/RecordInfoQuery.vue +1432 -0
- package/src/filiale/bayan/config/exportConfig.js +20 -1
- package/src/filiale/bayan/sale.js +8 -0
- package/src/filiale/meihekou/AreaGeneralQuery.vue +3 -1
- package/src/filiale/rongcheng/ChargeQuery.vue +14 -1
- package/src/filiale/xinkang/ManageBrandHouseCount.vue +23 -31
package/package.json
CHANGED
|
@@ -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>
|