feat(mobile): add mobile detail page (#7993)

fix AF-1241
This commit is contained in:
pengx17
2024-08-29 16:45:22 +00:00
parent f8e6f1f2b5
commit 7ae141bd9e
22 changed files with 865 additions and 153 deletions
@@ -4,6 +4,10 @@ export function stopPropagation(event: BaseSyntheticEvent) {
event.stopPropagation();
}
export function preventDefault(event: BaseSyntheticEvent) {
event.preventDefault();
}
export function stopEvent(event: BaseSyntheticEvent) {
event.stopPropagation();
event.preventDefault();