diff --git a/packages-user/client-modules/src/render/ui/save.tsx b/packages-user/client-modules/src/render/ui/save.tsx index cb4a7ed..0e9151a 100644 --- a/packages-user/client-modules/src/render/ui/save.tsx +++ b/packages-user/client-modules/src/render/ui/save.tsx @@ -128,23 +128,23 @@ export const Save = defineComponent( emitSave(pageCap * currPage + pickIndex.value); }) .realize('exit', exit) - .realize('save_exit', exit) + .realize('@save_exit', exit) .realize( - 'save_pageUp', + '@save_pageUp', () => { pageRef.value?.movePage(1); }, { type: 'down-repeat' } ) .realize( - 'save_pageDown', + '@save_pageDown', () => { pageRef.value?.movePage(-1); }, { type: 'down-repeat' } ) .realize( - 'save_up', + '@save_up', () => { if (pickIndex.value >= row) pickIndex.value -= column; else { @@ -155,7 +155,7 @@ export const Save = defineComponent( { type: 'down-repeat' } ) .realize( - 'save_down', + '@save_down', () => { if (pickIndex.value <= pageCap - row) pickIndex.value += column; @@ -167,7 +167,7 @@ export const Save = defineComponent( { type: 'down-repeat' } ) .realize( - 'save_left', + '@save_left', () => { if (pickIndex.value > 0) pickIndex.value--; else { @@ -178,7 +178,7 @@ export const Save = defineComponent( { type: 'down-repeat' } ) .realize( - 'save_right', + '@save_right', () => { if (pickIndex.value < pageCap) pickIndex.value++; else {