Commit b7e110d7 by 朱继来

Merge branch 'zjl_merge_20200821'

parents 202f41b1 7fb57c7a
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
} }
} }
var joint_goods_type = ['1', '2']; // 商品联营类型 var joint_goods_type = [1, 2]; // 商品联营类型
if (joint_goods_type.indexOf(data.goods_type) != -1) { if (joint_goods_type.indexOf(data.goods_type) != -1) {
html += '<th>USD价格</th>'; html += '<th>USD价格</th>';
...@@ -502,12 +502,13 @@ ...@@ -502,12 +502,13 @@
} }
if (num < min_buy) { if (num < min_buy) {
num = min_buy; self.val(min_buy);
layer.msg('购买数量低于最小起订量,默认调整为最小起订量'); layer.msg('购买数量低于最小起订量,默认调整为最小起订量');
return
} }
var curr_goods_type = $(this).parents('tr').data('goods_type'); var curr_goods_type = $(this).parents('tr').data('goods_type');
var joint_goods_type = ['1', '2']; // 商品联营类型 var joint_goods_type = [1, 2]; // 商品联营类型
// if (goods_type == 1) { // 联营需要选择交货地 // if (goods_type == 1) { // 联营需要选择交货地
if (joint_goods_type.indexOf(curr_goods_type) != -1) { if (joint_goods_type.indexOf(curr_goods_type) != -1) {
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
<title>订单管理后台 | 更改发票</title> <title>订单管理后台 | 更改发票</title>
<script>document.domain="{{ Config::get('website.domain') }}";</script> <script>document.domain="{{ Config::get('website.domain') }}";</script>
@include('orderlist.css') @include('detail.css')
@include('orderlist.js') @include('detail.js')
</head> </head>
<body class=""> <body class="">
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
<title>订单管理后台 | 更改收货地址</title> <title>订单管理后台 | 更改收货地址</title>
<script>document.domain="{{ Config::get('website.domain') }}";</script> <script>document.domain="{{ Config::get('website.domain') }}";</script>
@include('orderlist.css') @include('detail.css')
@include('orderlist.js') @include('detail.js')
</head> </head>
<body class=""> <body class="">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment