1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="chart-container">
-
- <view class="chart-name">
- <view class="t-icon t-icon-xtubiao-3"></view>
- <text class="chart-name-text">能力分析</text>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- name:"radar-mini-chart",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .chart-container {
- border-radius: 20rpx;
- background-color: #FFFFFF;
- box-shadow: 0 4rpx 8rpx rgba(0,0,0,0.05);
- width: 340rpx;
- height: auto;
-
- .chart-name {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- width: 100%;
- margin: 20rpx 0rpx 20rpx 40rpx;
-
- .chart-name-text {
- margin: 26rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: #3B4144;
- }
- }
- }
- .t-icon{
- width: 40rpx;
- height: 40rpx;
- }
- </style>
|