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
06fa5d72
authored
Aug 28, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix conflict
parent
66e85574
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
config/website.php
public/js/add_order.js
resources/views/addOrder/content.blade.php
config/website.php
View file @
06fa5d72
...
...
@@ -48,7 +48,8 @@ return [
'add-user-url'
=>
'http://member.liexin.net/add'
,
// 查询SKUID接口
'search-skuid'
=>
'http://footstone.liexin.net/webapi/sku_list'
,
// 'search-skuid' => 'http://footstone.liexin.net/webapi/sku_list',
'search-skuid'
=>
'http://www.liexin.com/v3/sku/list'
,
// 新增SKU入口
'add-sku-url'
=>
'http://footstone.liexin.net/manage/addsku'
,
...
...
public/js/add_order.js
View file @
06fa5d72
...
...
@@ -264,12 +264,17 @@
var
len
=
data
.
ladder_price
.
length
;
if
(
len
>
0
)
{
var
html
=
''
;
var
str
=
''
;
for
(
var
i
=
0
;
i
<
len
;
i
++
)
{
if
(
goods_type
==
1
)
{
str
=
'<td>$<span>'
+
data
.
ladder_price
[
i
][
'price_us'
]
+
'</span></td>'
;
}
if
(
i
==
0
)
{
html
+=
'<tr><td><span class="goods-min-num">'
+
data
.
ladder_price
[
i
][
'purchases'
]
+
'</span></td><td>¥<span class="goods-min-price">'
+
data
.
ladder_price
[
i
][
'price_cn'
]
+
'</span></td></tr>'
;
html
+=
'<tr><td><span class="goods-min-num">'
+
data
.
ladder_price
[
i
][
'purchases'
]
+
'</span></td><td>¥<span class="goods-min-price">'
+
data
.
ladder_price
[
i
][
'price_cn'
]
+
'</span></td>
'
+
str
+
'
</tr>'
;
}
else
{
html
+=
'<tr><td><span>'
+
data
.
ladder_price
[
i
][
'purchases'
]
+
'</span></td><td>¥<span>'
+
data
.
ladder_price
[
i
][
'price_cn'
]
+
'</span></td></tr>'
;
html
+=
'<tr><td><span>'
+
data
.
ladder_price
[
i
][
'purchases'
]
+
'</span></td><td>¥<span>'
+
data
.
ladder_price
[
i
][
'price_cn'
]
+
'</span></td>
'
+
str
+
'
</tr>'
;
}
}
...
...
resources/views/addOrder/content.blade.php
View file @
06fa5d72
...
...
@@ -329,6 +329,7 @@
<tr>
<th>
阶梯
</th>
<th>
RMB价格
</th>
<th>
USD价格
</th>
</tr>
</table>
</div>
...
...
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