feat: 增加获取商品详情
This commit is contained in:
parent
af428323e1
commit
48db1232af
20
index.html
20
index.html
|
@ -126,12 +126,6 @@
|
|||
}, 1500);
|
||||
};
|
||||
|
||||
|
||||
// 获取商品列表
|
||||
const getGoodsList = () => {
|
||||
|
||||
}
|
||||
|
||||
// 获取用户信息
|
||||
const getUserInfo = () => {
|
||||
try {
|
||||
|
@ -148,7 +142,19 @@
|
|||
} catch (err) {
|
||||
console.log("err =>", err);
|
||||
}
|
||||
}
|
||||
|
||||
// 获取商品列表
|
||||
const getGoodsList = () => {
|
||||
try {
|
||||
req.axiosGet("/front/homeData", {
|
||||
token: state.token
|
||||
}).then(res => {
|
||||
console.log("goods =>", res)
|
||||
})
|
||||
} catch (err) {
|
||||
console.log("err =>", err);
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
|
@ -160,8 +166,10 @@
|
|||
localStorage.setItem("yl_token", token);
|
||||
|
||||
state.showPage = true;
|
||||
getGoodsList();
|
||||
return
|
||||
getUserInfo();
|
||||
|
||||
} else {
|
||||
openToast("未登录");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue