year.vue
994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
a<template>
<div class="ipage-wrapper ipage-mall-year">
<ipage-option ref="ipageOption" pVal="floor_year" @reportData="reportData"></ipage-option>
<component @reportEvt="reportEvt" :emitData="emitData" ref="comWrap" :is="reportVal"></component>
</div>
</template>
<script>
import ipageOption from '../common/option/option';
import yearCount from './year_count';
import yearDetail from './year_detail';
export default {
data() {
return {
reportVal:'',
emitData:{}
}
},
components: {
ipageOption,
count:yearCount,
detail:yearDetail
},
watch: {
},
methods: {
reportData(emitData){
this.reportVal = emitData.radio;
this.emitData = emitData;
},
reportEvt(data){
this.$refs.ipageOption.setOption(data);
}
},
created() {
},
mounted() {
}
}
</script>
<style scoped>
</style>