เพิ่มแสดงเงินค่าตอบแทนพิเศษ

This commit is contained in:
setthawutttty 2024-12-06 17:15:02 +07:00
parent 4ab2c5e139
commit 1fc8c41554
8 changed files with 63 additions and 9 deletions

View file

@ -7,7 +7,7 @@ export const useCommandDetail = defineStore("commandDetailStore", () => {
const readonly = ref<boolean>(false);
const dataCommand = ref<FormDataDetail>();
const status = ref<string>("");
const isSalary = ref<boolean>(false)
function checkStep(val: string) {
status.value = val;
switch (val) {
@ -39,5 +39,6 @@ export const useCommandDetail = defineStore("commandDetailStore", () => {
readonly,
status,
dataCommand,
isSalary
};
});