Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
liexin_supplier
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
74a757cf
authored
Aug 18, 2021
by
mushishixian
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修复js接受参数问题
parent
159fddde
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
resources/views/script/ApplySupplierShareScript.blade.php
resources/views/script/ApplySupplierShareScript.blade.php
View file @
74a757cf
...
...
@@ -44,8 +44,11 @@
//点击校验按钮
$
(
'#check_apply_supplier_share'
).
click
(
function
()
{
let
supplierName
=
$
(
'#supplier_name'
).
val
();
let
url
=
'/api/supplier_share_apply/CheckApplySupplierShare?supplier_name='
+
supplierName
;
let
res
=
ajax
(
url
);
let
url
=
'/api/supplier_share_apply/CheckApplySupplierShare'
;
let
data
=
{
supplier_name
:
supplierName
}
let
res
=
ajax
(
url
,
data
);
if
(
res
.
err_code
===
0
)
{
layer
.
msg
(
res
.
err_msg
,
{
icon
:
6
});
//设置对应的supplier_id,后端暂时放到res.count这个字段吧...
...
...
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