From a3f95986f8e6592bf24a89ab048c4a46fbb4e2ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=AC=A3=E5=A8=81?= <3434410096@qq.com> Date: Sun, 26 May 2024 23:27:02 +0800 Subject: [PATCH] =?UTF-8?q?11=E9=99=88=E6=AC=A3=E5=A8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/.gitignore" | 30 + .../test/.vscode/extensions.json" | 3 + .../test/README.md" | 29 + .../test/index.html" | 13 + .../test/jsconfig.json" | 8 + .../test/package-lock.json" | 1191 +++++++++++++++++ .../test/package.json" | 21 + .../test/public/favicon.ico" | Bin 0 -> 4286 bytes .../test/src/App.vue" | 7 + .../test/src/assets/base.css" | 86 ++ .../test/src/assets/logo.svg" | 1 + .../test/src/assets/main.css" | 35 + .../test/src/components/CartBottom.vue" | 260 ++++ .../test/src/components/Inshop.vue" | 71 + .../test/src/components/Product.vue" | 131 ++ .../test/src/components/Tabbar.vue" | 62 + .../test/src/main.js" | 14 + .../test/src/router/router.js" | 43 + .../test/src/stores/cart.js" | 8 + .../test/src/stores/shop.js" | 175 +++ .../test/src/style/base.scss" | 17 + .../test/src/style/iconfont.css" | 43 + .../test/src/style/mixins.scss" | 5 + .../test/src/style/viriables.scss" | 12 + .../test/src/views/cart/CartView.vue" | 7 + .../test/src/views/home/HomeView.vue" | 10 + .../test/src/views/home/NearBy.vue" | 33 + .../test/src/views/home/StaticPart.vue" | 123 ++ .../test/src/views/layout/LayoutView.vue" | 12 + .../test/src/views/my/MyView.vue" | 7 + .../test/src/views/order/OrderView.vue" | 7 + .../test/src/views/shop/Shop.vue" | 140 ++ .../test/vite.config.js" | 16 + 33 files changed, 2620 insertions(+) create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/.gitignore" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/.vscode/extensions.json" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/README.md" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/index.html" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/jsconfig.json" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/package-lock.json" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/package.json" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/public/favicon.ico" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/App.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/assets/base.css" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/assets/logo.svg" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/assets/main.css" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/components/CartBottom.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/components/Inshop.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/components/Product.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/components/Tabbar.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/main.js" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/router/router.js" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/stores/cart.js" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/stores/shop.js" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/style/base.scss" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/style/iconfont.css" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/style/mixins.scss" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/style/viriables.scss" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/cart/CartView.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/home/HomeView.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/home/NearBy.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/home/StaticPart.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/layout/LayoutView.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/my/MyView.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/order/OrderView.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/src/views/shop/Shop.vue" create mode 100644 "11 \351\231\210\346\254\243\345\250\201/test/vite.config.js" diff --git "a/11 \351\231\210\346\254\243\345\250\201/test/.gitignore" "b/11 \351\231\210\346\254\243\345\250\201/test/.gitignore" new file mode 100644 index 0000000..8ee54e8 --- /dev/null +++ "b/11 \351\231\210\346\254\243\345\250\201/test/.gitignore" @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo diff --git "a/11 \351\231\210\346\254\243\345\250\201/test/.vscode/extensions.json" "b/11 \351\231\210\346\254\243\345\250\201/test/.vscode/extensions.json" new file mode 100644 index 0000000..a7cea0b --- /dev/null +++ "b/11 \351\231\210\346\254\243\345\250\201/test/.vscode/extensions.json" @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar"] +} diff --git "a/11 \351\231\210\346\254\243\345\250\201/test/README.md" "b/11 \351\231\210\346\254\243\345\250\201/test/README.md" new file mode 100644 index 0000000..d1b70fb --- /dev/null +++ "b/11 \351\231\210\346\254\243\345\250\201/test/README.md" @@ -0,0 +1,29 @@ +# test + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Customize configuration + +See [Vite Configuration Reference](https://vitejs.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Compile and Minify for Production + +```sh +npm run build +``` diff --git "a/11 \351\231\210\346\254\243\345\250\201/test/index.html" "b/11 \351\231\210\346\254\243\345\250\201/test/index.html" new file mode 100644 index 0000000..99f583a --- /dev/null +++ "b/11 \351\231\210\346\254\243\345\250\201/test/index.html" @@ -0,0 +1,13 @@ + + +
+ + + +
+
+ {{e.desc}}
+