Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
party-build-cloud
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
wangqinghua
party-build-cloud
Commits
3d6fe5ef
Commit
3d6fe5ef
authored
Jun 16, 2019
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
share
parent
17e67fba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
100 additions
and
0 deletions
+100
-0
share.html
src/pages/mine-pages/share/share.html
+27
-0
share.module.ts
src/pages/mine-pages/share/share.module.ts
+13
-0
share.scss
src/pages/mine-pages/share/share.scss
+41
-0
share.ts
src/pages/mine-pages/share/share.ts
+19
-0
No files found.
src/pages/mine-pages/share/share.html
0 → 100644
View file @
3d6fe5ef
<ion-header>
<ion-navbar>
<ion-title>
分享客户端
</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<div
class=
"share"
>
<div
class=
"code-title"
>
<div
class=
"img"
>
<img
src=
"./assets/imgs/logo.png"
>
</div>
<div
class=
"name"
>
部机关党建云
</div>
</div>
<div
class=
"barCode"
>
<img
src=
"./assets/imgs/mine/barCode.png"
alt=
""
>
</div>
<div
class=
"codetips"
>
手机扫描二维码安装部机关党建云App
</div>
</div>
</ion-content>
src/pages/mine-pages/share/share.module.ts
0 → 100644
View file @
3d6fe5ef
import
{
NgModule
}
from
'@angular/core'
;
import
{
IonicPageModule
}
from
'ionic-angular'
;
import
{
SharePage
}
from
'./share'
;
@
NgModule
({
declarations
:
[
SharePage
,
],
imports
:
[
IonicPageModule
.
forChild
(
SharePage
),
],
})
export
class
SharePageModule
{}
src/pages/mine-pages/share/share.scss
0 → 100644
View file @
3d6fe5ef
page-share
{
ion-content
{
padding
:
2rem
1rem
;
background-color
:
#938B98
;
}
.share
{
background-color
:
#f1f1f1
;
height
:
100%
;
padding
:
3rem
2rem
;
}
.code-title
{
display
:
flex
;
align-items
:
center
;
padding
:
1rem
0
;
background-color
:
#fff
;
border-bottom
:
1px
solid
#eee
;
font-size
:
1
.6rem
;
.img
{
width
:
40%
;
text-align
:
center
;
img
{
border-radius
:
5px
;
width
:
60px
;
}
}
.name
{
width
:
80%
;
padding-left
:
1rem
;
}
}
.barCode
{
background-color
:
#fff
;
}
.codetips
{
text-align
:
center
;
color
:
#666666
;
padding
:
2rem
0
;
background-color
:
#fff
;
border-top
:
1px
solid
#eee
;
}
}
src/pages/mine-pages/share/share.ts
0 → 100644
View file @
3d6fe5ef
import
{
Component
}
from
'@angular/core'
;
import
{
IonicPage
,
NavController
,
NavParams
}
from
'ionic-angular'
;
@
IonicPage
()
@
Component
({
selector
:
'page-share'
,
templateUrl
:
'share.html'
,
})
export
class
SharePage
{
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
)
{
}
ionViewDidLoad
()
{
console
.
log
(
'ionViewDidLoad SharePage'
);
}
}
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