|
|
@@ -97,7 +97,7 @@ import md5 from "md5";
|
|
|
import api from "../../apis/fetch";
|
|
|
|
|
|
let currentPage = ref(1);
|
|
|
-let term = ref();
|
|
|
+let term = ref("");
|
|
|
let tableData = ref();
|
|
|
let total = ref();
|
|
|
async function getBlockChainList() {
|
|
|
@@ -107,7 +107,6 @@ async function getBlockChainList() {
|
|
|
size: 10,
|
|
|
term: term.value,
|
|
|
});
|
|
|
- term.value = "";
|
|
|
if (res.data.status == 0) {
|
|
|
tableData.value = res.data.result;
|
|
|
total.value = res.data.total;
|