From 2191b6011fdab3b76344fc2447b8b6aaa972b6c1 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期四, 07 八月 2025 15:48:09 +0800
Subject: [PATCH] 加入完整日志
---
src/stores/StoresConfing.ts | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/stores/StoresConfing.ts b/src/stores/StoresConfing.ts
index f671846..641fa35 100644
--- a/src/stores/StoresConfing.ts
+++ b/src/stores/StoresConfing.ts
@@ -2,7 +2,9 @@
import { ref } from 'vue'
export const confingInfoStore =defineStore('confingInfo',()=>{
const confingInfo=ref({
+ clientCode:"",//客户端编号
isLanFace:false,//内网版
+ faceType:"百度",//人脸识别类型 baidu 阿里云
faceApi:'',
screenTimeout: 150,
// 启用人脸识别
@@ -52,12 +54,15 @@
confingInfo.value=info
// 给默认值
if(info.BobaoJg===undefined){
- confingInfo.value.BobaoJg=4
+ confingInfo.value.BobaoJg=10
}
//
if(info.isLanFace===undefined){
confingInfo.value.isLanFace=false
}
+ if(info.faceType===undefined){
+ confingInfo.value.faceType="阿里云"
+ }
}
return {confingInfo,setconfingInfo}
})
\ No newline at end of file
--
Gitblit v1.8.0