|
@@ -139,7 +139,12 @@
|
|
amount = amount / 100;
|
|
amount = amount / 100;
|
|
|
|
|
|
$('#order-name').text(body);
|
|
$('#order-name').text(body);
|
|
- $('#order-time').text(bookingTime);
|
|
|
|
|
|
+ if (bookingTime){
|
|
|
|
+ $('#order-time').text(bookingTime);
|
|
|
|
+ }else {
|
|
|
|
+ $('#order-time').parent().hide();
|
|
|
|
+ }
|
|
|
|
+
|
|
$('#order-result').text(amount+'元');
|
|
$('#order-result').text(amount+'元');
|
|
|
|
|
|
$('.btn-pay').click(function() {
|
|
$('.btn-pay').click(function() {
|