af-mobile-client-vue3 1.2.3 → 1.2.4

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.2.3",
4
+ "version": "1.2.4",
5
5
  "packageManager": "pnpm@10.12.3",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -223,7 +223,7 @@ function onSubmit() {
223
223
  // 只有单表才可以成功,多表关联或者自定义sql不行
224
224
  const params = getRealKey(form.value)
225
225
  try {
226
- addOrModifyEntity(params, tableName.value, 'af-gaslink').then(() => {
226
+ addOrModifyEntity(params, tableName.value, props.serviceName || import.meta.env.VITE_APP_SYSTEM_NAME).then(() => {
227
227
  showSuccessToast('提交成功!')
228
228
  })
229
229
  }