@@ -20,6 +20,7 @@
"js-md5": "^0.8.3",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
+ "screenfull": "^6.0.2",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
@@ -0,0 +1,13 @@
+import { http } from '@/utils/http'
+
+// 形状知觉测试结果保存
+const saveEggRecord = '/record/saveEggRecord'
+//首页API
+export const saveEggRecordApi = (val: any) => {
+ return http<any>({
+ method: 'post',
+ url: saveEggRecord,
+ data: val
+ })
+}