48 lines
		
	
	
		
			776 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			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>
 |