From cd07761392698f059d904edc7b36ca9b6e6999c4 Mon Sep 17 00:00:00 2001 From: sa_10_0 <2492740167@qq.com> Date: Sun, 3 Nov 2024 13:34:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/myAxios.ts | 2 +- src/layout/components/Aside.vue | 10 + src/router/routes.ts | 5 + src/views/Commodity/AddProduct.vue | 27 +- src/views/Coupons/AddCoupons.vue | 11 + src/views/Home.vue | 498 +++++++---------------------- 6 files changed, 161 insertions(+), 392 deletions(-) create mode 100644 src/views/Coupons/AddCoupons.vue diff --git a/src/api/myAxios.ts b/src/api/myAxios.ts index 6428803..3e39629 100644 --- a/src/api/myAxios.ts +++ b/src/api/myAxios.ts @@ -4,7 +4,7 @@ import router from '../router' const myAxios = axios.create({ withCredentials:true, - baseURL: 'http://localhost:8888/api'//测试服务器 + baseURL: 'http://localhost:9092/api'//测试服务器 }); // 添加请求拦截器 axios.interceptors.request.use(function (config) { diff --git a/src/layout/components/Aside.vue b/src/layout/components/Aside.vue index 3e3d5c5..ddcea79 100644 --- a/src/layout/components/Aside.vue +++ b/src/layout/components/Aside.vue @@ -53,6 +53,16 @@ 类别管理 + + + + + 添加优惠券 + + diff --git a/src/router/routes.ts b/src/router/routes.ts index 6757190..8940693 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -37,6 +37,11 @@ export const routes = [ path: '/TypeManagement', name: '类别管理', component: ()=> import("../views/Commodity/TypeManagement.vue") + }, + { + path:'/AddCoupons', + name:'添加优惠券', + component:()=>import("../views/Coupons/AddCoupons.vue") } ] } diff --git a/src/views/Commodity/AddProduct.vue b/src/views/Commodity/AddProduct.vue index 398acfd..4b34985 100644 --- a/src/views/Commodity/AddProduct.vue +++ b/src/views/Commodity/AddProduct.vue @@ -100,7 +100,7 @@ - 上架 + 上架 @@ -138,8 +138,8 @@ const form = reactive({ desc:'',//详情描述 }) onMounted(()=>{ - addProduct() upload() + addProduct() }) const addProduct = async () => { const res = await myAxios.post('goods/add',{ @@ -151,17 +151,18 @@ const addProduct = async () => { intro : form.desc, festivalOrder : form.festivalName }) - if(res.data.code == 1){ - ElMessage({ - message: '上架成功', - type: 'success' - }) - }else{ - ElMessage({ - message: '上架失败', - type: 'error' - }) - } + + // if(res.data.code == 1){ + // ElMessage({ + // message: '上架成功', + // type: 'success' + // }) + // }else{ + // ElMessage({ + // message: '上架失败', + // type: 'error' + // }) + // } } const upload = async () => { const res = await myAxios.post('file/upload/server',{ diff --git a/src/views/Coupons/AddCoupons.vue b/src/views/Coupons/AddCoupons.vue new file mode 100644 index 0000000..96c0baf --- /dev/null +++ b/src/views/Coupons/AddCoupons.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/src/views/Home.vue b/src/views/Home.vue index a5f75d2..1f3dc1e 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,384 +1,126 @@ - - - \ No newline at end of file +const onSubmit = () => { + console.log('submit!') +} +