Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-finance-web
Project
Project
Details
Activity
Releases
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
刘怀志
pet-finance-web
Commits
3d1c9f25
Commit
3d1c9f25
authored
Aug 23, 2023
by
刘怀志
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
66310 缴费管理,小程序端会员卡支付的数据支付方式等未显示值
parent
e93ca7fd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
10 deletions
+30
-10
expenditure-detail.vue
...-management/expenditure-management/expenditure-detail.vue
+6
-2
expenditure-management.vue
...agement/expenditure-management/expenditure-management.vue
+1
-1
payment-detail.vue
...inancial-management/payment-management/payment-detail.vue
+6
-2
payment-management.vue
...cial-management/payment-management/payment-management.vue
+1
-1
payment-single-detail.vue
...l-management/payment-management/payment-single-detail.vue
+5
-1
refund-modle.vue
...management/revenue-management/components/refund-modle.vue
+5
-1
revenue-detail.vue
...inancial-management/revenue-management/revenue-detail.vue
+5
-1
revenue-management.vue
...cial-management/revenue-management/revenue-management.vue
+1
-1
No files found.
src/views/financial-management/expenditure-management/expenditure-detail.vue
View file @
3d1c9f25
...
...
@@ -540,7 +540,11 @@ color: #333333;"
{{
scope
.
row
.
amountAfterTrade
===
'0'
?
'0'
:
(
scope
.
row
.
tradeType
===
'7'
?
'+'
:
'-'
)
+
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
/>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
>
<
template
slot-scope=
"scope"
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作项目"
prop=
"tradeType"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
tradeType
?
(
tradeTypeMap
[
scope
.
row
.
tradeType
])
:
'-'
}}
...
...
@@ -863,7 +867,7 @@ color: #333333;"
</el-table-column>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
payRecipient
||
'-'
}}
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作时间"
prop=
"createTime"
/>
...
...
src/views/financial-management/expenditure-management/expenditure-management.vue
View file @
3d1c9f25
...
...
@@ -152,7 +152,7 @@
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"操作人"
min
-
width
=
"70"
prop
=
"payRecipient"
show
-
overflow
-
tooltip
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/span
>
<
span
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
v
-
if
=
"deptLevel === '2'"
align
=
"left"
label
=
"宠主姓名"
min
-
width
=
"70"
prop
=
"petOwnerName"
show
-
overflow
-
tooltip
>
...
...
src/views/financial-management/payment-management/payment-detail.vue
View file @
3d1c9f25
...
...
@@ -542,7 +542,7 @@ color: #333333;"
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"收费人"
prop
=
"payRecipient"
show
-
overflow
-
tooltip
>
<
template
slot
-
scope
=
"scope"
>
{{
scope
.
row
.
payRecipient
?
`${scope.row.payRecipient
}
`
:
'-'
}}
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
...
...
@@ -606,7 +606,11 @@ color: #333333;"
{{
scope
.
row
.
amountAfterTrade
===
'0'
?
'0'
:
(
scope
.
row
.
tradeType
===
'7'
?
'+'
:
'-'
)
+
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"操作人"
prop
=
"payRecipient"
/>
<
el
-
table
-
column
align
=
"left"
label
=
"操作人"
prop
=
"payRecipient"
>
<
template
slot
-
scope
=
"scope"
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"操作项目"
prop
=
"tradeType"
>
<
template
slot
-
scope
=
"scope"
>
{{
scope
.
row
.
tradeType
?
(
tradeTypeMap
[
scope
.
row
.
tradeType
])
:
'-'
}}
...
...
src/views/financial-management/payment-management/payment-management.vue
View file @
3d1c9f25
...
...
@@ -166,7 +166,7 @@
</el-table-column>
<el-table-column
align=
"left"
label=
"收费人"
min-width=
"70"
prop=
"payRecipient"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
tradeType
===
'1'
?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</span>
<span>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)
?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
align=
"left"
label=
"缴费时间"
min-width=
"80"
prop=
"paymentTime"
show-overflow-tooltip
>
...
...
src/views/financial-management/payment-management/payment-single-detail.vue
View file @
3d1c9f25
...
...
@@ -421,7 +421,11 @@ color: #333333;"
{{
scope
.
row
.
paymentAmount
?
(
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
)
:
'-'
}}
</
template
>
</el-table-column>
<el-table-column
align=
"left"
label=
"操作人"
prop=
"payRecipient"
/>
<el-table-column
align=
"left"
label=
"操作人"
prop=
"payRecipient"
>
<
template
slot-scope=
"scope"
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</
template
>
</el-table-column>
<el-table-column
align=
"left"
label=
"操作项目"
prop=
"tradeType"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
tradeType
?
(
tradeTypeMap
[
scope
.
row
.
tradeType
])
:
'-'
}}
...
...
src/views/financial-management/revenue-management/components/refund-modle.vue
View file @
3d1c9f25
...
...
@@ -107,7 +107,11 @@
{{
scope
.
row
.
paymentAmount
?
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
:
'-'
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
/>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
>
<
template
slot-scope=
"scope"
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作项目"
prop=
"tradeType"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
tradeType
?
(
tradeTypeMap
[
scope
.
row
.
tradeType
])
:
'-'
}}
...
...
src/views/financial-management/revenue-management/revenue-detail.vue
View file @
3d1c9f25
...
...
@@ -546,7 +546,11 @@ color: #333333;"
{{
scope
.
row
.
amountAfterTrade
===
'0'
?
'0'
:
(
scope
.
row
.
tradeType
===
'7'
?
'+'
:
'-'
)
+
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
/>
<el-table-column
align=
"center"
label=
"操作人"
prop=
"payRecipient"
>
<
template
slot-scope=
"scope"
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"操作项目"
prop=
"tradeType"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
tradeType
?
(
tradeTypeMap
[
scope
.
row
.
tradeType
])
:
'-'
}}
...
...
src/views/financial-management/revenue-management/revenue-management.vue
View file @
3d1c9f25
...
...
@@ -141,7 +141,7 @@
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"收费人"
min
-
width
=
"70"
prop
=
"payRecipient"
show
-
overflow
-
tooltip
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
scope
.
row
.
tradeType
===
'1'
?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/span
>
<
span
>
{{
(
scope
.
row
.
tradeType
===
'1'
&&
scope
.
row
.
payType
===
'3'
)
?
'百邦宠物平台'
:
(
scope
.
row
.
payRecipient
||
'-'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
v
-
if
=
"deptLevel === '2'"
align
=
"left"
label
=
"宠主姓名"
min
-
width
=
"70"
prop
=
"petOwnerName"
show
-
overflow
-
tooltip
>
...
...
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