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

48 lines
776 B
Vue

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