manage-client 3.3.14 → 3.3.15
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/components/sale/businessquery/OtherChargeQuery.vue +1 -1
- package/src/filiale/qianneng/QnAqzz.vue +55 -0
- package/src/filiale/qianneng/QnAqzzHmc.vue +659 -0
- package/src/filiale/qianneng/QnAqzzJfmx.vue +659 -0
- package/src/filiale/qianneng/QnAqzzXzhz.vue +586 -0
- package/src/filiale/qianneng/QnAqzzXzjwhhz.vue +600 -0
- package/src/filiale/qianneng/exportConfig.js +18 -0
- package/src/filiale/qianneng/reportManage.js +11 -0
- package/src/filiale/shanxian/OtherChargeQuery.vue +1 -1
- package/src/filiale/tongchuan/HandplanQuery.vue +1 -1
- package/src/filiale/yuansheng/DayReportList.vue +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<tab-button v-ref:list :active="-1">
|
|
3
|
+
<tabs header="加装花名册" >
|
|
4
|
+
<qn-aqzz-hmc v-if="show.includes('加装花名册')" @deal-msg="dealMsg" :data="data"></qn-aqzz-hmc>
|
|
5
|
+
</tabs>
|
|
6
|
+
<tabs header="缴费明细" >
|
|
7
|
+
<qn-aqzz-jfmx v-if="show.includes('缴费明细')" @deal-msg="dealMsg" :data="data"></qn-aqzz-jfmx>
|
|
8
|
+
</tabs>
|
|
9
|
+
<tabs header="乡镇汇总" >
|
|
10
|
+
<qn-aqzz-xzhz v-if="show.includes('乡镇汇总')" @deal-msg="dealMsg" :data="data"></qn-aqzz-xzhz>
|
|
11
|
+
</tabs>
|
|
12
|
+
<tabs header="乡镇居委会汇总" >
|
|
13
|
+
<qn-aqzz-xzjwhhz v-if="show.includes('乡镇居委会汇总')" @deal-msg="dealMsg" :data="data"></qn-aqzz-xzjwhhz>
|
|
14
|
+
</tabs>
|
|
15
|
+
</tab-button>
|
|
16
|
+
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<script>
|
|
20
|
+
import TabButton from '../../components/sale/common/TabButton'
|
|
21
|
+
import Tabs from '../../components/sale/common/Tabs'
|
|
22
|
+
|
|
23
|
+
export default {
|
|
24
|
+
title: '安全装置',
|
|
25
|
+
data () {
|
|
26
|
+
return {
|
|
27
|
+
f_start_date: '',
|
|
28
|
+
f_end_date: '',
|
|
29
|
+
listpage: true,
|
|
30
|
+
width: {
|
|
31
|
+
left: '100%',
|
|
32
|
+
right: '0%'
|
|
33
|
+
},
|
|
34
|
+
// searchNumber:'',
|
|
35
|
+
rowData: {},
|
|
36
|
+
show: []
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
components: {Tabs, TabButton},
|
|
40
|
+
methods: {
|
|
41
|
+
permission (name) {
|
|
42
|
+
if (this.$login.r.find(value => value == '安全装置')) {
|
|
43
|
+
if (!this.$login.r.find(value => value == name)) {
|
|
44
|
+
return false
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return true
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
</script>
|
|
53
|
+
|
|
54
|
+
<style scoped>
|
|
55
|
+
</style>
|