Skip to content

Commit

Permalink
hot fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HUNG-rushb committed Dec 2, 2021
1 parent 626afa1 commit 21d3c9e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 17 deletions.
8 changes: 4 additions & 4 deletions my_res/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0" />

<!-- Fav icon -->
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png" />
Expand Down Expand Up @@ -49,7 +49,7 @@
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<meta name="theme-color" content="#ffffff" /> -->

<!-- Google Map Autocomplete -->
<!-- <script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyCLmkMvRT42aeaFqentZfmn09iJtDLa7es&libraries=places"></script> -->
Expand All @@ -58,10 +58,10 @@
<script src="https://sp.zalo.me/plugins/sdk.js"></script>

<!-- Zalo Pay -->
<script
<!-- <script
src="/js/zalopay.js?ver=1494921725335"
type="text/javascript"
></script>
></script> -->

<!-- Title -->
<!-- <title><%= htmlWebpackPlugin.options.title %></title> -->
Expand Down
2 changes: 1 addition & 1 deletion my_res/src/components/Layout/CheckCart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
<style scoped>
#cart {
background-color: #a4c066;
position: absolute;
position: fixed;
right: 1rem;
top: 5rem;
}
Expand Down
3 changes: 0 additions & 3 deletions my_res/src/components/Layout/Offcanvas.js

This file was deleted.

1 change: 1 addition & 0 deletions my_res/src/components/Layout/ReviewFood.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<template>
<!-- <div class="fixed-top"> -->
<div>
<div
class="offcanvas offcanvas-bottom"
Expand Down
8 changes: 1 addition & 7 deletions my_res/src/components/Layout/ZaloChat.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
<div class="fixed-top">
<div
class="zalo-chat-widget"
data-oaid="137117482624142109"
Expand All @@ -10,9 +10,3 @@
></div>
</div>
</template>

<script>
export default {};
</script>

<style scoped></style>
4 changes: 3 additions & 1 deletion my_res/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<BackToTop />
<OrderButton />
<AddToast />
<CheckCart />

<ReviewFood />

<HomeMenu />
Expand All @@ -22,6 +22,8 @@

<ZaloChat />

<CheckCart />

<!-- <UpdateDataFirebase /> -->
</div>
</template>
Expand Down
7 changes: 6 additions & 1 deletion my_res/src/views/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

<OrderButton />
<AddToast />
<CheckCart />

<ZaloChat />
<ReviewFood />

<div class="row" id="menu">
Expand Down Expand Up @@ -44,6 +45,8 @@
</div>

<Footer />

<CheckCart />
</div>
</template>

Expand All @@ -57,6 +60,7 @@ import CheckCart from "../components/Layout/CheckCart.vue";
import OrderButton from "../components/Layout/OrderButton.vue";
import AddToast from "../components/Layout/AddToast.vue";
import ReviewFood from "../components/Menu/ReviewFood.vue";
import ZaloChat from "../components/Layout/ZaloChat.vue";
export default {
name: "Menu",
Expand All @@ -68,6 +72,7 @@ export default {
OrderButton,
AddToast,
ReviewFood,
ZaloChat,
},
data() {
// console.log(getMenu);
Expand Down

0 comments on commit 21d3c9e

Please sign in to comment.