|
@@ -48,10 +48,12 @@ const assembly = (styles: HotStylesRaw, list: HotsRaw) => {
|
|
|
};
|
|
|
|
|
|
export const requestData = async () => {
|
|
|
- const [ohots, ostyles] = await Promise.all([
|
|
|
- axios.get(URL.hotlist),
|
|
|
- axios.get(URL.stylelist),
|
|
|
- ]);
|
|
|
+ // const [ohots, ostyles] = await Promise.all([
|
|
|
+ // axios.get(URL.hotlist),
|
|
|
+ // axios.get(URL.stylelist),
|
|
|
+ // ]);
|
|
|
+ const ohots = { list: [] };
|
|
|
+ const ostyles = { list: [] };
|
|
|
styles.value = ostyles.list;
|
|
|
list.value = assembly(
|
|
|
styles.value,
|