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
3ab763db
Commit
3ab763db
authored
Feb 12, 2020
by
Arjun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
address style
parent
6755c93e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
7 deletions
+11
-7
cart.page.scss
src/app/cart/cart.page.scss
+4
-5
home.page.html
src/app/home/home.page.html
+6
-1
auth.service.ts
src/config/auth.service.ts
+1
-1
No files found.
src/app/cart/cart.page.scss
View file @
3ab763db
...
@@ -500,13 +500,14 @@
...
@@ -500,13 +500,14 @@
bottom
:
0px
;
bottom
:
0px
;
left
:
0px
;
left
:
0px
;
right
:
0px
;
right
:
0px
;
padding
:
20px
;
overflow
:
scroll
;
top
:
40%
;
padding
:
20px
20px
50px
20px
;
border-top-left-radius
:
15px
;
border-top-left-radius
:
15px
;
border-top-right-radius
:
15px
;
border-top-right-radius
:
15px
;
background
:
#fff
;
background
:
#fff
;
-webkit-box-shadow
:
0px
-2px
5px
0px
rgba
(
0
,
0
,
0
,
0
.2
);
-moz-box-shadow
:
0px
-2px
5px
0px
rgba
(
0
,
0
,
0
,
0
.2
);
box-shadow
:
0px
-2px
5px
0px
rgba
(
0
,
0
,
0
,
0
.2
);
box-shadow
:
0px
-2px
5px
0px
rgba
(
0
,
0
,
0
,
0
.2
);
}
h5
{
h5
{
color
:
rgba
(
41
,
40
,
91
,
1
);
color
:
rgba
(
41
,
40
,
91
,
1
);
margin
:
0px
;
margin
:
0px
;
...
@@ -576,5 +577,4 @@
...
@@ -576,5 +577,4 @@
}
}
}
}
}
}
}
}
}
\ No newline at end of file
src/app/home/home.page.html
View file @
3ab763db
...
@@ -121,12 +121,15 @@
...
@@ -121,12 +121,15 @@
<span>
NEW ADDRESS
</span>
<span>
NEW ADDRESS
</span>
<span
(
click
)="
istoggle
();
goToPage
('
nearby
')"
>
ADD NEW
</span>
<span
(
click
)="
istoggle
();
goToPage
('
nearby
')"
>
ADD NEW
</span>
</div>
</div>
<div>
<ul
class=
"address-ul"
*
ngIf=
"addressService.addressList && addressService.addressList.length > 0"
>
<ul
class=
"address-ul"
*
ngIf=
"addressService.addressList && addressService.addressList.length > 0"
>
<li
*
ngFor=
"let address of addressService.addressList; let i = index"
>
<li
*
ngFor=
"let address of addressService.addressList; let i = index"
>
<div
class=
"floatLeft"
>
<div
class=
"floatLeft"
>
{{address.default}}
{{address.default}}
<input
class=
"styled-checkbox"
name=
"addressId"
id=
"styled-checkbox-{{i}}"
type=
"radio"
(
click
)="
setDefault
(
address
.
addressId
)"
[
value
]="
address
.
addressId
"
#
addressType
[
checked
]="
address
.
defaultVal =
=
1
"
/>
<input
class=
"styled-checkbox"
name=
"addressId"
id=
"styled-checkbox-{{i}}"
type=
"radio"
(
click
)="
setDefault
(
address
.
addressId
)"
[
value
]="
address
.
addressId
"
#
addressType
[
checked
]="
address
.
defaultVal =
=
1
"
/>
<label
for=
"styled-checkbox-{{i}}"
>
{{address.addressType}}
</label>
<label
for=
"styled-checkbox-{{i}}"
>
{{address.addressType}}
</label>
</div>
</div>
<div
class=
"floatLeft"
>
<div
class=
"floatLeft"
>
<p>
<p>
...
@@ -137,5 +140,6 @@
...
@@ -137,5 +140,6 @@
</li>
</li>
</ul>
</ul>
</div>
</div>
</div>
</ion-content>
</ion-content>
</div>
</div>
\ No newline at end of file
src/config/auth.service.ts
View file @
3ab763db
...
@@ -40,7 +40,7 @@ export class AuthService {
...
@@ -40,7 +40,7 @@ export class AuthService {
this
.
SetUserData
(
user
);
this
.
SetUserData
(
user
);
this
.
loader
=
false
;
this
.
loader
=
false
;
if
(
this
.
type
===
1
)
{
if
(
this
.
type
===
1
)
{
//
this.router.navigateByUrl('home');
this
.
router
.
navigateByUrl
(
'home'
);
}
else
{
}
else
{
this
.
router
.
navigateByUrl
(
'verification'
);
this
.
router
.
navigateByUrl
(
'verification'
);
}
}
...
...
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