...
|
...
|
@@ -110,14 +110,14 @@ |
|
|
</div>
|
|
|
<div class="order_Etc2">
|
|
|
<p class="order_EtcTxt">买家留言</p>
|
|
|
<textarea placeholder="在此填写您的留言"></textarea>
|
|
|
<textarea placeholder="在此填写您的留言" id="liuyan"></textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 底部 -->
|
|
|
<div class="order_bottom">
|
|
|
<div class="order_bottom1">
|
|
|
<p class="order_bottomHe">合计金额:</p>
|
|
|
<p class="de_topTxt1_1 zoji">¥<span>{$money}</span></p>
|
|
|
<p class="de_topTxt1_1 zoji">¥<span id="money">{$money}</span></p>
|
|
|
</div>
|
|
|
<div class="order_bottom2" onclick="go_pay()">立即支付</div>
|
|
|
</div>
|
...
|
...
|
@@ -147,7 +147,16 @@ |
|
|
}else if(detailed == ''){
|
|
|
alert('地址不能为空');
|
|
|
}else{
|
|
|
|
|
|
liuyan = $('#liuyan').val();
|
|
|
indet_id = {$indet_id};
|
|
|
money = $('#money').text();
|
|
|
$.post("{:url('Orderpage/salesman_go_pay')}",{leave_word:liuyan,id:indet_id,money:money},function(data){
|
|
|
if(data){
|
|
|
window.location.href = "{:url('Pay/index',array('id'=>$indent_id))}";
|
|
|
}else{
|
|
|
alert('更新订单失败');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|