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
002e1557
Commit
002e1557
authored
Jan 11, 2022
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
电子报聘银行卡提示&薪资单添加直接销售加码佣金
parent
d886c303
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
2 deletions
+26
-2
src/app/my/application-process/bank-card/bank-card.component.html
+4
-1
src/app/my/application-process/bank-card/bank-card.component.scss
+8
-0
src/app/my/salary-detail/salary-detail.component.html
+4
-0
src/app/my/salary-detail/salary-detail.component.ts
+4
-0
src/app/my/salary-first-year/salary-first-year.component.html
+3
-1
src/app/my/salary-first-year/salary-first-year.component.ts
+3
-0
No files found.
src/app/my/application-process/bank-card/bank-card.component.html
View file @
002e1557
...
...
@@ -13,7 +13,6 @@
<input
class=
"form-control"
placeholder=
"银行卡号:例如 6301234345354356"
[(
ngModel
)]="
bankAccountId
"
(
blur
)="
bs
(
2
)"
onkeyup=
"this.value=this.value.replace(/\D/g,'')"
maxlength=
"19"
[
disabled
]="
approveStatus
!=
null
&&
approveStatus
!='
-1
'"
/>
</div>
<div
class=
"contentItem"
*
ngIf=
"approveStatus==null || approveStatus=='-1'"
>
<input
class=
"form-control"
name=
""
id=
""
style=
"text-align: left;padding: 6px 0;"
placeholder=
"再次输入银行卡号以确认"
...
...
@@ -21,6 +20,10 @@
[
disabled
]="
approveStatus
!=
null
&&
approveStatus
!='
-1
'"
maxlength=
"19"
/>
</div>
</div>
<div
class=
"tips"
>
<p>
此开户银行和银行卡号将做为于经纪人佣金的支付账号,
</p>
<p>
请您确保正确。
</p>
</div>
</div>
<footer
class=
"fixed"
(
click
)="
next
()"
*
ngIf=
"approveStatus==null || approveStatus=='-1'"
>
保存并下一步
...
...
src/app/my/application-process/bank-card/bank-card.component.scss
View file @
002e1557
...
...
@@ -64,6 +64,14 @@
color
:
#999
;
}
}
.tips
{
width
:
100%
;
margin-top
:
10px
;
color
:
#999
;
font-size
:
14px
;
text-align
:
center
;
margin
:
20px
auto
;
}
.contentDetail.employ
.contentItem
{
padding
:
10px
0
;
border-bottom
:
1px
#e8e8e8
solid
;
...
...
src/app/my/salary-detail/salary-detail.component.html
View file @
002e1557
...
...
@@ -41,6 +41,10 @@
<span>
独立经纪人展业津贴
</span>
<span
class=
"red"
>
{{independentBrokerAllowance.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
<div
class=
"item_detail"
(
click
)="
jumpToFirstYearSales
(
direcSalesAddWeightList
,'直接销售加码佣金',
1
,
23
)"
*
ngIf=
"independentBrokerAllowance"
>
<span>
直接销售加码佣金
</span>
<span
class=
"red"
>
{{direcSalesAddWeightList.commission | number: "1.2-2"}}
<i
class=
"iconfont icon-ar-r"
></i></span>
</div>
</div>
<div
class=
"item"
>
<div
class=
"title"
>
销售管理(B)
</div>
...
...
src/app/my/salary-detail/salary-detail.component.ts
View file @
002e1557
...
...
@@ -59,6 +59,8 @@ export class SalaryDetailComponent implements OnInit {
TLCoachingAllowance
:
any
=
null
;
//续年度销售加码奖金
continuedAnnualSalesBonus
:
any
=
null
;
//直接销售加码佣金
direcSalesAddWeightList
:
any
=
null
;
//其他
other
:
any
=
null
;
years
:
any
;
...
...
@@ -213,6 +215,8 @@ export class SalaryDetailComponent implements OnInit {
this
.
independentBrokerAllowance
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'A-005'
){
this
.
continuedAnnualSalesBonus
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'A-006'
){
this
.
direcSalesAddWeightList
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'E55EC426-65E2-2AD5-4AA7-9B821396C1F4'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-001'
){
this
.
fycTutorInfo
=
this
.
salaryDetailsList
[
i
];
}
else
if
(
this
.
salaryDetailsList
[
i
][
'project_id'
]
===
'F9E5ED14-7248-A5D7-490D-651399E814A6'
||
this
.
salaryDetailsList
[
i
][
'salaryCode'
]
===
'B-002'
){
...
...
src/app/my/salary-first-year/salary-first-year.component.html
View file @
002e1557
...
...
@@ -16,6 +16,8 @@
<div
*
ngIf=
"policyItem.status"
>
FYC/RYC:{{policyItem['FYC/RYC'] | number: "1.2-2"}}
</div>
<!-- <div *ngIf="policyItem.status">职阶率:{{policyItem.Rate}}%</div> -->
<div
*
ngIf=
"policyItem.status"
>
体系:{{policyItem.SaleSystem}}
</div>
<div
*
ngIf=
"policyItem.status"
>
分佣比率:{{policyItem.SalesCommissionRate}}
</div>
<div
*
ngIf=
"policyItem.status"
>
佣奖比率{{policyItem.Rate}}
</div>
<div
*
ngIf=
"policyItem.status"
>
经纪人:{{policyItem.Salestaff}}
</div>
</div>
<div
class=
"money"
(
click
)="
shrink
(
policyItem
)"
>
...
...
@@ -34,7 +36,7 @@
<div
class=
"line_item"
>
<div>
体系名称:{{systemItem.SaleSystem}}
</div>
<div>
体系FYC/RYC:{{systemItem['FYC/RYC'] | number: "1.2-2"}}
</div>
<
!-- <div>佣奖比例:{{systemItem.Rate}}%</div> --
>
<
div>
佣奖比例:{{systemItem.Rate}}%
</div
>
</div>
<div
class=
"money"
style=
"top: 30px;right: 10px;"
*
ngIf=
"isBasic==0"
>
¥{{(systemItem['FYC/RYC']) * (systemItem.Rate/100 ) | number: "1.2-2"}}
...
...
src/app/my/salary-first-year/salary-first-year.component.ts
View file @
002e1557
...
...
@@ -78,6 +78,7 @@ export class SalaryFirstYearComponent implements OnInit {
* 20.隔代辅导岗位津贴-》保单
* 21.团队长辅导津贴-》体系
* 22.育成奖金-》体系
* 23.直接销售加码佣金-》保单
*/
searchStaffSalaryDetails
(){
let
param
=
{
...
...
@@ -125,6 +126,8 @@ export class SalaryFirstYearComponent implements OnInit {
this
.
systemList
=
res
[
'data'
][
'tlcoachingAllowanceList'
];
}
else
if
(
this
.
salaryType
==
22
){
this
.
systemList
=
res
[
'data'
][
'breedingBonusList'
];
}
else
if
(
this
.
salaryType
==
23
){
this
.
policyList
=
res
[
'data'
][
'direcSalesAddWeightList'
];
}
else
{
this
.
OtherCommissionList
=
res
[
'data'
][
'OtherCommissionList'
];
if
(
this
.
OtherCommissionList
&&
this
.
OtherCommissionList
.
length
){
...
...
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