@feedmepos/mf-mdm 1.6.10-beta.262 → 1.6.10-beta.263
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/dist/DeviceList-e96bd358.js +19628 -0
- package/dist/app.d.ts +20 -0
- package/dist/app.js +29 -9
- package/package.json +3 -2
- package/dist/DeviceList-8c938c2f.js +0 -3558
package/dist/app.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare const i18nMessages: {
|
|
|
17
17
|
addDevice: string;
|
|
18
18
|
forceSync: string;
|
|
19
19
|
regenerate: string;
|
|
20
|
+
export: string;
|
|
20
21
|
};
|
|
21
22
|
table: {
|
|
22
23
|
columns: {
|
|
@@ -290,6 +291,10 @@ export declare const i18nMessages: {
|
|
|
290
291
|
createError: string;
|
|
291
292
|
deleteError: string;
|
|
292
293
|
};
|
|
294
|
+
export: {
|
|
295
|
+
success: string;
|
|
296
|
+
error: string;
|
|
297
|
+
};
|
|
293
298
|
};
|
|
294
299
|
error: {
|
|
295
300
|
general: string;
|
|
@@ -313,6 +318,7 @@ export declare const i18nMessages: {
|
|
|
313
318
|
addDevice: string;
|
|
314
319
|
forceSync: string;
|
|
315
320
|
regenerate: string;
|
|
321
|
+
export: string;
|
|
316
322
|
};
|
|
317
323
|
table: {
|
|
318
324
|
columns: {
|
|
@@ -588,6 +594,10 @@ export declare const i18nMessages: {
|
|
|
588
594
|
createError: string;
|
|
589
595
|
deleteError: string;
|
|
590
596
|
};
|
|
597
|
+
export: {
|
|
598
|
+
success: string;
|
|
599
|
+
error: string;
|
|
600
|
+
};
|
|
591
601
|
};
|
|
592
602
|
error: {
|
|
593
603
|
general: string;
|
|
@@ -611,6 +621,7 @@ export declare const i18nMessages: {
|
|
|
611
621
|
addDevice: string;
|
|
612
622
|
forceSync: string;
|
|
613
623
|
regenerate: string;
|
|
624
|
+
export: string;
|
|
614
625
|
};
|
|
615
626
|
table: {
|
|
616
627
|
columns: {
|
|
@@ -884,6 +895,10 @@ export declare const i18nMessages: {
|
|
|
884
895
|
createError: string;
|
|
885
896
|
deleteError: string;
|
|
886
897
|
};
|
|
898
|
+
export: {
|
|
899
|
+
success: string;
|
|
900
|
+
error: string;
|
|
901
|
+
};
|
|
887
902
|
};
|
|
888
903
|
error: {
|
|
889
904
|
general: string;
|
|
@@ -907,6 +922,7 @@ export declare const i18nMessages: {
|
|
|
907
922
|
addDevice: string;
|
|
908
923
|
forceSync: string;
|
|
909
924
|
regenerate: string;
|
|
925
|
+
export: string;
|
|
910
926
|
};
|
|
911
927
|
table: {
|
|
912
928
|
columns: {
|
|
@@ -1182,6 +1198,10 @@ export declare const i18nMessages: {
|
|
|
1182
1198
|
createError: string;
|
|
1183
1199
|
deleteError: string;
|
|
1184
1200
|
};
|
|
1201
|
+
export: {
|
|
1202
|
+
success: string;
|
|
1203
|
+
error: string;
|
|
1204
|
+
};
|
|
1185
1205
|
};
|
|
1186
1206
|
error: {
|
|
1187
1207
|
general: string;
|
package/dist/app.js
CHANGED
|
@@ -14,7 +14,8 @@ const r = {
|
|
|
14
14
|
bindDevice: "Bind device",
|
|
15
15
|
addDevice: "Add device",
|
|
16
16
|
forceSync: "Force sync",
|
|
17
|
-
regenerate: "Regenerate"
|
|
17
|
+
regenerate: "Regenerate",
|
|
18
|
+
export: "Export"
|
|
18
19
|
},
|
|
19
20
|
table: {
|
|
20
21
|
columns: {
|
|
@@ -287,6 +288,10 @@ const r = {
|
|
|
287
288
|
refreshError: "Failed to refresh log request: {error}",
|
|
288
289
|
createError: "Failed to create log request: {error}",
|
|
289
290
|
deleteError: "Failed to delete log request: {error}"
|
|
291
|
+
},
|
|
292
|
+
export: {
|
|
293
|
+
success: "Devices exported successfully!",
|
|
294
|
+
error: "Failed to export devices: {error}"
|
|
290
295
|
}
|
|
291
296
|
},
|
|
292
297
|
error: {
|
|
@@ -309,7 +314,8 @@ const r = {
|
|
|
309
314
|
bindDevice: "ผูกอุปกรณ์",
|
|
310
315
|
addDevice: "เพิ่มอุปกรณ์",
|
|
311
316
|
forceSync: "บังคับให้ซิงค์",
|
|
312
|
-
regenerate: "สร้างรหัสใหม่"
|
|
317
|
+
regenerate: "สร้างรหัสใหม่",
|
|
318
|
+
export: "ส่งออก"
|
|
313
319
|
},
|
|
314
320
|
table: {
|
|
315
321
|
columns: {
|
|
@@ -582,15 +588,19 @@ const r = {
|
|
|
582
588
|
refreshError: "ไม่สามารถรีเฟรชคำขอบันทึกได้: {error}",
|
|
583
589
|
createError: "ไม่สามารถสร้างคำขอบันทึกได้: {error}",
|
|
584
590
|
deleteError: "ไม่สามารถลบคำขอบันทึกได้: {error}"
|
|
591
|
+
},
|
|
592
|
+
export: {
|
|
593
|
+
success: "ส่งออกอุปกรณ์สำเร็จแล้ว!",
|
|
594
|
+
error: "ไม่สามารถส่งออกอุปกรณ์: {error}"
|
|
585
595
|
}
|
|
586
596
|
},
|
|
587
597
|
error: {
|
|
588
598
|
general: "ข้อผิดพลาด: {error}",
|
|
589
599
|
getDevices: "ไม่สามารถรับอุปกรณ์ร้านอาหาร: {error}"
|
|
590
600
|
}
|
|
591
|
-
}, a = {
|
|
592
|
-
device: t
|
|
593
601
|
}, o = {
|
|
602
|
+
device: t
|
|
603
|
+
}, a = {
|
|
594
604
|
title: "设备",
|
|
595
605
|
actions: {
|
|
596
606
|
refresh: "@:common.refresh",
|
|
@@ -604,7 +614,8 @@ const r = {
|
|
|
604
614
|
bindDevice: "绑定设备",
|
|
605
615
|
addDevice: "添加设备",
|
|
606
616
|
forceSync: "强制同步",
|
|
607
|
-
regenerate: "重新生成"
|
|
617
|
+
regenerate: "重新生成",
|
|
618
|
+
export: "导出"
|
|
608
619
|
},
|
|
609
620
|
table: {
|
|
610
621
|
columns: {
|
|
@@ -879,6 +890,10 @@ const r = {
|
|
|
879
890
|
refreshError: "刷新日志请求失败:{error}",
|
|
880
891
|
createError: "创建日志请求失败:{error}",
|
|
881
892
|
deleteError: "删除日志请求失败:{error}"
|
|
893
|
+
},
|
|
894
|
+
export: {
|
|
895
|
+
success: "设备导出成功!",
|
|
896
|
+
error: "导出设备失败:{error}"
|
|
882
897
|
}
|
|
883
898
|
},
|
|
884
899
|
error: {
|
|
@@ -886,7 +901,7 @@ const r = {
|
|
|
886
901
|
getDevices: "获取餐厅设备失败:{error}"
|
|
887
902
|
}
|
|
888
903
|
}, n = {
|
|
889
|
-
device:
|
|
904
|
+
device: a
|
|
890
905
|
}, s = {
|
|
891
906
|
title: "設備",
|
|
892
907
|
actions: {
|
|
@@ -901,7 +916,8 @@ const r = {
|
|
|
901
916
|
bindDevice: "綁定設備",
|
|
902
917
|
addDevice: "添加設備",
|
|
903
918
|
forceSync: "強制同步",
|
|
904
|
-
regenerate: "重新生成"
|
|
919
|
+
regenerate: "重新生成",
|
|
920
|
+
export: "導出"
|
|
905
921
|
},
|
|
906
922
|
table: {
|
|
907
923
|
columns: {
|
|
@@ -1176,6 +1192,10 @@ const r = {
|
|
|
1176
1192
|
refreshError: "刷新日誌請求失敗:{error}",
|
|
1177
1193
|
createError: "創建日誌請求失敗:{error}",
|
|
1178
1194
|
deleteError: "刪除日誌請求失敗:{error}"
|
|
1195
|
+
},
|
|
1196
|
+
export: {
|
|
1197
|
+
success: "設備導出成功!",
|
|
1198
|
+
error: "導出設備失敗:{error}"
|
|
1179
1199
|
}
|
|
1180
1200
|
},
|
|
1181
1201
|
error: {
|
|
@@ -1188,12 +1208,12 @@ const r = {
|
|
|
1188
1208
|
{
|
|
1189
1209
|
path: "/",
|
|
1190
1210
|
name: "$devices",
|
|
1191
|
-
component: e(() => import("./DeviceList-
|
|
1211
|
+
component: e(() => import("./DeviceList-e96bd358.js"))
|
|
1192
1212
|
}
|
|
1193
1213
|
], u = {
|
|
1194
1214
|
"en-US": i,
|
|
1195
1215
|
"zh-CN": n,
|
|
1196
|
-
"th-TH":
|
|
1216
|
+
"th-TH": o,
|
|
1197
1217
|
"zh-Hant": c
|
|
1198
1218
|
}, p = e(() => import("./App-91351016.js"));
|
|
1199
1219
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-mdm",
|
|
3
|
-
"version": "1.6.10-beta.
|
|
3
|
+
"version": "1.6.10-beta.263",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"pinia": "^2.1.7",
|
|
27
27
|
"vue": "^3.5.13",
|
|
28
28
|
"vue-router": "^4.3.2",
|
|
29
|
-
"vue-i18n": "11.0.1"
|
|
29
|
+
"vue-i18n": "11.0.1",
|
|
30
|
+
"xlsx": "^0.18.5"
|
|
30
31
|
},
|
|
31
32
|
"peerDependencies": {
|
|
32
33
|
"tailwindcss": "^3.3.3"
|