diff --git a/src/layout/components/calendarUtil.vue b/src/layout/components/calendarUtil.vue
index fd36f20..83fde54 100644
--- a/src/layout/components/calendarUtil.vue
+++ b/src/layout/components/calendarUtil.vue
@@ -2,7 +2,8 @@
-
{{ data.day.split('-').slice(1).join('-') }}
- {{ data.isSelected ? '✔️' : '' }}
+
+ ✔️
@@ -107,9 +109,14 @@ onMounted(()=>{
}
})
const dateForm =(object : any)=>{ //赋值当前日期和弹出抽屉
- Selectdate.value = object.day
- periodObj.value.specificDate = object.day
- drawer.value = true
+ const nowClick = new Date(object.date).toISOString().split('T')[0] //格式化时间 年-月-日
+ if(isFutureDate(nowClick)) {
+ Selectdate.value = object.day
+ periodObj.value.specificDate = object.day
+ drawer.value = true
+ } else {
+ return;
+ }
}
const closeForm =()=>{ //缺重置表单
drawer.value = false
@@ -238,7 +245,7 @@ const disabledDate = (date: any) => { //判断日期是否是今天
return dateString < todayString
}
const isFutureDate = (date: any) => { //禁用之前的
- const today = new Date().toISOString().split('T')[0]
+ const today = new Date().toISOString().split('T')[0]
return date >= today
}
const handleDateClick = (date: any) => {
@@ -271,4 +278,15 @@ const handleDateClick = (date: any) => {
.timebox {
margin-bottom: 20px;
}
+.calendar-date-cell {
+ cursor: pointer;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+}
+.disabled {
+ color: #dcdfe6;
+ pointer-events: none;
+}
\ No newline at end of file
diff --git a/src/layout/components/outfitCalendarUtil.vue b/src/layout/components/outfitCalendarUtil.vue
new file mode 100644
index 0000000..9c1584e
--- /dev/null
+++ b/src/layout/components/outfitCalendarUtil.vue
@@ -0,0 +1,251 @@
+
+
+
+
+
+ {{ data.day.split('-').slice(1).join('-') }}
+
+ ✔️
+
+
+
+
+
+ 选择当天时间点
+
+
+
+ 保存
+ 取消
+ 重置
+
+
+ 保存
+
+
+
+
+
\ No newline at end of file
diff --git a/src/router/routes.ts b/src/router/routes.ts
index 345a77a..18853e9 100644
--- a/src/router/routes.ts
+++ b/src/router/routes.ts
@@ -86,40 +86,25 @@ export const routes = [
component: ()=> import("../views/CostumeAppointments/ClothingGrade.vue")
},
{
- path: '/CostumeDetails',
+ path: '/ManagementCenter',
name: '服装详情管理',
- component: ()=> import("../views/CostumeAppointments/CostumeDetails.vue")
+ component: ()=> import("../views/CostumeAppointments/ManagementCenter.vue")
},
{
path: '/AppointmentOrder',
name: '写真预约订单管理',
component: ()=> import("../views/CostumeAppointments/AppointmentOrder.vue")
},
+ {
+ path: '/PendingOutfitOrder',
+ name: '待处理写真预约订单',
+ component: ()=> import("../views/CostumeAppointments/PendingOutfitOrder.vue")
+ },
{
path: '/AddCostumes',
name: '添加服装',
component: ()=> import("../views/CostumeAppointments/AddCostumes.vue")
},
- {
- path: '/ReservationInstructions',
- name: '预约须知',
- component: ()=> import("../views/CostumeAppointments/ReservationInstructions.vue")
- },
- {
- path: '/CostExplanation',
- name: '费用说明',
- component: ()=> import("../views/CostumeAppointments/CostExplanation.vue")
- },
- {
- path: '/timeManagement',
- name: '时间管理',
- component: ()=> import("../views/CostumeAppointments/timeManagement.vue")
- },
- {
- path: '/TimeCenter',
- name: '预约时间中心',
- component: ()=> import("../views/CostumeAppointments/TimeCenter.vue")
- },
{
path: '/refund',
name:'退款管理',
diff --git a/src/views/Commodity/AddProduct.vue b/src/views/Commodity/AddProduct.vue
index a6b1c51..692923e 100644
--- a/src/views/Commodity/AddProduct.vue
+++ b/src/views/Commodity/AddProduct.vue
@@ -32,7 +32,7 @@
-
+
元
diff --git a/src/views/Commodity/MerchandiseCenter.vue b/src/views/Commodity/MerchandiseCenter.vue
index 8a49b00..62bd02d 100644
--- a/src/views/Commodity/MerchandiseCenter.vue
+++ b/src/views/Commodity/MerchandiseCenter.vue
@@ -26,7 +26,7 @@