2 커밋 d9ec2796d4 ... 777862fc28

작성자 SHA1 메시지 날짜
  lixiangrui 777862fc28 feat: 个人画像 1 개월 전
  lixiangrui af9fe4fbb0 feat: 个人画像 1 개월 전
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 3 3
      src/views/portraitManagement/employeeProfile/index.vue
  2. 2 2
      vite.config.js

+ 3 - 3
src/views/portraitManagement/employeeProfile/index.vue

@@ -536,7 +536,7 @@ const examScoreStyle = (score) => {
536 536
 }
537 537
 
538 538
 const radarColor = computed(() => {
539
-  return { line: '#EEBE7C',  fill: 'rgba(246, 238, 202, 0.8)', label: '#000' }
539
+  return { line: '#EEBE7C',  fill: 'rgba(246, 238, 202, 1)', label: '#000' }
540 540
 })
541 541
 
542 542
 const tipRef = ref(null)
@@ -553,9 +553,9 @@ const initChart = () => {
553 553
       indicator: dims.map(d => ({ name: d.name + '\n\n' + d.score, max: 100 })),
554 554
       center: ['50%', '52%'],
555 555
       radius: '65%',
556
-      splitNumber: 7,
556
+      splitNumber: 8,
557 557
       axisLine: { lineStyle: { color: '#ccc' } },
558
-      splitLine: { lineStyle: { color: ['#fe4322', '#fe4322', '#fe4322', '#fe4322', '#fe4322', '#fe4322', '#28ABE2', '#8EC742'], width: 3  } },
558
+      splitLine: { lineStyle: { color: ['#ccc', '#ccc', '#ccc', '#ccc', '#ccc', '#ccc', '#fe4322', '#8EC742', '#ccc'], width: 3  } },
559 559
       splitArea: { show: false },
560 560
       axisName: {
561 561
         color: '#000',

+ 2 - 2
vite.config.js

@@ -2,8 +2,8 @@ import { defineConfig, loadEnv } from 'vite'
2 2
 import path from 'path'
3 3
 import createVitePlugins from './vite/plugins'
4 4
 
5
-// const baseUrl = 'http://localhost:8088' // 后端接口
6
-const baseUrl = 'http://airport.samsundot.com:9035/prod-api'
5
+const baseUrl = 'http://localhost:8088' // 后端接口
6
+// const baseUrl = 'http://airport.samsundot.com:9035/prod-api'
7 7
 // https://vitejs.dev/config/
8 8
 export default defineConfig(({ mode, command }) => {
9 9
   const env = loadEnv(mode, process.cwd())