Merge branch 'nice_dev' into develop

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-07 13:20:56 +07:00
commit a542dbe2c7

View file

@ -70,6 +70,7 @@ const getRequest = async () => {
.get(config.API.requestDocNote(props.roundId as string))
.then((res: any) => {
const data = res.data.result;
rows2.value = [];
data.map((item: TypeData) => {
rows2.value.push({
fileName: item.fileName,
@ -140,6 +141,7 @@ const save = () => {
label="ไฟล์เอกสาร"
hide-bottom-space
lazy-rules
accept=".pdf"
>
<template v-slot:prepend>
<q-icon name="attach_file" color="primary" />
@ -169,7 +171,13 @@ const save = () => {
/>
</div>
<div class="col-xs-12 col-sm-1 flex justify-end">
<q-btn dense class="full-width" label="บันทึก" @click="save" color="public">
<q-btn
dense
class="full-width"
label="บันทึก"
@click="save"
color="public"
>
<q-tooltip>นท</q-tooltip></q-btn
>
</div>