Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fns_front_2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenqikuai
fns_front_2
Commits
248b821f
Commit
248b821f
authored
Oct 14, 2021
by
Zhang Xiaojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
729679e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
26 deletions
+2
-26
index.vue
src/components/PopUpContent/LoanFilter/index.vue
+0
-24
index.vue
src/views/LoanList/index.vue
+2
-2
No files found.
src/components/PopUpContent/LoanFilter/index.vue
View file @
248b821f
...
...
@@ -134,30 +134,6 @@ export default defineComponent({
required
:
true
,
},
},
methods
:
{
// checkInterstValid(): boolean {
// let isValid = false;
// if (this.max && this.min) {
// isValid = false;
// if (this.max
<=
this
.
min
)
Toast
.
fail
(
"最高利率必须大于最低利率"
);
// } else {
// isValid = true;
// }
// return isValid;
// },
// checkAmountValid(): boolean {
// let isValid = false;
// if (this.max2 && this.min2) {
// if (this.max2
<=
this
.
min2
)
{
// isValid = false;
// Toast.fail("最高额度必须大于最低额度");
// } else {
// isValid = true;
// }
// }
// return isValid;
// },
},
computed
:
{
min_
:
{
get
():
number
|
string
|
undefined
{
...
...
src/views/LoanList/index.vue
View file @
248b821f
...
...
@@ -239,7 +239,7 @@ export default defineComponent({
this
.
show
=
v
;
},
checkInterstValid
():
boolean
{
let
isValid
=
fals
e
;
let
isValid
=
tru
e
;
if
(
this
.
max
&&
this
.
min
)
{
isValid
=
false
;
if
(
this
.
max
<=
this
.
min
)
Toast
.
fail
(
"最高利率必须大于最低利率"
);
...
...
@@ -249,7 +249,7 @@ export default defineComponent({
return
isValid
;
},
checkAmountValid
():
boolean
{
let
isValid
=
fals
e
;
let
isValid
=
tru
e
;
if
(
this
.
max2
&&
this
.
min2
)
{
if
(
this
.
max2
<=
this
.
min2
)
{
isValid
=
false
;
...
...
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