44 lines
		
	
	
		
			682 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			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>
 |