diff --git a/src/api/18_command/api.command.ts b/src/api/18_command/api.command.ts index c9e8621b6..5ac4d9740 100644 --- a/src/api/18_command/api.command.ts +++ b/src/api/18_command/api.command.ts @@ -1,6 +1,7 @@ import env from "../index"; const command = `${env.API_URI}/org/command`; +const commandSalary = `${env.API_URI}/org/commandSalary`; export default { commandType: `${command}Type/list`, //ประเภทคำสั่ง @@ -8,4 +9,6 @@ export default { command, //สร้างคำสั่ง commandAction: (commandId: string, type: string) => `${command}/${type}/${commandId}`, + + commandSalaryList:(command:string)=>`${commandSalary}/list&commandSysId=${command}` }; diff --git a/src/modules/18_command/components/Step/1_Detail.vue b/src/modules/18_command/components/Step/1_Detail.vue index 10a453642..6bcdc97b3 100644 --- a/src/modules/18_command/components/Step/1_Detail.vue +++ b/src/modules/18_command/components/Step/1_Detail.vue @@ -1,8 +1,8 @@