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
67844856
Commit
67844856
authored
Jan 23, 2025
by
chenwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat
✨
: 修改收款单,账单汇率有效期提示, 为空不提示汇率,已过期
parent
3780bc13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
receiptDetail.vue
src/views/ecw/financial/receiptDetail.vue
+17
-5
voucher.vue
src/views/ecw/financial/voucher.vue
+0
-1
No files found.
src/views/ecw/financial/receiptDetail.vue
View file @
67844856
...
...
@@ -233,12 +233,14 @@
<!--
银行收款明细
-->
<
el
-
card
class
=
"
card
"
>
<
div
slot
=
"
header
"
class
=
"
card-title
"
>
{{
$t
(
"
银行收款明细
"
)
}}
<
/div
>
<
div
>
<
el
-
button
type
=
"
primary
"
v
-
if
=
"
form.state != 7 && form.state != 0
"
plain
size
=
"
mini
"
@
click
=
"
handleAddReceiptItem
"
v
-
hasPermi
=
"
['ecw:payment:detail:addBank']
"
style
=
"
padding: 10px; margin-bottom: 10px
"
>
{{
$t
(
"
添加收款明细
"
)
}}
<
/el-button
>
<
div
slot
=
"
header
"
class
=
"
card-title alertHeader
"
>
{{
$t
(
"
银行收款明细
"
)
}}
<
span
class
=
"
redColor
"
v
-
if
=
"
compareDate
"
>
{{
$t
(
"
请注意:汇率已失效
"
)
}}
<
/span
>
<
div
class
=
"
alertBOx
"
>
<
el
-
button
type
=
"
primary
"
v
-
if
=
"
form.state != 7 && form.state != 0
"
plain
size
=
"
mini
"
@
click
=
"
handleAddReceiptItem
"
v
-
hasPermi
=
"
['ecw:payment:detail:addBank']
"
style
=
"
padding: 10px; margin-bottom: 10px
"
>
{{
$t
(
"
添加收款明细
"
)
}}
<
/el-button> <span class="redColor" v-if="compareDate">{{ $t
(
"请注意:汇率已失效"
)
}}
</
span
>
<
/div
>
<
/div
>
<
el
-
table
ref
=
"
multipleTable
"
:
data
=
"
detailed
"
border
row
-
key
=
"
id
"
@
selection
-
change
=
"
handleSelectionChange
"
>
<
el
-
table
-
column
type
=
"
selection
"
width
=
"
50
"
:
reserve
-
selection
=
"
true
"
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('序号')
"
type
=
"
index
"
align
=
"
center
"
width
=
"
50
"
><
/el-table-column
>
...
...
@@ -866,7 +868,8 @@ export default {
compareDate
()
{
const
date1
=
dayjs
(
this
.
form
.
rateValidateDate
)
const
currentTime
=
dayjs
()
if
(
date1
&&
date1
.
isAfter
(
currentTime
))
{
console
.
log
(
"
99999
"
,
currentTime
.
isBefore
(
this
.
form
.
rateValidateDate
))
if
(
!
this
.
form
.
rateValidateDate
||
currentTime
.
isBefore
(
date1
))
{
return
false
}
else
{
return
true
...
...
@@ -1768,6 +1771,7 @@ export default {
}
.
redColor
{
padding
:
0
10
px
;
font
-
size
:
14
px
;
color
:
red
;
}
.
hexiaoCard
{
...
...
@@ -1810,4 +1814,12 @@ export default {
::
v
-
deep
.
warnColor
{
color
:
red
;
}
.
alertHeader
{
display
:
flex
;
}
.
alertBOx
{
display
:
flex
;
align
-
items
:
flex
-
end
;
}
<
/style
>
src/views/ecw/financial/voucher.vue
View file @
67844856
...
...
@@ -116,7 +116,6 @@
<!--
lanbm
2024
-
05
-
14
add
-->
<
el
-
table
-
column
:
label
=
"
$t('明细状态')
"
align
=
"
center
"
prop
=
"
mxStatus
"
>
<
template
slot
-
scope
=
"
{ row
}
"
>
{{
row
.
mxStatus
}}
/
<
dict
-
tag
:
type
=
"
DICT_TYPE.RECEIPT_DETAIL_STATUS
"
:
value
=
"
row.receiptItemStatus
"
/>
<
/template
>
<
/el-table-column
>
...
...
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