Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydLife
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sweet Zhang
ydLife
Commits
5dcb4529
Commit
5dcb4529
authored
Aug 13, 2020
by
Chao Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的商机字体改大&暂时引掉我的佣金
parent
e9ece060
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
13 deletions
+22
-13
src/app/my/my-business-detail/my-business-detail.component.html
+10
-7
src/app/my/my-business-detail/my-business-detail.component.scss
+8
-3
src/app/my/my-center-home/my-center-home.component.ts
+4
-3
No files found.
src/app/my/my-business-detail/my-business-detail.component.html
View file @
5dcb4529
...
...
@@ -66,7 +66,7 @@
<div
class=
"wrapper_item"
>
<div
class=
"contentItem"
>
<span>
手机
</span>
<a
*
ngIf=
"opportunityId!=0"
style=
"text-decoration:none;color: #333;margin-right: 1
6
px;"
<a
*
ngIf=
"opportunityId!=0"
style=
"text-decoration:none;color: #333;margin-right: 1
2
px;"
href=
"tel:{{editBusiness.mobileNo}}"
>
<i
class=
"iconfont icon-dianhua"
style=
"color: #e10d0d;"
></i>
{{editBusiness.mobileNo}}
</a>
...
...
@@ -127,16 +127,19 @@
</div>
<div
class=
"contentItem"
>
<span>
商机状态
</span>
<div
style=
"padding: 6px
20
px;color: #e10d0d;font-weight: bold;"
>
<div
style=
"padding: 6px
12
px;color: #e10d0d;font-weight: bold;"
>
{{editBusiness.mdDropOptionName?editBusiness.mdDropOptionName:'待跟进'}}
</div>
</div>
</div>
<div
class=
"wrapper_item"
style=
"border: none;margin-bottom: 0;"
>
<div
class=
"contentItem"
>
<span>
派遣专家
</span>
<span
*
ngIf=
"editBusiness?.expertType == 0"
style=
"padding: 6px 10px;border: 1px #e10d0d solid;border-radius: 20px;margin-right: 10px;"
(
click
)="
openPopInfo
('申请已收到,会在
1
个工作日派遣专家')"
>
申请专家支持
</span>
<span
*
ngIf=
"editBusiness?.expertType == 0"
style=
"padding: 6px 10px;border: 1px #e10d0d solid;border-radius: 20px;margin-right: 10px;"
(
click
)="
openPopInfo
('申请已收到,会在
1
个工作日派遣专家')"
>
申请专家支持
</span>
<span
*
ngIf=
"editBusiness?.expertType == 1"
style=
"padding:6px 20px;"
>
派遣中...
</span>
<span
*
ngIf=
"editBusiness?.expertType == 2"
style=
"padding:6px 20px;"
>
{{editBusiness?.expertPractitionerName}}
</span>
<span
*
ngIf=
"editBusiness?.expertType == 2"
style=
"padding:6px 20px;"
>
{{editBusiness?.expertPractitionerName}}
</span>
</div>
</div>
<!-- <div class="contentItem">
...
...
@@ -147,9 +150,9 @@
<div
class=
"wrapper_item"
style=
"border: none;margin-bottom: 0;"
>
<div
class=
"contentItem"
>
<span>
备注
</span>
<div
style=
"padding: 6px 15px;
padding: 6px 15px;
"
>
<input
class=
"form-control"
type=
"text"
[
disabled
]="
readonlyFlag
"
[(
ngModel
)]="
editBusiness
.
remark
"
placeholder=
"备注信息"
(
blur
)="
inputBlur
()"
/>
<div
style=
"padding: 6px 15px;"
>
<input
class=
"form-control"
style=
"padding: 0;"
type=
"text"
[
disabled
]="
readonlyFlag
"
[(
ngModel
)]="
editBusiness
.
remark
"
placeholder=
"备注信息"
(
blur
)="
inputBlur
()"
/>
</div>
</div>
</div>
...
...
src/app/my/my-business-detail/my-business-detail.component.scss
View file @
5dcb4529
...
...
@@ -62,7 +62,7 @@
}
input
.form-control
{
// width: 60%;
margin
:
0
5px
;
//
margin: 0 5px;
background
:
none
;
outline
:
none
;
border
:
none
;
...
...
@@ -72,16 +72,20 @@
flex-wrap
:
wrap
;
font-size
:
16px
;
}
input
:
:-
webkit-input-placeholder
{
font-size
:
16px
;
// color: #0767bf;
}
.sexWrapper
{
display
:
flex
;
width
:
60%
;
justify-content
:
flex-end
;
padding-right
:
3px
;
.form-control.sex
{
width
:
20%
;
margin-left
:
5px
;
border
:
none
;
box-shadow
:
none
;
font-size
:
16px
;
}
.form-control.sex.sexBtn
{
border
:
1px
#0767bf
solid
;
...
...
@@ -93,10 +97,11 @@
}
select
.form-control
{
direction
:
rtl
;
font-size
:
16px
;
}
select
.form-control
[
disabled
]
{
background-color
:
transparent
;
color
:
#999
;
// color: #0767bf
;
}
}
.contentItem
:last-child
{
...
...
src/app/my/my-center-home/my-center-home.component.ts
View file @
5dcb4529
...
...
@@ -110,9 +110,10 @@ export class MyCenterHomeComponent implements OnInit, AfterViewInit {
title
:
'我的展业'
,
content
:
[
{
no
:
12
,
subtitle
:
'我的保单'
,
icon
:
'icon-baodanyangben'
,
path
:
''
,
routerLink
:
''
},
{
no
:
20
,
subtitle
:
'我的客户'
,
icon
:
'icon-ren1'
,
path
:
''
,
routerLink
:
''
},
{
no
:
14
,
subtitle
:
'我的佣金'
,
icon
:
'icon-yongjin'
,
path
:
''
,
routerLink
:
''
},
{
no
:
19
,
subtitle
:
'薪资单'
,
icon
:
'icon-xinzidan'
,
path
:
''
,
routerLink
:
'salary'
}
{
no
:
20
,
subtitle
:
'我的客户'
,
icon
:
'icon-ren1'
,
path
:
''
,
routerLink
:
''
},
// { no: 14, subtitle: '我的佣金', icon: 'icon-yongjin', path: '', routerLink: '' },
{
no
:
19
,
subtitle
:
'薪资单'
,
icon
:
'icon-xinzidan'
,
path
:
''
,
routerLink
:
'salary'
},
{
no
:
''
,
subtitle
:
''
,
icon
:
''
,
path
:
''
,
routerLink
:
''
}
],
isShow
:
true
}
...
...
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