af-mobile-client-vue3 1.6.8 → 1.6.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.6.8",
4
+ "version": "1.6.9",
5
5
  "packageManager": "pnpm@10.13.1",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -598,7 +598,8 @@ async function continuePageInit() {
598
598
  cancelButtonText: '只读模式',
599
599
  }).then(async () => {
600
600
  // 确认:设置入户时间,保持编辑模式
601
- onSiteDate.value = formatDate(new Date())
601
+ const dateRes: any = await runLogic('getNowDateTime', { num: 1 }, 'af-safecheck')
602
+ onSiteDate.value = dateRes?.nowDateTime || formatDate(new Date())
602
603
  if (isDraft.value === 'true' && !route.query.paperId) {
603
604
  // 获取临时保存数据
604
605
  const res = await runLogic('getDraft', { id: checkId.value }, 'af-safecheck') as any