Commit 34cca8f9 authored by zhengke's avatar zhengke

增加下单

parent c2a0fed2
This diff is collapsed.
...@@ -646,6 +646,9 @@ ...@@ -646,6 +646,9 @@
</template> </template>
</div> </div>
</li> </li>
<li>
<input type="button" class="Sp_PsureBtn" @click="goBook(item)" style="width:60px;margin:30px 0 0 -3px;" value="预订"/>
</li>
</ul> </ul>
<span class="HD_ComDiJia HD_Green">{{getMeal(item.Meals)}}</span> <span class="HD_ComDiJia HD_Green">{{getMeal(item.Meals)}}</span>
</div> </div>
...@@ -856,6 +859,26 @@ export default { ...@@ -856,6 +859,26 @@ export default {
} }
}) })
return str; return str;
},
//跳转至预订页面
goBook(item){
let isLogin = this.$store.state.isLogin;
if (isLogin == 0) {
this.Error("请先登录!");
this.$router.push({
path: "/login?type=1",
query: { path: this.$route.name }
});
}else{
this.$router.push({
path: 'HotelBook',
query: {
CheckInTime:this.msg.CheckInTime,
CheckOutTime:this.msg.CheckOutTime,
Id:item.Id
}
});
}
} }
} }
}; };
......
...@@ -474,6 +474,15 @@ export default new Router({ ...@@ -474,6 +474,15 @@ export default new Router({
title: "预览" title: "预览"
} }
}, },
{
path: "/HotelBook",
name: "HotelBook",
component: resolve =>
require(["@/components/Hotel/HotelBook"], resolve),
meta: {
title: "酒店下单"
}
},
// { // {
// path: "/ticket/Pay/:id", // path: "/ticket/Pay/:id",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment