|
@@ -344,7 +344,7 @@
|
|
<table class="table table-striped table-bordered table-condensed pay-table">
|
|
<table class="table table-striped table-bordered table-condensed pay-table">
|
|
<tr>
|
|
<tr>
|
|
<th style="width:20px;">
|
|
<th style="width:20px;">
|
|
- <input type="checkbox" data-shoporderid="${s.shopOrderID}" data-shopid="${s.shopID}" data-isPayShopOtherFee="${s.payShopOtherFee}"/>
|
|
|
|
|
|
+ <input type="checkbox" class="checkShop" data-shoporderid="${s.shopOrderID}" data-shopid="${s.shopID}" data-isPayShopOtherFee="${s.payShopOtherFee}" onclick="changeCheck()"/>
|
|
</th>
|
|
</th>
|
|
<th>子订单编号(ID)</th>
|
|
<th>子订单编号(ID)</th>
|
|
<th colspan="3">订单编号(ID)</th>
|
|
<th colspan="3">订单编号(ID)</th>
|
|
@@ -623,6 +623,14 @@
|
|
<div class="pagination">${page}</div>
|
|
<div class="pagination">${page}</div>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+ function changeCheck(){
|
|
|
|
+ var checked = $('input[type=checkbox]:checked');
|
|
|
|
+ if (checked.length >= 1) {
|
|
|
|
+ // $(".checkShop").attr('disabled','true');
|
|
|
|
+ alertx("请最多选择一个子订单进行结算");
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
(function () {
|
|
(function () {
|
|
var payTableEle = $('.pay-table'),
|
|
var payTableEle = $('.pay-table'),
|
|
payProductEle = $('.pay-product-item');
|
|
payProductEle = $('.pay-product-item');
|