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
c22ee118
Commit
c22ee118
authored
Sep 22, 2023
by
刘怀志
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
挂号费为0修改
parent
c2b4c75e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
constant.js
src/views/financial-management/constant.js
+1
-0
revenue-detail.vue
...inancial-management/revenue-management/revenue-detail.vue
+1
-1
revenue-management.vue
...cial-management/revenue-management/revenue-management.vue
+2
-2
No files found.
src/views/financial-management/constant.js
View file @
c22ee118
...
...
@@ -144,6 +144,7 @@ export const refundTypeMap = {
'6'
:
'退回会员卡余额'
}
export
const
payTypeMap
=
{
'-1'
:
'-'
,
'0'
:
'现结'
,
'1'
:
'会员卡余额结算'
,
'2'
:
'住院押金结算'
,
...
...
src/views/financial-management/revenue-management/revenue-detail.vue
View file @
c22ee118
...
...
@@ -922,7 +922,7 @@ color: #333333;"
>
入 账
</el-button>
<el-button
v-if=
"!(rowData.tradeType === '6' || rowData.entryStatus === '1' || rowData.refundType === '1')"
v-if=
"!(rowData.tradeType === '6' || rowData.entryStatus === '1' || rowData.refundType === '1'
||rowData.payType === '-1'
)"
:class=
"!(rowData.entryStatus === '1' || rowData.tradeType === '7') ? 'resetBtn' : 'queryBtn'"
icon=
"el-icon-check"
@
click=
"refund(rowData)"
...
...
src/views/financial-management/revenue-management/revenue-management.vue
View file @
c22ee118
...
...
@@ -133,7 +133,7 @@
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"支付金额"
min
-
width
=
"70"
prop
=
"paymentAmount"
show
-
overflow
-
tooltip
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
scope
.
row
.
paymentAmount
?
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
:
'-'
}}
<
/span
>
<
span
>
{{
scope
.
row
.
paymentAmount
||
scope
.
row
.
paymentAmount
===
0
?
moneyFormat
(
scope
.
row
.
paymentAmount
)
+
' 元'
:
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"left"
label
=
"支付方式"
min
-
width
=
"70"
prop
=
"payType"
show
-
overflow
-
tooltip
>
...
...
@@ -205,7 +205,7 @@
v
-
hasPermi
=
"['finance:revenue:refund']"
plain
size
=
"mini"
:
disabled
=
"scope.row.tradeType === '6' || scope.row.entryStatus === '1' || scope.row.refundType === '1'"
:
disabled
=
"scope.row.tradeType === '6' || scope.row.entryStatus === '1' || scope.row.refundType === '1'
|| scope.row.payType === '-1'
"
class
=
"el-button--warning--solid"
type
=
"warning"
@
click
=
"refund(scope.row)"
...
...
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