Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
2c3dced0
Commit
2c3dced0
authored
Mar 31, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
付款单,佣金付款单,审核详情添加申请理由
parent
87da9eeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
PaymentApproval.vue
src/views/ecw/financial/components/PaymentApproval.vue
+5
-2
commissionPaymentDetails.vue
...ews/ecw/financial/components/commissionPaymentDetails.vue
+2
-1
No files found.
src/views/ecw/financial/components/PaymentApproval.vue
View file @
2c3dced0
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
<
/template></
el
-
descriptions
-
item
>
<
/template></
el
-
descriptions
-
item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('业务员')
"
>
{{
form
.
salesmanName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('业务员')
"
>
{{
form
.
salesmanName
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('付款金额')
"
>
{{
paymentMoney
}}
{{
$t
(
'
人民币
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
:
label
=
"
$t('付款金额')
"
>
{{
paymentMoney
}}
{{
$t
(
'
人民币
'
)
}}
<
/el-descriptions-item
>
<
el
-
descriptions
-
item
v
-
if
=
"
reason
"
:
label
=
"
$t('申请理由')
"
>
{{
reason
}}
<
/el-descriptions-item
>
<
/el-descriptions
>
<
/el-descriptions
>
<
div
class
=
"
btn
"
>
<
div
class
=
"
btn
"
>
<
el
-
button
<
el
-
button
...
@@ -37,7 +38,8 @@ export default {
...
@@ -37,7 +38,8 @@ export default {
form
:
{
}
,
form
:
{
}
,
list
:[],
list
:[],
paymentId
:
0
,
paymentId
:
0
,
paymentMoney
:
0
paymentMoney
:
0
,
reason
:
''
}
}
}
,
}
,
watch
:{
watch
:{
...
@@ -58,7 +60,8 @@ export default {
...
@@ -58,7 +60,8 @@ export default {
getData
(){
getData
(){
getPaymentApprove
(
this
.
id
).
then
(
res
=>
{
getPaymentApprove
(
this
.
id
).
then
(
res
=>
{
if
(
res
.
data
.
paymentId
){
if
(
res
.
data
.
paymentId
){
this
.
paymentId
=
res
.
data
.
paymentId
this
.
paymentId
=
res
.
data
.
paymentId
;
this
.
reason
=
res
.
data
.
reason
;
this
.
getPayableInfo
()
this
.
getPayableInfo
()
}
}
}
)
}
)
...
...
src/views/ecw/financial/components/commissionPaymentDetails.vue
View file @
2c3dced0
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<el-descriptions-item
label=
"创建时间"
>
{{
parseTime
(
record
.
createTime
)
}}
</el-descriptions-item>
<el-descriptions-item
label=
"创建时间"
>
{{
parseTime
(
record
.
createTime
)
}}
</el-descriptions-item>
<el-descriptions-item
label=
"业务员"
>
{{
record
.
salesmanName
}}
</el-descriptions-item>
<el-descriptions-item
label=
"业务员"
>
{{
record
.
salesmanName
}}
</el-descriptions-item>
<el-descriptions-item
label=
"付款金额"
>
{{
record
.
totalAmount
}}
rmb
</el-descriptions-item>
<el-descriptions-item
label=
"付款金额"
>
{{
record
.
totalAmount
}}
rmb
</el-descriptions-item>
<el-descriptions-item
v-if=
"record.
bmpStatus === 3"
label=
"驳回原因"
>
{{
record
.
comment
}}
</el-descriptions-item>
<el-descriptions-item
v-if=
"record.
reason"
label=
"申请理由"
>
{{
record
.
reason
}}
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
<router-link
:to=
"
{path:'/financial/commission-requestFunds',query:{lookId: this.record.id}}">
<router-link
:to=
"
{path:'/financial/commission-requestFunds',query:{lookId: this.record.id}}">
<el-button
type=
"primary"
>
查看详情
</el-button>
<el-button
type=
"primary"
>
查看详情
</el-button>
...
@@ -39,6 +39,7 @@ export default {
...
@@ -39,6 +39,7 @@ export default {
commissionPaymentGetPaymentApprove
({
id
:
newVal
}).
then
(
r
=>
{
commissionPaymentGetPaymentApprove
({
id
:
newVal
}).
then
(
r
=>
{
getCommissionPayment
({
id
:
r
.
data
.
paymentId
}).
then
(
res
=>
{
getCommissionPayment
({
id
:
r
.
data
.
paymentId
}).
then
(
res
=>
{
this
.
record
=
res
.
data
;
this
.
record
=
res
.
data
;
this
.
record
.
reason
=
r
.
data
.
reason
//申请理由
})
})
})
})
},
},
...
...
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