yudao-init/src/views/copilot/yield/components/StdOutput.vue
2024-05-29 17:05:55 +08:00

44 lines
687 B
Vue

<!--
* @Author: zhp
* @Date: 2024-05-07 10:04:53
* @LastEditTime: 2024-05-27 14:25:57
* @LastEditors: zhp
* @Description:
-->
<template>
<DoubleRingWrapperVue data-source="标准组件产出" :period="period" :than="than" />
</template>
<script>
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
export default {
name: "StdOutput",
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>