|
|
@@ -97,7 +97,7 @@ const handleHideAll = () => {
|
|
|
if (showActionBar.value) isActiveHide.value = !isActiveHide.value;
|
|
|
const updateList = {
|
|
|
id: chooseId.value,
|
|
|
- hide: true,
|
|
|
+ isHide: true,
|
|
|
};
|
|
|
updateDefaultTableData(updateList).then(() => {
|
|
|
getTableData();
|
|
|
@@ -174,6 +174,7 @@ const handleCopyToShow = () => {
|
|
|
setTimeout(function () {
|
|
|
isActiveCopy.value = !isActiveCopy.value;
|
|
|
}, 1000);
|
|
|
+ handleSelectNone();
|
|
|
})
|
|
|
};
|
|
|
|
|
|
@@ -204,7 +205,7 @@ const handleShow = (row) => {
|
|
|
const tempHide = row.isHide === false ? true : false;
|
|
|
const updateList = {
|
|
|
id: [row.id],
|
|
|
- hide: tempHide,
|
|
|
+ isHide: tempHide,
|
|
|
};
|
|
|
updateDefaultTableData(updateList).then(() => {
|
|
|
getTableData();
|