Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
robot-monitor
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
汪晓凯
robot-monitor
Commits
311ff67d
Commit
311ff67d
authored
Aug 08, 2018
by
汪晓凯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
限制input输入类型
parent
1d988fc6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
account.vue
src/views/account.vue
+7
-7
No files found.
src/views/account.vue
View file @
311ff67d
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
</el-dialog>
</el-dialog>
<el-form>
<el-form>
<el-form-item
label=
"充值数量"
label-width=
"120px"
>
<el-form-item
label=
"充值数量"
label-width=
"120px"
>
<el-input
v-model=
"amount_num"
></el-input>
<el-input
v-model=
"amount_num"
type=
"number"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"充值币种"
label-width=
"120px"
>
<el-form-item
label=
"充值币种"
label-width=
"120px"
>
<el-input
v-model=
"account_symbol"
:disabled=
"true"
></el-input>
<el-input
v-model=
"account_symbol"
:disabled=
"true"
></el-input>
...
@@ -190,13 +190,13 @@
...
@@ -190,13 +190,13 @@
<el-input
v-model=
"coin"
:disabled=
"true"
></el-input>
<el-input
v-model=
"coin"
:disabled=
"true"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"资产最低值"
label-width=
"120px"
>
<el-form-item
label=
"资产最低值"
label-width=
"120px"
>
<el-input
v-model=
"min_amount"
></el-input>
<el-input
v-model=
"min_amount"
type=
"number"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"自动充值金额"
label-width=
"120px"
>
<el-form-item
label=
"自动充值金额"
label-width=
"120px"
>
<el-input
v-model=
"recharge_amount"
></el-input>
<el-input
v-model=
"recharge_amount"
type=
"number"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"日最大充值次数"
label-width=
"120px"
>
<el-form-item
label=
"日最大充值次数"
label-width=
"120px"
>
<el-input
v-model=
"max_recharge_times"
></el-input>
<el-input
v-model=
"max_recharge_times"
type=
"number"
></el-input>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
...
@@ -529,9 +529,9 @@
...
@@ -529,9 +529,9 @@
Item
=
item
;
Item
=
item
;
}
}
})
})
this
.
min_amount
=
Item
.
min_amount
;
this
.
min_amount
=
Item
.
min_amount
===
'--'
?
''
:
Item
.
min_amount
;
this
.
recharge_amount
=
Item
.
recharge_amount
;
this
.
recharge_amount
=
Item
.
recharge_amount
===
'--'
?
''
:
Item
.
recharge_amount
;
this
.
max_recharge_times
=
Item
.
max_recharge_times
;
this
.
max_recharge_times
=
Item
.
max_recharge_times
===
'--'
?
''
:
Item
.
max_recharge_times
;
},
},
//弹框确认
//弹框确认
sure_recharge1
(){
sure_recharge1
(){
...
...
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