This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --- 設定區 (請修改這裡) --- | |
| const CONFIG = { | |
| // 你的 Google Gemini API Key (AIza開頭) | |
| GEMINI_API_KEY: PropertiesService.getScriptProperties().getProperty('GEMINI_API_KEY'), | |
| // "Inbox" 資料夾 ID (待處理) | |
| SOURCE_FOLDER_ID: '1wxxxxxxxxxxxxxxx', | |
| // "Archived" 資料夾 ID (處理完後移動到這) | |
| DEST_FOLDER_ID: '1xalAqaIxxxxxxxxAqu6', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <main class="jx-main-content"> | |
| <div class="container-fluid"> | |
| <AnnualSearch v-model="selectedData" @search="search" @reset="resetSearch"></AnnualSearch> | |
| <!-- <AnnualList @paginationData="paginationData"></AnnualList> --> | |
| <!-- <div class="jx-board" > | |
| <div class="jx-board-header jx-board-header-sticky"> | |
| <a | |
| v-if="canEditPermission" | |
| href="javascript:;" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <ModalDialog | |
| :id="'confirm-password-modal'" | |
| :title="'重設密碼'" | |
| :text-body="''" | |
| @submit="submitConfirmPassword" | |
| > | |
| <template #modal-body> | |
| <div v-if="!isDiscardChangePassword"> | |
| <p>恭喜完成密碼重新設定</p> |