day.vue
869 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
a<template>
<div class="ipage-wrapper ipage-mall-day">
<ipage-option ref="ipageOption" pVal="format_day" @reportData="reportData"></ipage-option>
<component @reportEvt="reportEvt" :emitData="emitData" ref="comWrap" :is="reportVal"></component>
</div>
</template>
<script>
import ipageOption from "../common/option/option";
import dayCount from "./day_count";
import dayDetail from "./day_detail";
export default {
data() {
return {
reportVal: "",
emitData: {},
};
},
components: {
ipageOption,
count: dayCount,
detail: dayDetail,
},
watch: {},
methods: {
reportData(emitData) {
this.reportVal = emitData.radio;
this.emitData = emitData;
},
reportEvt(data) {
this.$refs.ipageOption.setOption(data);
},
},
created() {},
mounted() {},
};
</script>
<style scoped>
</style>