feat(web): add SVG assets and update travel reimbursement script

- web/src/assets/header.svg: add header SVG asset
- web/src/assets/person.svg: add person SVG asset
- scripts/TravelReimbursementCreateView.js: update travel form logic
This commit is contained in:
caoxiaozhu
2026-05-12 07:23:29 +00:00
parent 4d748bcdeb
commit b1e67cc99b
3 changed files with 26 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import { computed, nextTick, onBeforeUnmount, onMounted, ref } from 'vue'
import aiAvatar from '../../assets/header.svg'
import userAvatar from '../../assets/person.svg'
import aiAvatar from '../../assets/header.svg?no-inline'
import userAvatar from '../../assets/person.svg?no-inline'
import { useSystemState } from '../../composables/useSystemState.js'
import { recognizeOcrFiles } from '../../services/ocr.js'
import { runOrchestrator } from '../../services/orchestrator.js'