6aa3b469 by zhangmeng

化妆

1 parent 73dc0e6e
...@@ -97,20 +97,48 @@ function building() { ...@@ -97,20 +97,48 @@ function building() {
97 return 97 return
98 } 98 }
99 function popRemark(type){ 99 function popRemark(type){
100 if(!form.value){ 100
101 building() 101 switch (type) {
102 return 102 case 0:
103 } 103 // 票务
104 if((form.value.isJdView == 0&&type=='1') || (form.value.isCarView == 0&&type=='2') || (form.value.isFoodView == 0&&type=='3') || type=='0' || type=='4' || type=='5'){ 104 router.push({path: `/booking/ticket/${props.matchId}`})
105 building() 105 break;
106 return 106 case 1:
107 } 107 //酒店
108 const params = { 108 router.push({path: `/booking/hotel/${props.matchId}`})
109 matchId: props.matchId, 109 break;
110 title: language.value == 0 ?'预订说明':'Booking Instructions', 110 case 2:
111 type: type 111 //车辆
112 router.push({path: `/booking/car/${props.matchId}`})
113 break;
114 case 3:
115 //餐饮
116 router.push({path: `/booking/dinner/${props.matchId}`})
117 break;
118 case 4:
119 //化妆
120 router.push({path: `/booking/makeup/${props.matchId}`})
121 break;
122 case 5:
123 //拍照
124 router.push({path: `/booking/photography/${props.matchId}`})
125 break;
112 } 126 }
113 proxy.$refs['orderRemarkRef'].open(params) 127
128 // if(!form.value){
129 // building()
130 // return
131 // }
132 // if((form.value.isJdView == 0&&type=='1') || (form.value.isCarView == 0&&type=='2') || (form.value.isFoodView == 0&&type=='3') || type=='0' || type=='4' || type=='5'){
133 // building()
134 // return
135 // }
136 // const params = {
137 // matchId: props.matchId,
138 // title: language.value == 0 ?'预订说明':'Booking Instructions',
139 // type: type
140 // }
141 // proxy.$refs['orderRemarkRef'].open(params)
114 } 142 }
115 function goBooking(n) { 143 function goBooking(n) {
116 switch (n) { 144 switch (n) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!