Merge branch 'develop' of github.com:Frappet/bma-ehr-frontend into develop

This commit is contained in:
Kittapath 2024-01-08 15:37:48 +07:00
commit c513e5c0e9
2 changed files with 5 additions and 3 deletions

View file

@ -119,7 +119,7 @@ const getCommandDetail = async () => {
const downloadCover = async (type: string) => {
showLoader();
if (!genReportStatus) {
if (!genReportStatus.value) {
await http
.get(config.API.fileCover(code.value, type, orderId.value), {
responseType: "blob",

View file

@ -136,8 +136,10 @@ onMounted(() => {
outlined
v-model="assignedPosition"
@update:model-value="updateInput(formCommand)"
label="ต่ำแหน่งที่ได้รับ"
:rules="[(val) => !!val || `${'กรุณากรอกเจ้าของผลงาน'}`]"
label="ตำแหน่งที่ได้รับ"
:rules="[
(val) => !!val || `${'กรุณากรอกตำแหน่งที่ได้รับ'}`,
]"
lazy-rules
/>
</div>