แก้ไขตาม task

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-06 13:32:54 +07:00
parent bf8fb777cf
commit 90a47d43ad
26 changed files with 2652 additions and 228 deletions

View file

@ -53,7 +53,12 @@ const clickAdd = () => {
action.value = "";
radio.value = "";
if (props.actionOptio) {
actionOption.value = props.actionOptio;
props.actionOptio;
let list = props.actionOptio.map((e: any) => ({
id: e.id,
round: `รอบ ${e.round} (ฉบับวันที่ ${e.signDate})`,
}));
actionOption.value = list;
}
}
}