From 23566243c3d2ba1ef9a8b992bfeafe21c37b6e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E9=98=B3?= <2099677008@qq.com> Date: Wed, 29 May 2024 12:01:10 +0800 Subject: [PATCH] =?UTF-8?q?2024-05-29-=E4=BA=AC=E4=B8=9C=E5=88=B0=E5=AE=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jingdong/package-lock.json" | 6 + .../jingdong/vue-jingdong/.gitignore" | 30 + .../vue-jingdong/.vscode/extensions.json" | 3 + .../jingdong/vue-jingdong/README.md" | 29 + .../jingdong/vue-jingdong/index.html" | 13 + .../jingdong/vue-jingdong/jsconfig.json" | 8 + .../jingdong/vue-jingdong/package-lock.json" | 1191 +++++++++++++++++ .../jingdong/vue-jingdong/package.json" | 21 + .../jingdong/vue-jingdong/public/favicon.ico" | Bin 0 -> 4286 bytes .../jingdong/vue-jingdong/src/App.vue" | 8 + .../vue-jingdong/src/assets/base.css" | 86 ++ .../vue-jingdong/src/assets/logo.svg" | 1 + .../vue-jingdong/src/assets/main.css" | 35 + .../src/components/address/AddressCard.vue" | 35 + .../src/components/cart/CartCard.vue" | 98 ++ .../src/components/home/NearBy.vue" | 38 + .../src/components/home/ShopInfo.vue" | 71 + .../src/components/home/StaticPart.vue" | 123 ++ .../src/components/layout/Tabbar.vue" | 65 + .../src/components/order/OrderCard.vue" | 77 ++ .../src/components/shop/CartBottom.vue" | 345 +++++ .../src/components/shop/Product.vue" | 153 +++ .../jingdong/vue-jingdong/src/main.js" | 15 + .../vue-jingdong/src/router/index.js" | 44 + .../jingdong/vue-jingdong/src/stores/cart.js" | 11 + .../vue-jingdong/src/stores/order.js" | 11 + .../jingdong/vue-jingdong/src/stores/shop.js" | 174 +++ .../jingdong/vue-jingdong/src/stores/test.js" | 11 + .../jingdong/vue-jingdong/src/stores/user.js" | 51 + .../vue-jingdong/src/style/base.scss" | 17 + .../vue-jingdong/src/style/iconfont.css" | 43 + .../vue-jingdong/src/style/mixins.scss" | 5 + .../vue-jingdong/src/style/viriables.scss" | 12 + .../src/views/address/AddressView.vue" | 68 + .../vue-jingdong/src/views/cart/CartView.vue" | 59 + .../vue-jingdong/src/views/home/HomeView.vue" | 25 + .../src/views/layout/LayoutView.vue" | 14 + .../src/views/order/OrderConfirm.vue" | 302 +++++ .../src/views/order/OrderView.vue" | 52 + .../vue-jingdong/src/views/shop/ShopView.vue" | 158 +++ .../jingdong/vue-jingdong/vite.config.js" | 16 + 41 files changed, 3524 insertions(+) create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/package-lock.json" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.gitignore" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.vscode/extensions.json" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/README.md" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/index.html" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/jsconfig.json" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/package-lock.json" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/package.json" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/public/favicon.ico" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/App.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/assets/base.css" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/assets/logo.svg" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/assets/main.css" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/address/AddressCard.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/cart/CartCard.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/home/NearBy.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/home/ShopInfo.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/home/StaticPart.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/layout/Tabbar.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/order/OrderCard.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/shop/CartBottom.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/components/shop/Product.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/main.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/router/index.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/stores/cart.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/stores/order.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/stores/shop.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/stores/test.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/stores/user.js" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/style/base.scss" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/style/iconfont.css" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/style/mixins.scss" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/style/viriables.scss" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/address/AddressView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/cart/CartView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/home/HomeView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/layout/LayoutView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/order/OrderConfirm.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/order/OrderView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/src/views/shop/ShopView.vue" create mode 100644 "22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/vite.config.js" diff --git "a/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/package-lock.json" "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/package-lock.json" new file mode 100644 index 0000000..b1142f9 --- /dev/null +++ "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/package-lock.json" @@ -0,0 +1,6 @@ +{ + "name": "jingdong", + "lockfileVersion": 3, + "requires": true, + "packages": {} +} diff --git "a/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.gitignore" "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.gitignore" new file mode 100644 index 0000000..8ee54e8 --- /dev/null +++ "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.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/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.vscode/extensions.json" "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.vscode/extensions.json" new file mode 100644 index 0000000..a7cea0b --- /dev/null +++ "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/.vscode/extensions.json" @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar"] +} diff --git "a/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/README.md" "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/README.md" new file mode 100644 index 0000000..823d32b --- /dev/null +++ "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/README.md" @@ -0,0 +1,29 @@ +# vue-jingdong + +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/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/index.html" "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/index.html" new file mode 100644 index 0000000..99f583a --- /dev/null +++ "b/22java2\347\250\213\351\230\263/2024-05-29-\347\250\213\351\230\263-\344\272\254\344\270\234\345\210\260\345\256\266/jingdong/vue-jingdong/index.html" @@ -0,0 +1,13 @@ + + +
+ + + +{{ item.desc }}
+