27 lines
368 B
Vue
27 lines
368 B
Vue
<template>
|
|
<span>
|
|
{{
|
|
injectData.shiftSustainedNum +
|
|
(injectDatashiftSustainedType
|
|
? ['', '日', '周', '月', '季'][injectDatashiftSustainedType]
|
|
: '')
|
|
}}
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
injectData: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
created() {},
|
|
methods: {},
|
|
};
|
|
</script>
|