|
@@ -286,6 +286,7 @@ const clickSelect = (select, index) => {
|
|
|
searchActive.value[select] = index;
|
|
|
if (index === -1) return;
|
|
|
page = 1;
|
|
|
+ total = -1;
|
|
|
listTable.value = [];
|
|
|
changeInput();
|
|
|
};
|
|
@@ -297,6 +298,7 @@ const changeSelect = () => {
|
|
|
const change = () => {
|
|
|
date.value = [date.value[0] + ' 00:00:00', date.value[1] + ' 23:59:59'];
|
|
|
page = 1;
|
|
|
+ total = -1;
|
|
|
listTable.value = [];
|
|
|
changeInput();
|
|
|
};
|
|
@@ -311,6 +313,7 @@ const changeInput = () => {
|
|
|
|
|
|
const search = () => {
|
|
|
page = 1;
|
|
|
+ total = -1;
|
|
|
listTable.value = [];
|
|
|
changeInput();
|
|
|
};
|
|
@@ -318,6 +321,7 @@ const search = () => {
|
|
|
const searchHot = text => {
|
|
|
searchText.value = text;
|
|
|
page = 1;
|
|
|
+ total = -1;
|
|
|
listTable.value = [];
|
|
|
changeInput();
|
|
|
};
|