diff --git a/src/api/myAxios.ts b/src/api/myAxios.ts index a9d70c4..62ab694 100644 --- a/src/api/myAxios.ts +++ b/src/api/myAxios.ts @@ -4,8 +4,8 @@ import router from '../router' const myAxios = axios.create({ withCredentials:true, - // baseURL: 'http://localhost:9092/api' - baseURL: 'http://123.249.108.160:8888/api' //测试服务器 + baseURL: 'http://localhost:9092/api' + // baseURL: 'http://123.249.108.160:8888/api' //测试服务器 }); // 添加请求拦截器 axios.interceptors.request.use(function (config) { diff --git a/src/router/routes.ts b/src/router/routes.ts index d4bd3dc..7f198d1 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -237,10 +237,10 @@ export const constantRoute = [ }, { path: '/ManagementCenter', - name: '写真产品详情', + name: '写真产品中心', component: ()=> import("@/views/CostumeAppointments/ManagementCenter.vue"), meta: { - title: '写真产品详情' , + title: '写真产品中心' , icon: 'Tickets', hidden: false } @@ -256,7 +256,7 @@ export const constantRoute = [ } }, { - path: '/OutfitOrderDetail', + path: '/OutfitOrderDetail/:id', name: '写真预约订单详情', component: ()=> import("@/views/CostumeAppointments/OutfitOrderDetail.vue"), meta: { diff --git a/src/views/CostumeAppointments/AppointmentOrder.vue b/src/views/CostumeAppointments/AppointmentOrder.vue index c570132..e3f7c1d 100644 --- a/src/views/CostumeAppointments/AppointmentOrder.vue +++ b/src/views/CostumeAppointments/AppointmentOrder.vue @@ -1,14 +1,14 @@ @@ -43,8 +46,8 @@ import { onMounted, ref } from "vue"; import myAxios from "@/api/myAxios"; import { ElMessage } from "element-plus"; -import { SuccessInfo , ErrorInfo } from "@/utils/messageInfo"; -import { useRouter , useRoute } from "vue-router"; +import { SuccessInfo, ErrorInfo } from "@/utils/messageInfo"; +import { useRouter, useRoute } from "vue-router"; import emitter from "@/utils/emitter"; const tableData: any = ref([]); //表单展示数据 const total = ref(0); @@ -56,7 +59,7 @@ const searchParams: any = ref({ //封装分页 sortOrder: "descend", //降序 orderType: 'service' }) -const router = useRouter() +const router = useRouter() const route = useRoute() const loading = ref(false) onMounted(() => { @@ -94,25 +97,27 @@ const getOrderList = async () => { }); } } - //查看订单详情 const showDetail = (row: any) => { - router.push({ - path: '/OutfitOrderDetail' + router.push({ //不会将参数显示到地址栏中,这么做要修改routes中对应的path + name: '写真预约订单详情', + params: { + id: row.id + } }) }; -const deleteOrder = async (row : any) => { //微信退款 +const deleteOrder = async (row: any) => { //微信退款 loading.value = true - console.log('row-->',row) + console.log('row-->', row) const res = await myAxios.post('/wechat/refund/create', { id: row.id }) //传入订单号取消订单并退款 console.log(res) - setTimeout(()=>{ - if(res.data.code === 1) { + setTimeout(() => { + if (res.data.code === 1) { SuccessInfo('退款成功') getOrderList() loading.value = false } - },10000) + }, 10000) } const reset = () => { //重置搜索框 orderNumber.value = '' @@ -120,10 +125,10 @@ const reset = () => { //重置搜索框 const load = () => { getOrderList() } //搜索的方法 -const cancelOrder = async (row:any)=>{ //取消订单的方法(未支付能取消) - console.log('点击的这一行--->',row); - const res = await myAxios.post('/order/cancel/id',{ id: row.id }) - if(res.data.code === 1) { +const cancelOrder = async (row: any) => { //取消订单的方法(未支付能取消) + console.log('点击的这一行--->', row); + const res = await myAxios.post('/order/cancel/id', { id: row.id }) + if (res.data.code === 1) { getOrderList() SuccessInfo('取消订单成功') } else { @@ -135,9 +140,13 @@ const cancelOrder = async (row:any)=>{ //取消订单的方法(未支付能取 \ No newline at end of file diff --git a/src/views/CostumeAppointments/OutfitOrderDetail.vue b/src/views/CostumeAppointments/OutfitOrderDetail.vue index 1079545..768dfd9 100644 --- a/src/views/CostumeAppointments/OutfitOrderDetail.vue +++ b/src/views/CostumeAppointments/OutfitOrderDetail.vue @@ -1,23 +1,200 @@ \ No newline at end of file diff --git a/src/views/Orders/OrderList.vue b/src/views/Orders/OrderList.vue index 5d1cf48..cb0aec2 100644 --- a/src/views/Orders/OrderList.vue +++ b/src/views/Orders/OrderList.vue @@ -1,14 +1,14 @@