Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
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
罗超
SuperMan
Commits
b2b30002
Commit
b2b30002
authored
Jun 07, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
16dd82ca
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
222 deletions
+56
-222
ImpressionTicketCommissionConfiguration.vue
...nancialModule/ImpressionTicketCommissionConfiguration.vue
+3
-3
ImpressionTicketCommission.vue
...Module/ImpressionTicketing/ImpressionTicketCommission.vue
+2
-2
ImpressionTicketDetails.vue
...ialModule/ImpressionTicketing/ImpressionTicketDetails.vue
+36
-6
ImpressionTicketUserDetails.vue
...odule/ImpressionTicketing/ImpressionTicketUserDetails.vue
+15
-211
No files found.
src/components/FinancialModule/ImpressionTicketCommissionConfiguration.vue
View file @
b2b30002
...
...
@@ -66,7 +66,7 @@
>
<tr>
<td
rowspan=
"2"
width=
"100"
style=
"min-width: 100px;"
>
工资
</td>
<td
rowspan=
"2"
width=
"100"
style=
"min-width: 100px;"
>
追加
工资
</td>
<th
style=
"min-width: 220px;"
v-for=
"( son , sIndex ) in item.WageRateList"
:key=
"sIndex"
...
...
@@ -80,7 +80,7 @@
</th>
</tr>
<tr>
<td
style=
"min-width: 220px;"
v-for=
"( son , sIndex ) in item.WageRateList"
:key=
"sIndex"
>
{{ son.Rate }}
</td>
<td
style=
"min-width: 220px;"
v-for=
"( son , sIndex ) in item.WageRateList"
:key=
"sIndex"
>
+
{{ son.Rate }}
</td>
</tr>
</table>
</div>
...
...
@@ -172,7 +172,7 @@
</div>
<div>
<el-form-item
:label=
"form.WageRateList.length>0?`工资 ${index+1} `:` ` "
:label=
"form.WageRateList.length>0?`
追加
工资 ${index+1} `:` ` "
:prop=
"`WageRateList.${index}.Rate`"
:rules=
"rules.Rate"
label-width=
"100px"
...
...
src/components/FinancialModule/ImpressionTicketing/ImpressionTicketCommission.vue
View file @
b2b30002
...
...
@@ -48,7 +48,7 @@
<table
v-loading=
"loading"
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
<tr>
<th>
期数
</th>
<th>
总工资
</th>
<th>
总
追加
工资
</th>
<th>
总提成
</th>
<th>
总年终
</th>
<th>
财务单据
</th>
...
...
@@ -58,7 +58,7 @@
<tr
v-for=
"item in dataList"
>
<td>
{{
item
.
Periods
}}
</td>
<td>
<p>
{{
item
.
SumWage
}}
</p>
<p>
+
{{
item
.
SumWage
}}
</p>
</td>
<td>
{{
item
.
SumCommission
}}
</td>
...
...
src/components/FinancialModule/ImpressionTicketing/ImpressionTicketDetails.vue
View file @
b2b30002
...
...
@@ -23,7 +23,12 @@
text-decoration
:
underline
;
color
:
red
;
}
.cursor-p
{
cursor
:
pointer
;
}
.cursor-p
:hover
{
color
:
#409EFF
;
}
</
style
>
<
template
>
<div
class=
"flexOne domesticCommissiondetails"
>
...
...
@@ -78,8 +83,9 @@
<th>
订单号
</th>
<th>
订单利润
</th>
<th>
应发
</th>
<th>
提成
</th>
<th>
当期
提成
</th>
<th>
提成比例
</th>
<th>
依据类型
</th>
<th>
年终
</th>
<th>
年终比例
</th>
<th>
期数
</th>
...
...
@@ -98,28 +104,45 @@
<td>
{{
item
.
YCommission
}}
</td>
<td>
{{
item
.
Commission
}}
</td>
<td>
{{
item
.
CommissionRate
}}
%
</td>
<td>
{{
item
.
BonusMoney
}}
</td>
<td>
{{
item
.
BonusRate
}}
%
</td>
<td
@
click=
"GenerateScale(item)"
>
<span
:class=
"item.WageReId?'cursor-p':''"
>
{{
item
.
WageType
==
1
?
'新员工比例'
:
item
.
WageType
==
2
?
'上季度定档'
:
'-'
}}
</span>
</td>
<td>
{{
item
.
BranchName
!=
'微途科技'
?
item
.
BonusMoney
:
'-'
}}
</td>
<td>
{{
item
.
BranchName
!=
'微途科技'
?
item
.
BonusRate
+
'%'
:
'-'
}}
</td>
<td>
{{
item
.
Month
}}
</td>
<td>
{{
item
.
Remark
?
item
.
Remark
:
'-'
}}
</td>
</tr>
<tr
v-if=
"dataList.length==0"
>
<td
style=
"text-align:center"
colspan=
"1
3
"
>
暂无数据
</td>
<td
style=
"text-align:center"
colspan=
"1
5
"
>
暂无数据
</td>
</tr>
</table>
<!-- 分页 -->
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next, jumper"
:page-size=
'msg.pageSize'
:total=
'total'
>
</el-pagination>
<!-- 查看生成比例 -->
<el-dialog
custom-class=
'w1006'
title=
"员工生成比例"
:visible
.
sync=
"outerVisible"
center
>
<inAccordanceWith
v-if=
"objNew"
:msgNew=
"objNew"
></inAccordanceWith>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"outerVisible = false"
>
取消
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"outerVisible = false"
>
确定
</button>
</div>
</el-dialog>
</div>
</
template
>
<
script
>
import
inAccordanceWith
from
"./inAccordanceWithDialog"
import
moment
from
"moment"
export
default
{
components
:{
inAccordanceWith
},
data
()
{
return
{
objNew
:{},
outerVisible
:
false
,
Month
:
moment
().
format
(
"YYYY-MM"
),
msg
:
{
pageIndex
:
1
,
...
...
@@ -163,6 +186,13 @@
}
},
methods
:
{
GenerateScale
(
item
){
if
(
!
item
.
WageReId
){
return
}
this
.
objNew
=
item
this
.
outerVisible
=
true
},
GetCommissionPeroidsList
()
{
//期数下拉
this
.
crmapipost
(
"/api/Commission/GetCommissionPeroidsList"
,{},
res
=>
{
...
...
src/components/FinancialModule/ImpressionTicketing/ImpressionTicketUserDetails.vue
View file @
b2b30002
This diff is collapsed.
Click to expand it.
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