Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
41a94eab
authored
May 07, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整调价输入值
parent
f5d11f89
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
public/js/order.js
resources/views/detail/changeOrder.blade.php
public/js/order.js
View file @
41a94eab
...
...
@@ -1030,6 +1030,12 @@
}
}
if
(
$
(
this
).
val
()
<
0
)
{
layer
.
msg
(
'只能是正整数'
);
$
(
this
).
val
(
''
);
return
false
;
}
if
(
$
(
this
).
val
()
>
999999.9999
){
$
(
this
).
val
(
999999.9999
);
}
...
...
resources/views/detail/changeOrder.blade.php
View file @
41a94eab
...
...
@@ -88,7 +88,7 @@
<tr>
<td><p>
{{$v['goods_name']}}
</p></td>
<td>
<input
class=
"only_positive_nubme num"
name=
"change_info[{{$v['rec_id']}}][goods_number]"
value=
"{{$v['goods_number']}}"
>
<input
class=
"only_positive_nubme
only_number
num"
name=
"change_info[{{$v['rec_id']}}][goods_number]"
value=
"{{$v['goods_number']}}"
>
</td>
<td>
<input
class=
"price only_number"
name=
"change_info[{{$v['rec_id']}}][goods_price]"
value=
"{{$v['goods_price']}}"
>
...
...
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