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
aea996db
Commit
aea996db
authored
Oct 14, 2021
by
Zhang Xiaojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:ui
parent
23d14d85
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
9 deletions
+16
-9
index.vue
src/views/LoanList/index.vue
+9
-7
index.vue
src/views/withMenu/Loan/index.vue
+7
-2
No files found.
src/views/LoanList/index.vue
View file @
aea996db
...
...
@@ -86,7 +86,7 @@ import {
}
from
"@/service/LoanProductService/index"
;
import
{
simpleItemInfo
}
from
"@/views/withMenu/Loan/types"
;
import
{
iLoanProdcutItem
}
from
"@/service/LoanProductService/type"
;
import
{
Skeleton
,
Toast
}
from
"vant"
;
import
{
Skeleton
,
Toast
}
from
"vant"
;
import
{
loanSearchState
,
setSearchResult
,
...
...
@@ -101,7 +101,7 @@ export default defineComponent({
LoanCard
,
LoanFilter
,
Skeleton
,
Toast
Toast
,
},
setup
()
{
const
mode
=
ref
(
+
useRoute
().
params
.
mode
);
...
...
@@ -241,10 +241,12 @@ export default defineComponent({
checkInterstValid
():
boolean
{
let
isValid
=
true
;
if
(
this
.
max
&&
this
.
min
)
{
isValid
=
false
;
if
(
this
.
max
<=
this
.
min
)
Toast
.
fail
(
"最高利率必须大于最低利率"
);
}
else
{
isValid
=
true
;
if
(
this
.
max
<=
this
.
min
)
{
isValid
=
false
;
Toast
.
fail
(
"最高利率必须大于最低利率"
);
}
else
{
isValid
=
true
;
}
}
return
isValid
;
},
...
...
@@ -305,7 +307,7 @@ export default defineComponent({
min2
:
this
.
min2
,
max2
:
this
.
max2
,
};
if
(
this
.
checkAmountValid
()
&&
this
.
checkInterstValid
())
{
if
(
this
.
checkAmountValid
()
&&
this
.
checkInterstValid
())
{
this
.
queryList
();
this
.
show
=
false
;
}
...
...
src/views/withMenu/Loan/index.vue
View file @
aea996db
...
...
@@ -24,11 +24,16 @@
</div>
</div>
<div
class=
"main8 flex-col"
v-if=
"eLoanMode.personal === mode"
>
<div
class=
"outer4 flex-row"
>
<div
class=
" text-white text-lg flex items-center mt-5 justify-center"
>
<div
class=
" border-b border-white w-14 mr-4 border-opacity-25"
></div>
个人小额借款(元)
<div
class=
" border-b border-white w-14 ml-4 border-opacity-25"
></div>
</div>
<!--
<div
class=
"outer4 flex-row"
>
<div
class=
"outer5 flex-col"
></div>
<span
class=
"word26"
>
个人小额借款(元)
</span>
<div
class=
"outer6 flex-col"
></div>
</div>
</div>
-->
<div
class=
"outer7 flex-row"
>
<div
class=
"section8 flex-col"
>
<span
class=
"paragraph1"
>
...
...
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