2024-04-18 17:01:10 +08:00
|
|
|
<!--
|
|
|
|
filename: ChipOutput.vue
|
|
|
|
author: liubin
|
|
|
|
date: 2024-04-17 09:55:12
|
|
|
|
description:
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
2024-04-26 11:23:40 +08:00
|
|
|
<DoubleRingWrapperVue data-source="芯片产出" :period="period" />
|
2024-04-18 17:01:10 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-04-28 14:54:54 +08:00
|
|
|
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
|
2024-04-18 17:01:10 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "ChipOutput",
|
|
|
|
components: { DoubleRingWrapperVue },
|
2024-04-25 14:55:23 +08:00
|
|
|
props: {
|
|
|
|
period: {
|
|
|
|
type: String,
|
|
|
|
default: "日",
|
|
|
|
},
|
|
|
|
},
|
2024-04-18 17:01:10 +08:00
|
|
|
data() {
|
2024-04-26 11:23:40 +08:00
|
|
|
return {};
|
2024-04-18 17:01:10 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.flex-1 {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stretch {
|
|
|
|
align-self: stretch;
|
|
|
|
}
|
|
|
|
</style>
|