From ce38bea1c0f9230eb0b5f29d67cb1ed86a76585a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=B0=91=E6=B5=B7?= <3087930763@qq.com> Date: Tue, 28 May 2024 14:25:56 +0800 Subject: [PATCH 1/2] ceshi1 --- "\345\210\230\345\260\221\346\265\267/123.txt" | 1 + 1 file changed, 1 insertion(+) create mode 100644 "\345\210\230\345\260\221\346\265\267/123.txt" diff --git "a/\345\210\230\345\260\221\346\265\267/123.txt" "b/\345\210\230\345\260\221\346\265\267/123.txt" new file mode 100644 index 0000000..18a63fa --- /dev/null +++ "b/\345\210\230\345\260\221\346\265\267/123.txt" @@ -0,0 +1 @@ +1231232132131 \ No newline at end of file -- Gitee From c5e8992459ae2de9b70905a9ca94bf2db0c8c353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=B0=91=E6=B5=B7?= <3087930763@qq.com> Date: Wed, 29 May 2024 12:38:04 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BA=AC=E4=B8=9C=E5=88=B0=E5=AE=B6?= =?UTF-8?q?=EF=BC=88=E8=83=BD=E8=B7=91=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vue-jingdong/.gitignore" | 30 + .../vue-jingdong/README.md" | 29 + .../vue-jingdong/index.html" | 13 + .../vue-jingdong/jsconfig.json" | 8 + .../vue-jingdong/package-lock.json" | 1191 +++++++++++++++++ .../vue-jingdong/package.json" | 21 + .../vue-jingdong/public/favicon.ico" | Bin 0 -> 4286 bytes .../vue-jingdong/src/App.vue" | 9 + .../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" | 39 + .../src/components/home/ShopInfo.vue" | 71 + .../src/components/home/StaticPart.vue" | 123 ++ .../src/components/layout/Tabbar.vue" | 66 + .../src/components/order/OrderCard.vue" | 77 ++ .../src/components/shop/CartBottom.vue" | 345 +++++ .../src/components/shop/Product.vue" | 154 +++ .../vue-jingdong/src/main.js" | 19 + .../vue-jingdong/src/router/index.js" | 55 + .../vue-jingdong/src/stores/cart.js" | 11 + .../vue-jingdong/src/stores/order.js" | 11 + .../vue-jingdong/src/stores/shop.js" | 176 +++ .../vue-jingdong/src/stores/test.js" | 11 + .../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 + .../vue-jingdong/src/test.js" | 6 + .../src/views/address/AddressView.vue" | 76 ++ .../src/views/address/CreateAddressView.vue" | 114 ++ .../vue-jingdong/src/views/cart/CartView.vue" | 59 + .../vue-jingdong/src/views/home/HomeView.vue" | 27 + .../src/views/layout/LayoutView.vue" | 15 + .../vue-jingdong/src/views/my/MyView.vue" | 192 +++ .../src/views/order/OrderConfirm.vue" | 305 +++++ .../src/views/order/OrderView.vue" | 52 + .../vue-jingdong/src/views/shop/ShopView.vue" | 159 +++ .../vue-jingdong/vite.config.js" | 16 + 42 files changed, 3863 insertions(+) create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/.gitignore" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/README.md" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/index.html" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/jsconfig.json" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/package-lock.json" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/package.json" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/public/favicon.ico" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/App.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/assets/base.css" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/assets/logo.svg" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/assets/main.css" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/address/AddressCard.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/cart/CartCard.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/home/NearBy.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/home/ShopInfo.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/home/StaticPart.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/layout/Tabbar.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/order/OrderCard.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/shop/CartBottom.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/components/shop/Product.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/main.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/router/index.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/stores/cart.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/stores/order.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/stores/shop.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/stores/test.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/stores/user.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/style/base.scss" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/style/iconfont.css" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/style/mixins.scss" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/style/viriables.scss" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/test.js" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/address/AddressView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/address/CreateAddressView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/cart/CartView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/home/HomeView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/layout/LayoutView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/my/MyView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/order/OrderConfirm.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/order/OrderView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/src/views/shop/ShopView.vue" create mode 100644 "\345\210\230\345\260\221\346\265\267/vue-jingdong/vite.config.js" diff --git "a/\345\210\230\345\260\221\346\265\267/vue-jingdong/.gitignore" "b/\345\210\230\345\260\221\346\265\267/vue-jingdong/.gitignore" new file mode 100644 index 0000000..8ee54e8 --- /dev/null +++ "b/\345\210\230\345\260\221\346\265\267/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/\345\210\230\345\260\221\346\265\267/vue-jingdong/README.md" "b/\345\210\230\345\260\221\346\265\267/vue-jingdong/README.md" new file mode 100644 index 0000000..823d32b --- /dev/null +++ "b/\345\210\230\345\260\221\346\265\267/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/\345\210\230\345\260\221\346\265\267/vue-jingdong/index.html" "b/\345\210\230\345\260\221\346\265\267/vue-jingdong/index.html" new file mode 100644 index 0000000..99f583a --- /dev/null +++ "b/\345\210\230\345\260\221\346\265\267/vue-jingdong/index.html" @@ -0,0 +1,13 @@ + + +
+ + + +{{ item.desc }}
+
+ {{ shopCartCountChecked }}
+
+