1

parent a206f8f9
......@@ -219,6 +219,7 @@ let listParams = {
size: 10,
lon: 106.68650025025502,
lat: 26.567192352601154,
categoryIds: ['6'],
};
const coupon = ref([]);
const top = ref(null);
......@@ -369,6 +370,7 @@ const reset = () => {
size: 10,
lon: 106.68650025025502,
lat: 26.567192352601154,
categoryIds: ['6'],
};
shopCardData.value = {};
cardData.value = [];
......
......@@ -103,11 +103,12 @@ let total;
const paramsId = {
parentId: null,
};
const listParams = {
let listParams = {
current: 1,
size: 10,
lon: 106.68650025025502,
lat: 26.567192352601154,
categoryIds: ['6'],
};
onMounted(() => {
getMerchantList();
......@@ -162,7 +163,13 @@ const popular = (communityName) => {
};
// 重置数据
const reset = () => {
listParams.current = 1;
listParams = {
current: 1,
size: 10,
lon: 106.68650025025502,
lat: 26.567192352601154,
categoryIds: ['6'],
};
cardData.value = [];
show.value = false;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment