Files
yudao-init/src/views/copilot/yield/components/ChipOutput.vue
‘937886381’ dc1667cdb7 产量和效率
2024-05-29 17:05:55 +08:00

44 lines
682 B
Vue

<!--
* @Author: zhp
* @Date: 2024-05-07 10:04:53
* @LastEditTime: 2024-05-27 16:36:29
* @LastEditors: zhp
* @Description:
-->
<template>
<DoubleRingWrapperVue data-source="芯片产出" :period="period" :than="than" />
</template>
<script>
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
export default {
name: "ChipOutput",
components: { DoubleRingWrapperVue },
props: {
period: {
type: String,
default: "日",
},
than: {
type: String,
default: "同比",
},
},
data() {
return {};
},
};
</script>
<style scoped lang="scss">
.flex-1 {
flex: 1;
}
.stretch {
align-self: stretch;
}
</style>