fix bug
This commit is contained in:
parent
7361a3d903
commit
6bd6f99770
1 changed files with 2 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ const visibleColumns = ref<string[]>([
|
||||||
"commandNumber",
|
"commandNumber",
|
||||||
"commandDate",
|
"commandDate",
|
||||||
]);
|
]);
|
||||||
const files = ref<any>([]);
|
const files = ref<any>(null);
|
||||||
const pagination = ref({
|
const pagination = ref({
|
||||||
page: 1,
|
page: 1,
|
||||||
rowsPerPage: 10,
|
rowsPerPage: 10,
|
||||||
|
|
@ -254,6 +254,7 @@ function sendRecordRegistry() {
|
||||||
.get(config.API.developmentMainTab("tab6/done", id.value))
|
.get(config.API.developmentMainTab("tab6/done", id.value))
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
success($q, "ส่งข้อมูลสำเร็จ");
|
success($q, "ส่งข้อมูลสำเร็จ");
|
||||||
|
getData();
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
messageError($q, e);
|
messageError($q, e);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue