Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-ces
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
wisdom-ces
Commits
c966a935
Commit
c966a935
authored
Sep 27, 2018
by
wangqinghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
活动
parent
3a644c61
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
310 additions
and
63 deletions
+310
-63
activityApply.ts
src/pages/activity/activityApply/activityApply.ts
+0
-1
order-edit.html
src/pages/activity/order-edit/order-edit.html
+35
-0
order-edit.module.ts
src/pages/activity/order-edit/order-edit.module.ts
+13
-0
order-edit.scss
src/pages/activity/order-edit/order-edit.scss
+99
-0
order-edit.ts
src/pages/activity/order-edit/order-edit.ts
+91
-0
chooseAddress.html
src/pages/chooseAddress/chooseAddress.html
+33
-22
chooseAddress.scss
src/pages/chooseAddress/chooseAddress.scss
+15
-2
chooseAddress.ts
src/pages/chooseAddress/chooseAddress.ts
+13
-24
myActivityList.html
src/pages/myActivityList/myActivityList.html
+2
-3
myActivityList.scss
src/pages/myActivityList/myActivityList.scss
+1
-0
myActivityList.ts
src/pages/myActivityList/myActivityList.ts
+4
-8
myReport.html
src/pages/myReport/myReport.html
+3
-3
myReport.scss
src/pages/myReport/myReport.scss
+1
-0
No files found.
src/pages/activity/activityApply/activityApply.ts
View file @
c966a935
...
@@ -164,7 +164,6 @@ export class ActivityApplyPage {
...
@@ -164,7 +164,6 @@ export class ActivityApplyPage {
this
.
appService
.
ObserverHttpPost
(
"/wisdomgroup/modules/order/create"
,
this
.
order
)
this
.
appService
.
ObserverHttpPost
(
"/wisdomgroup/modules/order/create"
,
this
.
order
)
.
subscribe
((
res
:
Response
)
=>
{
.
subscribe
((
res
:
Response
)
=>
{
if
(
true
)
{
if
(
true
)
{
this
.
isSuccess
=
true
;
this
.
isSuccess
=
true
;
setTimeout
(()
=>
{
setTimeout
(()
=>
{
...
...
src/pages/activity/order-edit/order-edit.html
0 → 100644
View file @
c966a935
<ion-header>
<ion-navbar>
<ion-title
text-center
>
报名订单
</ion-title>
</ion-navbar>
</ion-header>
<ion-content
class=
"content"
>
<ion-item
class=
"content-title"
>
<span>
活动名称
</span>
<span
float-right
>
{{activity?.activityName}}
</span>
</ion-item>
<ion-item>
<ion-label>
选择批次
</ion-label>
<ion-select
[(
ngModel
)]="
submitOrder
.
Batchid
"
cancelText=
"取消"
okText=
"确认"
>
<ion-option
*
ngFor=
"let item of batchList"
value=
"{{item.id}}"
>
{{item.batchName}}
</ion-option>
</ion-select>
</ion-item>
<ion-item
class=
"margin-top-10"
>
<ion-label>
报名用户
</ion-label>
<span
class=
"lettr-space-1"
item-right
>
{{order?.username}}
</span>
</ion-item>
<ion-item
class=
"margin-top-10"
>
<span>
携带人数
</span>
<span
class=
"com"
float-right
>
<button
type=
"button"
class=
"input_left"
(
tap
)="
next
()"
>
-
</button>
<input
type=
"text"
readonly=
"readonly"
[(
ngModel
)]='
submitOrder
.
Personnumber
'
name=
"num"
/>
<button
type=
"button"
style=
"margin-left: -2px"
class=
"input_right"
(
tap
)="
add
()"
>
+
</button>
</span>
</ion-item>
<ion-item
class=
"margin-top-10"
>
<ion-label>
报名备注
</ion-label>
<ion-textarea
[(
ngModel
)]="
submitOrder
.
Orderbz
"
class=
"content-textarea"
></ion-textarea>
</ion-item>
<button
class=
"submit-btn submit"
(
click
)="
submit
()"
>
提交订单
</button>
</ion-content>
src/pages/activity/order-edit/order-edit.module.ts
0 → 100644
View file @
c966a935
import
{
NgModule
}
from
'@angular/core'
;
import
{
IonicPageModule
}
from
'ionic-angular'
;
import
{
OrderEditPage
}
from
'./order-edit'
;
@
NgModule
({
declarations
:
[
OrderEditPage
,
],
imports
:
[
IonicPageModule
.
forChild
(
OrderEditPage
),
],
})
export
class
OrderEditPageModule
{}
src/pages/activity/order-edit/order-edit.scss
0 → 100644
View file @
c966a935
page-order-edit
{
//新
.content
{
text-align
:
left
;
margin-top
:
6px
;
}
.sign-info
,
.feedback-info
{
border-bottom
:
1px
solid
#ddd
;
margin-bottom
:
20px
;
}
.info-title
{
padding-left
:
10px
;
position
:
relative
;
}
.
info-title
:
:
after
{
content
:
''
;
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
5px
;
height
:
25px
;
background-color
:
#24bafc
;
}
.content-item
{
font-size
:
16px
;
padding
:
0
20px
;
p
{
padding
:
10px
0
;
span
:first-child
{
color
:
#333
;
}
span
:last-child
{
color
:
#666
;
}
}
p
+
p
{
border-top
:
1px
solid
#ddd
;
}
}
.content-button
{
position
:
absolute
;
bottom
:
10px
;
left
:
0
;
display
:
flex
;
align-items
:
center
;
width
:
100%
;
height
:
60px
;
font-size
:
16px
;
background-color
:
#e3f6fe
;
div
:first-child
{
width
:
65%
;
padding-left
:
20px
;
}
}
.item-ios.item-block
.item-inner
{
margin-right
:
16px
;
border
:
none
;
padding-left
:
16px
;
}
.content
.item-ios.item-block
:nth-child
(
5
)
.item-inner
{
border
:
none
;
}
.content-title
{
padding
:
0
;
}
.content-title
.item-inner
{
padding-left
:
16px
;
margin
:
0
!
important
;
}
.label-ios
+
ion-input
.text-input
,
.label-ios
+
ion-textarea
.text-input
,
.label-ios
+
.input
+
.cloned-input
{
padding
:
10px
;
height
:
100px
;
border
:
1px
solid
#ddd
;
}
.submit
{
margin-top
:
20px
;
border
:
1px
solid
#34b4fc
;
background-color
:
#34b4fc
;
}
.com
{
font-size
:
0
;
}
.com
input
{
font-size
:
1
.5rem
;
height
:
2rem
;
width
:
3rem
;
vertical-align
:
bottom
;
border
:
1px
solid
#ddd
;
text-align
:
center
;
}
.com
button
{
height
:
2rem
;
width
:
2rem
;
}
}
src/pages/activity/order-edit/order-edit.ts
0 → 100644
View file @
c966a935
import
{
Component
}
from
'@angular/core'
;
import
{
IonicPage
,
NavController
,
NavParams
}
from
'ionic-angular'
;
import
{
Response
}
from
"@angular/http"
;
import
{
AppService
}
from
"../../../service/appHttpService"
;
@
IonicPage
()
@
Component
({
selector
:
'page-order-edit'
,
templateUrl
:
'order-edit.html'
,
})
export
class
OrderEditPage
{
order
;
//订单信息
activity
;
//活动
batch
;
//批次
batchList
=
[];
submitOrder
=
{
Orderid
:
''
,
//订单id
Personnumber
:
0
,
//携带人数
Orderbz
:
''
,
//报名备注
Activityid
:
''
,
//关联活动id
Batchid
:
''
,
//关联批次id
orderbz_end
:
''
};
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
,
public
appService
:
AppService
)
{
}
ionViewDidLoad
()
{
this
.
order
=
this
.
navParams
.
get
(
'item'
);
this
.
activity
=
this
.
navParams
.
get
(
'item'
).
activity
;
this
.
batch
=
this
.
navParams
.
get
(
'item'
).
batch
;
this
.
submitOrder
.
Batchid
=
this
.
order
.
batchid
;
this
.
submitOrder
.
Orderbz
=
this
.
order
.
orderbz
;
this
.
submitOrder
.
Personnumber
=
this
.
order
.
personnumber
;
console
.
log
(
this
.
navParams
.
get
(
'item'
));
this
.
getAllBatch
();
}
getAllBatch
(){
this
.
appService
.
ObserverHttpGet
(
"/wisdomgroup/modules/activity/findAllActivityForAppWithXQ"
,
{
"id"
:
this
.
order
.
activityid
})
.
subscribe
((
res
:
Response
)
=>
{
this
.
batchList
=
res
.
json
().
batchList
;
},
error
=>
{
this
.
appService
.
alert
(
'网络异常!'
);
}
);
}
//携带人数 数字加减
add
()
{
if
(
this
.
submitOrder
.
Personnumber
<
this
.
batch
.
batchPerNumber
){
this
.
submitOrder
.
Personnumber
++
;
}
}
next
()
{
if
(
this
.
submitOrder
.
Personnumber
>=
1
)
{
this
.
submitOrder
.
Personnumber
--
;
}
}
submit
(){
console
.
log
(
'报名操作'
);
const
data
=
{
Orderid
:
this
.
order
.
orderid
,
//订单id
Personnumber
:
this
.
submitOrder
.
Personnumber
,
//携带人数
Orderbz
:
this
.
submitOrder
.
Orderbz
,
//报名备注
Activityid
:
this
.
order
.
activityid
,
//关联活动id
Batchid
:
this
.
order
.
batchid
,
//关联批次id
orderbz_end
:
''
};
// this.order.Orderbz = this.order.orderbz_end;
console
.
log
(
data
);
this
.
appService
.
ObserverHttpPost
(
"/wisdomgroup/modules/order/create"
,
data
)
.
subscribe
((
res
:
Response
)
=>
{
if
(
true
)
{
setTimeout
(()
=>
{
this
.
navCtrl
.
setRoot
(
"MyActivityListPage"
);
this
.
navCtrl
.
push
(
"MyActivityListPage"
);
},
1000
);
}
else
{
}
},
error
=>
{
this
.
appService
.
alert
(
'网络异常!'
);
}
);
}
}
src/pages/chooseAddress/chooseAddress.html
View file @
c966a935
...
@@ -22,13 +22,6 @@
...
@@ -22,13 +22,6 @@
</ion-header>
</ion-header>
<ion-content>
<ion-content>
<div
class=
"box"
>
<div
class=
"box"
>
<ion-slides>
<ion-slide
direction=
"horizontal"
>
<span
*
ngFor=
"let item of box"
class=
"box-item"
(
click
)="
scrollTop
(
item
)"
>
{{item}}
</span>
</ion-slide>
</ion-slides>
</div>
</div>
...
@@ -41,32 +34,50 @@
...
@@ -41,32 +34,50 @@
</div>
</div>
</div>
</div>
</div>
</div>
</ion-content>
</ion-content>
<ion-slides
#
contentSlides
(
ionSlideDidChange
)="
slideChanged
()"
>
<ion-slides
#
contentSlides
(
ionSlideDidChange
)="
slideChanged
()"
>
<ion-slide>
<ion-slide>
<ion-content
#
content1
>
<ion-content
#
content1
>
<div
class=
"city-item"
*
ngFor=
"let area of areaAll"
id=
"{{area.code}}0"
>
<ion-item
*
ngFor=
"let area of areaAll;let i = index;"
>
<!--<div class="city-title">{{area.code}} </div>-->
<p
(
click
)="
select
(
area
,
i
)"
>
<div
class=
"city-box"
>
<span>
{{area.areaName}}
</span>
<div
class=
"city"
>
<span
float-right
>
+
</span>
<span
(
click
)="
selectedCity
(
area
)"
>
{{area.areaName}}
</span>
</p>
</div>
<ng-container
*
ngIf=
"selectIndex == i"
>
</div>
<ng-container
*
ngFor=
"let city of cityList"
>
</div>
<p
class=
"areaChildren"
(
click
)="
selectedCity
(
city
)"
>
{{city.areaName}}
</p>
</ng-container>
</ng-container>
</ion-item>
</ion-content>
</ion-content>
</ion-slide>
</ion-slide>
<ion-slide>
<ion-slide>
<ion-content
#
content2
>
<ion-content
#
content2
>
<div
class=
"city-item"
*
ngFor=
"let area of outerAreaAll"
id=
"{{area.code}}1"
>
<!--<div class="city-title">{{area.code}}</div>-->
<ion-item
*
ngFor=
"let area of outerAreaAll;let i = index;"
>
<div
class=
"city-box"
>
<p
(
click
)="
select
(
area
,
i
)"
>
<!--<div class="city" *ngFor="let item of area.list">-->
<span>
{{area.areaName}}
</span>
<span
(
click
)="
selectedCity
(
area
)"
>
{{area.areaName}}
</span>
<span
float-right
>
+
</span>
</p>
<ng-container
*
ngIf=
"selectIndex == i"
>
<ng-container
*
ngFor=
"let city of cityList"
>
<p
class=
"areaChildren"
(
click
)="
selectedCity
(
city
)"
>
{{city.areaName}}
</p>
</ng-container>
</ng-container>
</ion-item>
<!--<div class="city-item" *ngFor="let area of outerAreaAll" id="{{area.code}}1">-->
<!--<!–<div class="city-title">{{area.code}}</div>–>-->
<!--<div class="city-box">-->
<!--<!–<div class="city" *ngFor="let item of area.list">–>-->
<!--<span (click)="selectedCity(area)">{{area.areaName}}</span>-->
<!--<!–</div>–>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
</div>
</div>
</ion-content>
</ion-content>
</ion-slide>
</ion-slide>
</ion-slides>
</ion-slides>
...
...
src/pages/chooseAddress/chooseAddress.scss
View file @
c966a935
...
@@ -80,14 +80,27 @@ page-chooseAddress {
...
@@ -80,14 +80,27 @@ page-chooseAddress {
justify-content
:
left
;
justify-content
:
left
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
position
:
relative
;
position
:
relative
;
margin
:
10px
0
;
}
}
.city
{
.city
{
text-align
:
left
;
padding-left
:
2rem
;
display
:
inline-block
;
display
:
inline-block
;
width
:
33
.33
%
;
width
:
100
%
;
margin
:
5px
0
;
margin
:
5px
0
;
}
}
.input-wrapper
{
padding-left
:
2rem
;
padding-right
:
2rem
;
}
.item-ios
p
{
font-size
:
1
.8rem
;
}
.item-ios
p
.areaChildren
{
font-size
:
1
.6rem
;
padding-left
:
1rem
;
margin
:
10px
0
;
}
.back-btn
{
.back-btn
{
...
...
src/pages/chooseAddress/chooseAddress.ts
View file @
c966a935
...
@@ -21,7 +21,6 @@ export class ChooseAddressPage {
...
@@ -21,7 +21,6 @@ export class ChooseAddressPage {
@
ViewChild
(
'content1'
)
content1
:
Content
;
@
ViewChild
(
'content1'
)
content1
:
Content
;
@
ViewChild
(
'content2'
)
content2
:
Content
;
@
ViewChild
(
'content2'
)
content2
:
Content
;
menus
:
Array
<
string
>
=
[
'国内'
,
'国际/港澳台'
];
menus
:
Array
<
string
>
=
[
'国内'
,
'国际/港澳台'
];
box
:
Array
<
string
>
=
[
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
,
'G'
,
'H'
,
'I'
,
'J'
,
'K'
,
'L'
,
'M'
,
'N'
,
'O'
,
'P'
,
'Q'
,
'R'
,
'S'
,
,
'T'
,
'U'
,
'V'
,
'W'
,
'X'
,
'Y'
,
'Z'
];
searchValue
:
string
;
searchValue
:
string
;
currentIndex
:
number
=
0
;
currentIndex
:
number
=
0
;
...
@@ -32,6 +31,9 @@ export class ChooseAddressPage {
...
@@ -32,6 +31,9 @@ export class ChooseAddressPage {
//搜索
//搜索
searchAreaAll
:
Array
<
String
>
[][];
searchAreaAll
:
Array
<
String
>
[][];
selectIndex
;
cityList
;
isSearch
:
boolean
=
false
;
isSearch
:
boolean
=
false
;
constructor
(
constructor
(
...
@@ -106,8 +108,6 @@ export class ChooseAddressPage {
...
@@ -106,8 +108,6 @@ export class ChooseAddressPage {
this
.
currentIndex
=
index
;
this
.
currentIndex
=
index
;
this
.
setStyle
(
index
);
this
.
setStyle
(
index
);
//s切换菜单
//s切换菜单
this
.
swiper
.
slideTo
(
index
,
300
);
}
}
//清除搜索关键字
//清除搜索关键字
...
@@ -166,17 +166,10 @@ export class ChooseAddressPage {
...
@@ -166,17 +166,10 @@ export class ChooseAddressPage {
//选择城市
//选择城市
selectedCity
(
city
):
void
{
selectedCity
(
city
):
void
{
const
data
=
{
this
.
selectIndex
=
null
;
'parentId'
:
city
.
id
this
.
storage
.
set
(
"city"
,
city
);
};
this
.
navCtrl
.
push
(
"OutGoingReportDetailPage"
);
this
.
appService
.
ObserverHttpGetOption
(
'/wisdomgroup/area/area/getCityByParentId'
,
data
).
subscribe
(
(
res
:
Response
)
=>
{
console
.
log
(
res
)
}
)
//this.navCtrl.pop();
// this.storage.set("city",city);
// this.navCtrl.push("OutGoingReportDetailPage");
}
}
//搜索地址
//搜索地址
...
@@ -201,19 +194,15 @@ export class ChooseAddressPage {
...
@@ -201,19 +194,15 @@ export class ChooseAddressPage {
}
}
initArea
(){
// this.appService.ObserverHttpGetOption('/wisdomgroup/area/area/getProvince',data).subscribe(
select
(
item
,
index
){
// (res:Response)=>{
this
.
selectIndex
=
index
;
// console.log(res)
const
data
=
{
// }
'parentId'
:
item
.
id
// )
const
data1
=
{
'parentId'
:
'8514'
};
};
this
.
appService
.
ObserverHttpGetOption
(
'/wisdomgroup/area/area/getCityByParentId'
,
data1
).
subscribe
(
this
.
appService
.
ObserverHttpGetOption
(
'/wisdomgroup/area/area/getCityByParentId'
,
data
).
subscribe
(
(
res
:
Response
)
=>
{
(
res
:
Response
)
=>
{
console
.
log
(
res
)
this
.
cityList
=
res
.
json
();
}
}
)
)
}
}
...
...
src/pages/myActivityList/myActivityList.html
View file @
c966a935
...
@@ -5,13 +5,12 @@
...
@@ -5,13 +5,12 @@
<div
class=
"pageMenuSlides"
>
<div
class=
"pageMenuSlides"
>
<div
class=
"swiper-container"
>
<div
class=
"swiper-container"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-wrapper"
>
<!-- {{i==0?'bottomLine':''}}是初始化的时候默认选择第一个菜单 -->
<div
class=
"swiper-slide"
*
ngFor=
"let item of menus;let i=index;"
tappable
(
click
)="
selectPageMenu
(
i
)"
>
<div
class=
"swiper-slide"
*
ngFor=
"let item of menus;let i=index;"
tappable
(
click
)="
selectPageMenu
(
i
)"
>
<span
class=
" {{swiperIndex == i? 'swiper-title':''}} "
>
{{item}}
</span>
<span
class=
" {{swiperIndex == i? 'swiper-title':''}} "
>
{{item}}
</span>
<span
*
ngIf=
"i == 1"
class=
"menu-index"
style=
"line-height:15px;"
>
<span
*
ngIf=
"i == 1"
class=
"menu-index"
>
{{waitgoOrderCount}}
{{waitgoOrderCount}}
</span>
</span>
<span
*
ngIf=
"i == 2"
class=
"menu-index"
style=
"line-height:15px;"
>
<span
*
ngIf=
"i == 2"
class=
"menu-index"
>
{{waitsureOrderCount}}
{{waitsureOrderCount}}
</span>
</span>
</div>
</div>
...
...
src/pages/myActivityList/myActivityList.scss
View file @
c966a935
...
@@ -44,6 +44,7 @@ page-myActivityList {
...
@@ -44,6 +44,7 @@ page-myActivityList {
margin-left
:
5px
;
margin-left
:
5px
;
right
:
20%
;
right
:
20%
;
text-align
:
center
;
text-align
:
center
;
line-height
:
1
.4rem
;
}
}
ion-slides
{
ion-slides
{
...
...
src/pages/myActivityList/myActivityList.ts
View file @
c966a935
...
@@ -9,6 +9,7 @@ import { JoinPersonsPage } from '../joinPersons/joinPersons';
...
@@ -9,6 +9,7 @@ import { JoinPersonsPage } from '../joinPersons/joinPersons';
import
{
ActivityStatisticService
}
from
'../../service/activityStatisticService'
;
import
{
ActivityStatisticService
}
from
'../../service/activityStatisticService'
;
import
{
OrderDetailPage
}
from
"../activity/order-detail/order-detail"
;
import
{
OrderDetailPage
}
from
"../activity/order-detail/order-detail"
;
import
{
OrderEditPage
}
from
"../activity/order-edit/order-edit"
;
...
@@ -176,8 +177,9 @@ export class MyActivityListPage {
...
@@ -176,8 +177,9 @@ export class MyActivityListPage {
}
}
//重选批次(更新订单)
//重选批次(更新订单)
reelectBatch
(
order
):
void
{
reelectBatch
(
item
):
void
{
this
.
navCtrl
.
push
(
'ActivityApplyPage'
,
{
changeOrderInfo
:
order
,
item
:
order
.
activity
});
this
.
navCtrl
.
push
(
'OrderEditPage'
,{
item
:
item
});
// this.navCtrl.push('ActivityApplyPage', { changeOrderInfo: order, item: order.activity });
}
}
//跳转人员参与情况列表页面
//跳转人员参与情况列表页面
...
@@ -319,13 +321,7 @@ export class MyActivityListPage {
...
@@ -319,13 +321,7 @@ export class MyActivityListPage {
//跳转到确认活动页面
//跳转到确认活动页面
goConfirmActivity
(
item
)
{
goConfirmActivity
(
item
)
{
if
(
item
.
orderstate
==
3
||
item
.
orderstate
==
4
){
this
.
navCtrl
.
push
(
'OrderDetailPage'
,{
item
:
item
});
this
.
navCtrl
.
push
(
'OrderDetailPage'
,{
item
:
item
});
}
else
{
this
.
navCtrl
.
push
(
"ActivityConfirmPage"
,{
lookOrderDetails
:
item
});
}
console
.
log
(
item
);
}
}
goBack
(){
goBack
(){
...
...
src/pages/myReport/myReport.html
View file @
c966a935
...
@@ -6,9 +6,9 @@
...
@@ -6,9 +6,9 @@
<div
class=
"swiper-container"
>
<div
class=
"swiper-container"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-slide {{i==0?'bottomLine':''}}"
*
ngFor=
"let item of menus;let i=index;"
tappable
(
click
)="
selectPageMenu
(
i
)"
>
{{item}}
<div
class=
"swiper-slide {{i==0?'bottomLine':''}}"
*
ngFor=
"let item of menus;let i=index;"
tappable
(
click
)="
selectPageMenu
(
i
)"
>
{{item}}
<span
*
ngIf=
"i==0"
class=
"menu-index"
style=
"line-height:15px;"
>
{{allReport.length}}
</span>
<span
*
ngIf=
"i==0"
class=
"menu-index"
>
{{allReport.length}}
</span>
<span
*
ngIf=
"i==1"
class=
"menu-index"
style=
"line-height:15px;"
>
{{processingReport.length}}
</span>
<span
*
ngIf=
"i==1"
class=
"menu-index"
>
{{processingReport.length}}
</span>
<span
*
ngIf=
"i==2"
class=
"menu-index"
style=
"line-height:15px;"
>
{{endReport.length}}
</span>
<span
*
ngIf=
"i==2"
class=
"menu-index"
>
{{endReport.length}}
</span>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
src/pages/myReport/myReport.scss
View file @
c966a935
...
@@ -36,6 +36,7 @@ page-myReport {
...
@@ -36,6 +36,7 @@ page-myReport {
color
:
white
;
color
:
white
;
margin-left
:
5px
;
margin-left
:
5px
;
text-align
:
center
;
text-align
:
center
;
line-height
:
1
.4rem
;
}
}
ion-slides
{
ion-slides
{
...
...
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