import { ref } from 'vue' export function useLoginView() { const username = ref('') const password = ref('') const tenant = ref('') const remember = ref(true) const showPassword = ref(false) const features = [ { title: '智能审单', desc: 'AI 自动识别票据与规则,提升准确率与处理效率', icon: 'mdi mdi-file-document-outline', tone: 'green' }, { title: '异常预警', desc: '多维风险识别与预警,主动防控报销风险', icon: 'mdi mdi-bell-outline', tone: 'red' }, { title: 'SLA 监控', desc: '实时监控服务水位,保障审批和处理时效', icon: 'mdi mdi-sync', tone: 'blue' } ] const LogoMark = { template: ` ` } return { features, LogoMark, password, remember, showPassword, tenant, username } }