|
129 | 129 | <script setup lang="ts"> |
130 | 130 | import { useApplicationListStore } from "@/stores/applicationList"; |
131 | 131 | import { useUserListStore } from "@/stores/userList"; |
| 132 | +import { getStateLabel } from "@/use/stateColor"; |
132 | 133 | import { storeToRefs } from "pinia"; |
133 | 134 | import { onMounted, reactive, ref } from "vue"; |
134 | 135 | import { useDisplay } from "vuetify"; |
@@ -159,11 +160,11 @@ const type_items = [ |
159 | 160 | ]; |
160 | 161 |
|
161 | 162 | const state_items = [ |
162 | | - { state: "submitted", jpn: "提出済み" }, |
163 | | - { state: "rejected", jpn: "却下" }, |
164 | | - { state: "fix_required", jpn: "要修正" }, |
165 | | - { state: "accepted", jpn: "払い戻し待ち" }, |
166 | | - { state: "fully_repaid", jpn: "払い戻し完了" } |
| 163 | + { state: "submitted", jpn: getStateLabel("submitted") }, |
| 164 | + { state: "rejected", jpn: getStateLabel("rejected") }, |
| 165 | + { state: "fix_required", jpn: getStateLabel("fix_required") }, |
| 166 | + { state: "accepted", jpn: getStateLabel("accepted") }, |
| 167 | + { state: "fully_repaid", jpn: getStateLabel("fully_repaid") } |
167 | 168 | ]; |
168 | 169 |
|
169 | 170 | const header = { |
|
0 commit comments