af-mobile-client-vue3 1.5.92 → 1.5.93

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.5.92",
4
+ "version": "1.5.93",
5
5
  "packageManager": "pnpm@10.13.1",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -86,6 +86,8 @@ const safeCheckPaperId = ref(null)
86
86
  const draftType = ref(null)
87
87
  // 调用时传入的额外数据 会存储在paper表的f_data字段中
88
88
  const extData = ref(null)
89
+ // 小程序id
90
+ const miniProgramId = ref(null)
89
91
 
90
92
  // 派单部门列表
91
93
  const dispatchDeptList = ref(null)
@@ -438,6 +440,7 @@ onBeforeMount(() => {
438
440
  safeCheckPaperId.value = route.query.paperId as string
439
441
  // 临时保存类型
440
442
  draftType.value = route.query.draftType as string
443
+ miniProgramId.value = route.query.miniProgramId as string
441
444
  // 将路由中的extData参数存储到安检单的f_data中
442
445
  try {
443
446
  const ext = JSON.parse(route.query.extData as string)
@@ -1316,6 +1319,7 @@ function organizeSubmitData() {
1316
1319
  bonusData: route?.query?.bonusData ? JSON.parse(route.query.bonusData as any) : {},
1317
1320
  draftType: draftType.value,
1318
1321
  changeTableId: safecheckStore.getChangeTableId(),
1322
+ miniProgramId: miniProgramId.value,
1319
1323
  }
1320
1324
  }
1321
1325