radar-mini-chart.vue 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="chart-container">
  3. <view class="chart-name">
  4. <view class="t-icon t-icon-xtubiao-3"></view>
  5. <text class="chart-name-text">能力分析</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name:"radar-mini-chart",
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .chart-container {
  20. border-radius: 20rpx;
  21. background-color: #FFFFFF;
  22. box-shadow: 0 4rpx 8rpx rgba(0,0,0,0.05);
  23. width: 340rpx;
  24. height: auto;
  25. .chart-name {
  26. display: flex;
  27. align-items: center;
  28. justify-content: flex-start;
  29. width: 100%;
  30. margin: 20rpx 0rpx 20rpx 40rpx;
  31. .chart-name-text {
  32. margin: 26rpx;
  33. font-size: 30rpx;
  34. font-weight: bold;
  35. color: #3B4144;
  36. }
  37. }
  38. }
  39. .t-icon{
  40. width: 40rpx;
  41. height: 40rpx;
  42. }
  43. </style>