|
|
@@ -3,18 +3,22 @@
|
|
|
* @Author: uray(1109489444@qq.com)
|
|
|
* @date: 2022-04-13 18:00:09
|
|
|
* @lastEditors: uray(1109489444@qq.com)
|
|
|
- * @lastEditTime: 2022-04-14 15:18:08
|
|
|
+ * @lastEditTime: 2022-04-14 16:04:16
|
|
|
* @FilePath: \toy_box_website\src\page\home\index.vue
|
|
|
-->
|
|
|
|
|
|
<template>
|
|
|
- <HeadVue />
|
|
|
- <TabsVue />
|
|
|
- <div class="goods"></div>
|
|
|
+ <div class="home">
|
|
|
+ <HeadVue />
|
|
|
+ <TabsVue />
|
|
|
+ <GoodsVue />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
import { defineComponent } from "@vue/runtime-core";
|
|
|
+import store, { IGoods } from "../../store";
|
|
|
+import GoodsVue from "./Goods.vue";
|
|
|
import HeadVue from "./Head.vue";
|
|
|
import TabsVue from "./Tabs.vue";
|
|
|
|
|
|
@@ -23,14 +27,75 @@ export default defineComponent({
|
|
|
components: {
|
|
|
HeadVue,
|
|
|
TabsVue,
|
|
|
+ GoodsVue,
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ const goods = [
|
|
|
+ {
|
|
|
+ name: "【元气福袋】超值盲盒大礼包+随机礼品(价值175~288)",
|
|
|
+ price: 99,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/6248329b36865f004fc7b6cd.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "【元气福袋】超值!正版热血动漫礼包 扭蛋 盒蛋 景品(价值240~380)",
|
|
|
+ price: 199,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/624832db36865f004fc7b6ce.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "【万代授权】UR 迪迦奥特曼 迪加 火花棱镜神光棒 25周年纪念现货 ",
|
|
|
+ price: 809,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/61f2532b871a2500503c1e83.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "HGUC 机动战士高达 逆袭的夏亚 MSN-04II 夜莺",
|
|
|
+ price: 479,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/61d577a71a5ae600511a3c8a.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "迪士尼 星黛露 发饰",
|
|
|
+ price: 119,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/622c75232bcd8900631850bd.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "万代模型 Figure-rise Standard 星野文乃 高达创战者",
|
|
|
+ price: 166,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/623d796a2b212500776ace9a.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "HotToys 蝙蝠侠黑暗骑士 COSBABY 迷你人偶 钥匙扣挂件(随机)",
|
|
|
+ price: 89,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/623991bb61bab600782a3e5e.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "米哈游/崩坏3】女武神武器金属挂件钥匙扣",
|
|
|
+ price: 59,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/61d815f5d2314e00577b1b4f.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "【米哈游/崩坏3】德丽莎沙雕亚克力挂件(款式随机)",
|
|
|
+ price: 49,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/61d80f6c1a5ae600511a3cd3.png",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "【米哈游/崩坏3】火星新春表情包PVC贴纸包",
|
|
|
+ price: 49,
|
|
|
+ imgSrc: "https://static.airmart.top/mall/61d80f0ad83c0b004f405a37.png",
|
|
|
+ },
|
|
|
+ ] as IGoods[];
|
|
|
+ store.commit("setGoods", goods);
|
|
|
},
|
|
|
});
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-.goods {
|
|
|
- height: calc(~"100vh - 400px");
|
|
|
+.home {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+
|
|
|
background-color: #f5f5f5;
|
|
|
- border: solid 1px blue;
|
|
|
}
|
|
|
</style>
|