diff --git a/dist.zip b/dist.zip new file mode 100644 index 0000000..c322592 Binary files /dev/null and b/dist.zip differ diff --git a/src/router/index.js b/src/router/index.js index 4d2d955..b644d8d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -21,13 +21,12 @@ const routes = [ path: '/home', name: '首页', component: () => import('../views/home/index'), - children:[ - { - path: '/welcome', - name: 'welcome', - component: () => import('../views/welcome/index') - }, - ] + + }, + { + path: '/welcome', + name: 'welcome', + component: () => import('../views/welcome/index') }, { @@ -51,11 +50,26 @@ const routes = [ name: '商品分类', component: () => import('../views/category/index') }, + { + path: '/businessProduct', + name: '商家商品', + component: () => import('../views/businessProduct/index') + }, + { + path: '/message', + name: '消息通知', + component: () => import('../views/message/index') + }, { path: '/user', name: '用户', component: () => import('../views/user/index') }, + { + path: '/permission', + name: '用户权限', + component: () => import('../views/permission/index') + }, { path: '/employee', name: '美甲师', diff --git a/src/views/business/index.vue b/src/views/business/index.vue index 98cc82f..7dec951 100644 --- a/src/views/business/index.vue +++ b/src/views/business/index.vue @@ -2,7 +2,7 @@ - + 搜索 添加商家 @@ -31,15 +31,22 @@ - + + \ No newline at end of file diff --git a/src/views/order/index.vue b/src/views/order/index.vue index b8906c1..c02e23b 100644 --- a/src/views/order/index.vue +++ b/src/views/order/index.vue @@ -7,10 +7,15 @@ 搜索 + - + + + @@ -129,6 +134,8 @@ const queryForm=ref({ }) const total=ref(0) const tableData =ref([]) +const payStatus=['未支付','已支付','退款中','已退款'] + const initOrderList=async()=>{ const res=await axios.post("orders/list/page",queryForm.value); //console.log(res.data.data) diff --git a/src/views/permission/addDialog/index.vue b/src/views/permission/addDialog/index.vue new file mode 100644 index 0000000..cf62030 --- /dev/null +++ b/src/views/permission/addDialog/index.vue @@ -0,0 +1,110 @@ + + + \ No newline at end of file diff --git a/src/views/category/dialog/index.vue b/src/views/permission/dialog/index.vue similarity index 94% rename from src/views/category/dialog/index.vue rename to src/views/permission/dialog/index.vue index 17e2ff5..a7e2ee5 100644 --- a/src/views/category/dialog/index.vue +++ b/src/views/permission/dialog/index.vue @@ -67,16 +67,20 @@ const props=defineProps({ } }) const form=ref({ - id: "", - businessId: "", - userId: "", - manicuristId: "", - orderId: "", - rating: null, - manicuristRating: null, - review: "", - businessReview: null, - createTime: "" + avatarUrl: "", + createTime:"", + email:"", + gender:null, + isDelete:null, + openId:null, + phone:null, + unionId:null, + updateTime:"", + userAccount:"", + userPassword:"", + userRole:null, + userStatus:null, + username:"" }) // const rules=ref({ // name: [ diff --git a/src/views/permission/index.vue b/src/views/permission/index.vue new file mode 100644 index 0000000..d979581 --- /dev/null +++ b/src/views/permission/index.vue @@ -0,0 +1,223 @@ + + + \ No newline at end of file diff --git a/src/views/category/updateDialog/index.vue b/src/views/permission/updateDialog/index.vue similarity index 100% rename from src/views/category/updateDialog/index.vue rename to src/views/permission/updateDialog/index.vue diff --git a/src/views/product/index.vue b/src/views/product/index.vue index f639175..f112cbb 100644 --- a/src/views/product/index.vue +++ b/src/views/product/index.vue @@ -1,17 +1,18 @@ + + - + + + { queryForm.value.current=current; initProductList(); } -// const typeNameFormatter=(row)=>{ -// // console.log(row) -// // let name=await axios.get('admin/smallType/'+row.typeid).then((res) => { -// // return res.data.smallType.name -// // }); -// // row.smalltype=name; -// let name= axios.get('admin/smallType/'+row.typeid).then((res) => { -// return res.data.smallType.name -// }); -// let t=name -// console.log(t.then()) -// return t.then() -// } -// const typeNameFormatter=(row)=>{ -// // console.log(row) -// let name= typeNameFormatter2(row) -// console.log(name) -// return name -// } -// const handleDelete=(id)=>{ -// ElMessageBox.confirm( -// '您确定要删除这条记录吗?', -// '系统提示', -// { -// confirmButtonText: '确定', -// cancelButtonText: '取消', -// type: 'warning', -// } -// ) -// .then(async() => { -// let res=await axios.get('admin/product/delete/'+id) -// if(res.data.code==0){ -// ElMessage({ -// type: 'success', -// message: '删除成功', -// }) -// initProductList(); -// }else{ -// ElMessage({ -// type: 'error', -// message: res.data.msg, -// }) -// } -// }) -// .catch(() => { -// }) -// } +const handleDelete=(id)=>{ + // console.log(id) + ElMessageBox.confirm( + '您确定要删除这条记录吗?', + '系统提示', + { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + } + ) + .then(async() => { + let res=await axios.post('commodities/delete',{id:id}) + if(res.data.code==0){ + ElMessage({ + type: 'success', + message: '删除成功', + }) + initSmallTypeList(); + }else{ + ElMessage({ + type: 'error', + message: res.data.description, + }) + } + }) + .catch(() => { + }) + // initUserList(); +}