Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
getme
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
amal
getme
Commits
9bcc9b54
Commit
9bcc9b54
authored
Mar 09, 2020
by
Arjun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cart page
parent
3c6383a9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
5 deletions
+33
-5
cart.page.html
src/app/cart/cart.page.html
+12
-3
cart.page.scss
src/app/cart/cart.page.scss
+21
-2
No files found.
src/app/cart/cart.page.html
View file @
9bcc9b54
...
...
@@ -266,13 +266,21 @@
<div
*
ngIf=
"isShow"
[@
slideInOut
]
>
<div
class=
"nav_header"
>
<ion-grid
class=
"no-gutter"
>
<ion-row
class=
"no-gutter"
>
<ion-col
class=
"no-gutter"
size=
"2"
>
<button
class=
"nav_btn nav_back floatLeft"
(
click
)="
istoggle
();"
>
<img
src=
"../assets/Group17_2.png"
/>
</button>
</ion-col>
<ion-col
class=
"no-gutter"
size=
"8"
>
<div
class=
"nav_title floatLeft"
>
<h4>
CHANGE LOCATION
</h4>
</div>
<div
class=
"clear"
></div>
</ion-col>
<ion-col
class=
"no-gutter"
size=
"2"
></ion-col>
</ion-row>
</ion-grid>
</div>
<ion-content
class=
"sort_wrappper"
>
<agm-map
[
zoom
]="
20
"
[
latitude
]="
lat
"
[
longitude
]="
lng
"
[
disableDefaultUI
]="
false
"
[
zoomControl
]="
false
"
[
backgroundColor
]="'
rgba
(
29
,
27
,
130
,
0
.
2
)'"
>
...
...
@@ -280,12 +288,13 @@
</agm-map>
<div
class=
"add_address_wrapper"
>
<h5>
<span
class=
"floatLeft"
>
NEW
ADDRESS
</span>
<span
class=
"floatLeft"
>
SELECT
ADDRESS
</span>
<span
class=
"floatRight"
(
click
)="
istoggle
();
goToPage
('
nearby
')"
>
ADD NEW
</span>
<div
class=
"clear"
></div>
</h5>
<ul
*
ngIf=
"addressService.nearestList && addressService.nearestList.length > 0"
>
<li
*
ngFor=
"let address of addressService.nearestList; let i = index"
>
<li
*
ngFor=
"let address of addressService.nearestList; let i = index"
class=
"no-devlivery"
>
<h4>
DELIVERS TO
</h4>
<div
class=
"floatLeft"
>
{{address.default}}
<input
class=
"styled-checkbox"
name=
"addressId"
id=
"styled-checkbox-{{i}}"
type=
"radio"
(
click
)="
setDefault
(
address
.
addressId
,
i
)"
[
value
]="
address
.
addressId
"
#
addressType
[
checked
]="
address
.
defaultVal =
=
1
"
/>
...
...
src/app/cart/cart.page.scss
View file @
9bcc9b54
...
...
@@ -534,13 +534,19 @@
padding
:
0px
;
font-weight
:
800
;
}
h4
{
font-size
:
14px
;
color
:
#3d72e8
;
margin-top
:
5px
;
}
ul
{
margin
:
0px
;
padding
:
0px
;
padding-top
:
3
0px
;
padding-top
:
1
0px
;
li
{
list-style
:
none
;
margin-bottom
:
15px
;
margin-bottom
:
7px
;
border-bottom
:
1px
solid
#f1f1f1
;
p
{
margin
:
0px
;
padding
:
0px
;
...
...
@@ -596,6 +602,19 @@
}
}
}
.no-devlivery
{
.styled-checkbox
{
&
+
label
{
color
:
#999
;
}
&
:checked
+
label
:before
{
background
:
#999
;
}
}
h4
{
color
:
#da0000
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment