sale-client 3.6.74 → 3.6.75
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
CHANGED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<!-- <div v-if="listpage">-->
|
|
3
|
+
<tab-button v-ref:list>
|
|
4
|
+
<tabs header="物联网表调价补差">
|
|
5
|
+
<price-adjustment-webmeter @deal-msg="dealMsg"></price-adjustment-webmeter>
|
|
6
|
+
</tabs>
|
|
7
|
+
<tabs header="机表调价补差">
|
|
8
|
+
<price-adjustment @deal-msg="dealMsg"></price-adjustment>
|
|
9
|
+
</tabs>
|
|
10
|
+
<tabs header="卡表调价补差">
|
|
11
|
+
<price-adjustment-card v-if="show[1]" @deal-msg="dealMsg"></price-adjustment-card>
|
|
12
|
+
</tabs>
|
|
13
|
+
<tabs header="记录调价补差">
|
|
14
|
+
<price-adjustment-selling @deal-msg="dealMsg"></price-adjustment-selling>
|
|
15
|
+
</tabs>
|
|
16
|
+
</tab-button>
|
|
17
|
+
<!-- </div>-->
|
|
18
|
+
<!-- <div v-if="!listpage">-->
|
|
19
|
+
<!-- <meter-info-manage :row="rowData" :f_start_date="f_start_date" :f_end_date="f_end_date"></meter-info-manage>-->
|
|
20
|
+
<!-- </div>-->
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<script>
|
|
24
|
+
import TabButton from '../../components/revenue/comprehen/SpecialUser/common/TabButton'
|
|
25
|
+
import Tabs from '../../components/revenue/comprehen/SpecialUser/common/Tabs'
|
|
26
|
+
|
|
27
|
+
export default {
|
|
28
|
+
name: 'PriceAdjustmentManage',
|
|
29
|
+
title: '调价补差管理',
|
|
30
|
+
data () {
|
|
31
|
+
return {// 页面开关
|
|
32
|
+
f_start_date: '',
|
|
33
|
+
f_end_date: '',
|
|
34
|
+
listpage: true,
|
|
35
|
+
width: {
|
|
36
|
+
left: '100%',
|
|
37
|
+
right: '0%'
|
|
38
|
+
},
|
|
39
|
+
// searchNumber:'',
|
|
40
|
+
rowData: {},
|
|
41
|
+
show: [true]
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
components: {Tabs, TabButton},
|
|
45
|
+
ready () {
|
|
46
|
+
console.log(this.$refs.list)
|
|
47
|
+
console.log('业务查询')
|
|
48
|
+
},
|
|
49
|
+
methods: {
|
|
50
|
+
cancel (obj) {
|
|
51
|
+
this.listpage = true
|
|
52
|
+
},
|
|
53
|
+
dealMsg (obj) {
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
</script>
|
|
58
|
+
|
|
59
|
+
<style scoped>
|
|
60
|
+
|
|
61
|
+
</style>
|
|
@@ -43,4 +43,5 @@ export default function () {
|
|
|
43
43
|
Vue.component('gas-price-list', (resolve) => { require(['./comprehen/StairPrice/GasPriceList'], resolve) })
|
|
44
44
|
// 操作历史
|
|
45
45
|
Vue.component('card-list', (resolve) => { require(['./CardList'], resolve) })
|
|
46
|
+
Vue.component('price-adjustment-manage', (resolve) => { require(['./PriceAdjustmentManage'], resolve) })
|
|
46
47
|
}
|