diff --git "a/\347\216\213\351\224\246\345\206\233/vue01_vuebase.html" "b/\347\216\213\351\224\246\345\206\233/vue01_vuebase.html" new file mode 100644 index 0000000000000000000000000000000000000000..245cd3e7bf86a009548d77a35ab1a72eff5f317d --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue01_vuebase.html" @@ -0,0 +1,82 @@ + + + + + + + + Document + + + + + + +
+ +
+ +

{{text[0]}}

+ ¥{{price[0]}} +
+
+ +

{{text[1]}}

+ ¥{{price[1]}} +
+
+ +

{{text[2]}}

+ ¥{{price[2]}} +
+ +
+ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_02_\345\217\214\345\220\221\347\273\221\345\256\232.html" "b/\347\216\213\351\224\246\345\206\233/vue_02_\345\217\214\345\220\221\347\273\221\345\256\232.html" new file mode 100644 index 0000000000000000000000000000000000000000..d58250440bf9ed7d3f8e591b12776d3820cf160b --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_02_\345\217\214\345\220\221\347\273\221\345\256\232.html" @@ -0,0 +1,120 @@ + + + + + + + + + + goodslist + + + + +

商品列表

+
+
+
+ +

{{item.title}}

库存: {{item.goodsNum}} +
选购数量:
+ {{item.price}} +
+
+

♥啊哦,此商品已销售光^_^~♥

+
+
+ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_03_\344\272\213\344\273\266.html" "b/\347\216\213\351\224\246\345\206\233/vue_03_\344\272\213\344\273\266.html" new file mode 100644 index 0000000000000000000000000000000000000000..886f21000893689d2d569b8253dbbb3e3f1822d0 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_03_\344\272\213\344\273\266.html" @@ -0,0 +1,130 @@ + + + + + + + + + + + goodslist + + + + +

商品列表

+
+
+
+ +

{{item.title}}

库存: {{item.goodsNum}} +
选购数量:
+ {{item.price}} +
+
+

♥啊哦,此商品已销售光^_^~♥

+
+
+ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/api/app.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/api/app.js" new file mode 100644 index 0000000000000000000000000000000000000000..f98e10ef91fef11a38fd27af10ad0a35c16d6195 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/api/app.js" @@ -0,0 +1,35 @@ +const express = require('express'); +const bodyParser = require('body-parser'); +const cors = require('cors'); +const app = express(); +app.use(cors()); + +let mockdb={} +app.use((req, res, next) => { + res.setHeader('Content-Type', 'text/html; charset=utf-8'); + next(); + }); + +app.use(bodyParser.json()); +app.use(bodyParser.urlencoded({ extended: true })); + +app.post("/goods",(req,res)=>{ + const products = [ + {img:"https://gw.alicdn.com/bao/uploaded/i1/3450653793/O1CN011kNQeq1dtF5Y3Uq8P_!!3450653793.jpg_300x300q90.jpg_.webp",des:"甜美可爱lolita蝴蝶结挂脖连衣裙女春夏爱心网纱洋装洛丽塔公主裙",price:"¥168",num:0}, + {img:"https://gw.alicdn.com/bao/uploaded/i4/2200799283113/O1CN012puGzP1YrngbtYT51_!!0-item_pic.jpg_300x300q90.jpg_.webp",des:"适用iwatch表带苹果手表applewatch6代7SE5/4/3/2/1代潮牌卡通硅胶运动44mm42女38mm40通用iphoneseries6表带",price:"¥38",num:0}, + {img:"https://gw.alicdn.com/bao/uploaded/i1/2209918180861/O1CN01uFPCKJ1IENokSlWIy_!!2209918180861.jpg_300x300q90.jpg_.webp",des:"超凡蜘蛛侠紧身衣正版成人高级战衣蜘蛛侠衣服儿童连体套装迈尔斯",price:"¥100",num:0} + ]; + res.end(JSON.stringify(products)) +}) + +app.post("/getgoods",(req,res)=>{ + let getgoods=req.body + mockdb=getgoods; + console.log(getgoods); + res.end(JSON.stringify(mockdb)) + +}) +app.post("/apigoods",(req,res)=>{ + res.end(JSON.stringify(mockdb)) +}) +app.listen(2222) diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_axios/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/index.html" @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..ef6872310a80fe7828649dd4b404ccf6bc532a1d --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/App.vue" @@ -0,0 +1,16 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/HelloWorld.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/HelloWorld.vue" new file mode 100644 index 0000000000000000000000000000000000000000..0a0988bcb91e4e3d0a442215f11ca79579d6b63e --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/HelloWorld.vue" @@ -0,0 +1,43 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue" new file mode 100644 index 0000000000000000000000000000000000000000..5e6462538ecda2ce6758b16fcbbf6e2e40f5d683 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue" @@ -0,0 +1,86 @@ + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..a5eca70f81855b06fe4a9ba461f20fc4b9a049b7 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue" @@ -0,0 +1,85 @@ + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..9bb171cf48bd3e20c3a0a8eebfa3d23c9f6d56ea --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js" @@ -0,0 +1,13 @@ +import { createApp } from 'vue' +import { createPinia } from 'pinia' + +import App from './App.vue' +import router from './router' + + +const app = createApp(App) + +app.use(createPinia()) +app.use(router) + +app.mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..35ce374169854b0155a1fe94cfb03c78b00b9d1d --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js" @@ -0,0 +1,20 @@ +import { createRouter, createWebHistory } from 'vue-router' +import goods from "@/views/goods.vue" +import car from "@/views/car.vue" +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: '/', + name: 'home', + component: goods + }, + { + path: '/car', + name: 'car', + component: car + } + ] +}) + +export default router diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js" new file mode 100644 index 0000000000000000000000000000000000000000..2197b44d127c0fdfdace52bfa97f3790be6f0259 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js" @@ -0,0 +1,12 @@ +import axios from "axios" + +const instance = axios.create({ + baseURL: "http://localhost:2222" +}) + +instance.interceptors.response.use(function (response) { + console.log(response); + return response.data; +}) + +export default instance \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue" new file mode 100644 index 0000000000000000000000000000000000000000..42f18254fa3eedc2e6b510445a7d8a03fdabd566 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue" @@ -0,0 +1,55 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue" new file mode 100644 index 0000000000000000000000000000000000000000..5acbfcd4492e67dda38f1d6421b73de5c7eebb5b --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue" @@ -0,0 +1,90 @@ + + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..762871300c5d82f39504a3954d62f5e48fbf7399 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html" @@ -0,0 +1,13 @@ + + + + + + + 坤坤后台系统 + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..2b2ee91f420890d0baed111edf5303f0da82e38a Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..16f139f127da0534ec86a466253dfbc5f0719fc8 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..595edc0cfb344d08a37261226fa1374e80c9cfc4 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3c88b7851b1be9711794c66c99571b37b88edfc2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e9b8f49946b3ebbcff8a527e2c9f42d19f64e2d2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3d1332faae02d33d69d34bea80339fc2f6bcedb1 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dac3190572045c6a1b789c7754b19ce793e9771b Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..9aa9f187f71986d65611ebeffdb4777a5f126cfb --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue" @@ -0,0 +1,78 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/assets/logo.svg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/assets/logo.svg" new file mode 100644 index 0000000000000000000000000000000000000000..7565660356e5b3723c9c33d508b830c9cfbea29f --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/assets/logo.svg" @@ -0,0 +1 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/slot.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/slot.vue" new file mode 100644 index 0000000000000000000000000000000000000000..3230059ddf9d7c1b8dbf1a37a74d4fcf8529283c --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/components/slot.vue" @@ -0,0 +1,76 @@ + + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..1d4acd7cd1c792a84e9a63dba4754d7f302bdb07 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/main.js" @@ -0,0 +1,3 @@ +import { createApp } from 'vue' +import App from './App.vue' +createApp(App).mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/index.html" @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..1a47f81b962c023195e5b9cd237fd964adaef0ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/App.vue" @@ -0,0 +1,14 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/assets/6436_9360841498310293.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/assets/6436_9360841498310293.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8bb963655bc64ef49c6c78afc0f9ab60dd33b44a Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/assets/6436_9360841498310293.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/home.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/home.vue" new file mode 100644 index 0000000000000000000000000000000000000000..a416bf840ea12df8514b337e57558c78271bffa6 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/home.vue" @@ -0,0 +1,18 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/login.vue" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/login.vue" new file mode 100644 index 0000000000000000000000000000000000000000..9101293e1a38435e09469288fdd9d1dc909ebdd3 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/components/login.vue" @@ -0,0 +1,83 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..c8e37b03b9c2289ea08f80feeca1880e2abc3a86 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/main.js" @@ -0,0 +1,9 @@ +import { createApp } from 'vue' +import App from './App.vue' +import router from './router' + +const app = createApp(App) + +app.use(router) + +app.mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/router/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..52168758e46338e07f6a10039fbf41e0a465cc3c --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_each_\350\267\257\347\224\261\345\256\210\345\215\253/src/router/index.js" @@ -0,0 +1,36 @@ +import { createRouter, createWebHistory } from 'vue-router' +import login from '../components/login.vue' +import home from '../components/home.vue' +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path:"/login", + name:"login", + component:login, + meta:{ischeck:false,title:"登录页"} + }, + { + path:"/home", + name:"home", + component:home, + meta:{ischeck:true,title:"首页"} + }, + ] +}) + +router.beforeEach((to,from)=>{ + let islogin=localStorage.getItem("user"); + if(to.meta.ischeck==true&&islogin==null){ + return false; + } + + if(to.path=="/login"&&islogin!=null){ + return {name:"home" } + } +}) + +router.afterEach((to,from)=>{ + document.getElementsByTagName("title")[0].textContent=to.meta.title +}) +export default router diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/index.html" @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..9e651e871a831512178796e2d65066c5e16ee55f --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/App.vue" @@ -0,0 +1,51 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/base.css" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/base.css" new file mode 100644 index 0000000000000000000000000000000000000000..71dc55a3cb5a72589496743a327c738ead3e1c83 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/base.css" @@ -0,0 +1,74 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + position: relative; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: color 0.5s, background-color 0.5s; + line-height: 1.6; + font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; + font-size: 15px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/logo.svg" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/logo.svg" new file mode 100644 index 0000000000000000000000000000000000000000..7565660356e5b3723c9c33d508b830c9cfbea29f --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/logo.svg" @@ -0,0 +1 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/main.css" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/main.css" new file mode 100644 index 0000000000000000000000000000000000000000..e8667cd4508b6163e44e675ff899de1896544c84 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/assets/main.css" @@ -0,0 +1,35 @@ +@import './base.css'; + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + + font-weight: normal; +} + +a, +.green { + text-decoration: none; + color: hsla(160, 100%, 37%, 1); + transition: 0.4s; +} + +@media (hover: hover) { + a:hover { + background-color: hsla(160, 100%, 37%, 0.2); + } +} + +@media (min-width: 1024px) { + body { + display: flex; + place-items: center; + } + + #app { + display: grid; + grid-template-columns: 1fr 1fr; + padding: 0 2rem; + } +} diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/goodsitem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/goodsitem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..d47f2c935dba203968201da4802ceab90b6eadc6 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/goodsitem.vue" @@ -0,0 +1,99 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..1d4acd7cd1c792a84e9a63dba4754d7f302bdb07 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js" @@ -0,0 +1,3 @@ +import { createApp } from 'vue' +import App from './App.vue' +createApp(App).mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js" new file mode 100644 index 0000000000000000000000000000000000000000..468fd85e7471c6f4f76393150414b9b97b7b4b02 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js" @@ -0,0 +1,5 @@ +import mitt from 'mitt' + +let emitter=mitt(); + +export default emitter; \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html" @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..03a7abebbb6f2b8c5b6e9e4d018d30f04afa0fdf --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue" @@ -0,0 +1,18 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue" new file mode 100644 index 0000000000000000000000000000000000000000..83ce057147859555ded078c442b9ed7ccf4639dc --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue" @@ -0,0 +1,41 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue" new file mode 100644 index 0000000000000000000000000000000000000000..79843aa78d30cb98b7b49689b4ed83e179f83802 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue" @@ -0,0 +1,67 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..c8e37b03b9c2289ea08f80feeca1880e2abc3a86 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js" @@ -0,0 +1,9 @@ +import { createApp } from 'vue' +import App from './App.vue' +import router from './router' + +const app = createApp(App) + +app.use(router) + +app.mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..bde9bdd69d52993cad79a8bbdeb8c153e283b18f --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js" @@ -0,0 +1,20 @@ +import { createRouter, createWebHistory } from 'vue-router' +import goods from "../components/goods.vue" +import car from "../components/car.vue" +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: '/goods', + name: 'goods', + component: goods + }, + { + path: '/car', + name: 'car', + component:car + } + ] +}) + +export default router diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..762871300c5d82f39504a3954d62f5e48fbf7399 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html" @@ -0,0 +1,13 @@ + + + + + + + 坤坤后台系统 + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..2b2ee91f420890d0baed111edf5303f0da82e38a Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..16f139f127da0534ec86a466253dfbc5f0719fc8 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..595edc0cfb344d08a37261226fa1374e80c9cfc4 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3c88b7851b1be9711794c66c99571b37b88edfc2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e9b8f49946b3ebbcff8a527e2c9f42d19f64e2d2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3d1332faae02d33d69d34bea80339fc2f6bcedb1 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..dac3190572045c6a1b789c7754b19ce793e9771b Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..e27b4a6b1fd0692ec791b0a40a60902db30b9bca --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue" @@ -0,0 +1,73 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/assets/logo.svg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/assets/logo.svg" new file mode 100644 index 0000000000000000000000000000000000000000..7565660356e5b3723c9c33d508b830c9cfbea29f --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/assets/logo.svg" @@ -0,0 +1 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/slot.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/slot.vue" new file mode 100644 index 0000000000000000000000000000000000000000..8582c622353513607cc6db7d49016da3e43bf965 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/components/slot.vue" @@ -0,0 +1,70 @@ + + + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..1d4acd7cd1c792a84e9a63dba4754d7f302bdb07 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/main.js" @@ -0,0 +1,3 @@ +import { createApp } from 'vue' +import App from './App.vue' +createApp(App).mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/index.html" @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/favicon.ico" new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/favicon.ico" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun1.webp" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun1.webp" new file mode 100644 index 0000000000000000000000000000000000000000..27844369c37bb5e7aa0ca02528e8f309eafa29ad Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun1.webp" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun2.webp" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun2.webp" new file mode 100644 index 0000000000000000000000000000000000000000..9ce26d568e24752afbaf73390eae05c3433eff08 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun2.webp" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun3.webp" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun3.webp" new file mode 100644 index 0000000000000000000000000000000000000000..8221fe013faf64b7a6d739bfb83c1a26d5dfcab1 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/ikun3.webp" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\346\262\271\351\245\274.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\346\262\271\351\245\274.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..7822d6cc26c9a714be28f71a8a5429fe11e59c08 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\346\262\271\351\245\274.jpg" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\350\215\224\346\236\235.webp" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\350\215\224\346\236\235.webp" new file mode 100644 index 0000000000000000000000000000000000000000..0a715fd14ba2b4dbc5d228fb7ddc487c9a23a979 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\350\215\224\346\236\235.webp" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\351\270\241.webp" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\351\270\241.webp" new file mode 100644 index 0000000000000000000000000000000000000000..5ae4157e35fc5cf9b6b5f92e53ec7aaa0be0d323 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/public/img/\351\270\241.webp" differ diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/App.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6c84496c01be27a7e131ea2b712edc72bc10b9cc --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/App.vue" @@ -0,0 +1,20 @@ + + + + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/food.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/food.vue" new file mode 100644 index 0000000000000000000000000000000000000000..46322ea1fe217cf321fe9b0156897a08d64bf00c --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/food.vue" @@ -0,0 +1,33 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue" new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue" new file mode 100644 index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue" new file mode 100644 index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue" new file mode 100644 index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue" @@ -0,0 +1,7 @@ + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue" new file mode 100644 index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue" @@ -0,0 +1,19 @@ + + diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue" new file mode 100644 index 0000000000000000000000000000000000000000..f01585af4a217cd21be9c9a9dffe2e54e2ffb578 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue" @@ -0,0 +1,58 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue" new file mode 100644 index 0000000000000000000000000000000000000000..ccfec3fc6cae9adadd6c3361097e2653cac84676 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue" @@ -0,0 +1,34 @@ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js" new file mode 100644 index 0000000000000000000000000000000000000000..c8e37b03b9c2289ea08f80feeca1880e2abc3a86 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js" @@ -0,0 +1,9 @@ +import { createApp } from 'vue' +import App from './App.vue' +import router from './router' + +const app = createApp(App) + +app.use(router) + +app.mount('#app') diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..30c0ca40359ec4d10378ad4ac9e9cc0f2f2deec1 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js" @@ -0,0 +1,26 @@ +import { createRouter, createWebHistory } from 'vue-router' +import left from '../components/left.vue' +import food from '../components/food.vue' +import screen from '../components/screen.vue' +const router = createRouter({ + routes: [ + { + path: '/leftlist', + name: 'leftlist', + component: left + }, + { + path: '/food', + name: 'food', + component: food + }, + { + path:'/screen', + name:'screen', + component:screen + } + ], + history:createWebHistory() +}) + +export default router diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip" new file mode 100644 index 0000000000000000000000000000000000000000..88e7829b60f249d749c619537231235328163b21 Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip" differ diff --git "a/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html" new file mode 100644 index 0000000000000000000000000000000000000000..0342e2a55697b00ff6e594a1bf65cb958b064576 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html" @@ -0,0 +1,42 @@ + + + + + + + 指令作业 + + +
+ +
+ + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js" "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js" new file mode 100644 index 0000000000000000000000000000000000000000..b53928011f5fe9349ece976076dc1814ee25cc50 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js" @@ -0,0 +1,16 @@ +let express = require("express"); + +let app = express(); + +app.get("/list",function(req,res){ + let data=[]; + data.push('中国最北--漠河'); + data.push('中国最南--三沙'); + data.push('中国洼地--吐鲁番盆地'); + data.push('中国最绿--福建'); + res.setHeader('Content-Type','text/html;charset=utf-8'); + res.header("Access-Control-Allow-Origin","*"); + res.end(JSON.stringify(data)); +}) + +app.listen(8080); \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html" new file mode 100644 index 0000000000000000000000000000000000000000..619dd351decbc529b18eea30810ab4208e177ccc --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html" @@ -0,0 +1,51 @@ + + + + + + + + 生命周期作业 + + + +
    +
  • {{item}}
  • +
+ + + + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html" new file mode 100644 index 0000000000000000000000000000000000000000..53fd2995b7379d6fa1bbfc111240fd7dc03e5646 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html" @@ -0,0 +1,66 @@ + + + + + + + + 列表 + + + +
    +
  • + +
  • +
+
购买总数{{totalNum}}
+ + + + + + + + \ No newline at end of file diff --git "a/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html" "b/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html" new file mode 100644 index 0000000000000000000000000000000000000000..5eb3997acc26dadc68b6e7a0570994f2e2c3d837 --- /dev/null +++ "b/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html" @@ -0,0 +1,105 @@ + + + + + + + + 作业列表 + + + +
    +
  • +
    +
    {{item.name}}----{{item.price}}
    +
    剩余{{item.totalNum-item.buyNum}}
    +
    + +
    +
    + +
    + 新增删除 +
    + +
  • +
+ + + + + \ No newline at end of file