Skip to content

Commit 6cb4478

Browse files
committed
修改发票提示信息
1 parent 5da2d2d commit 6cb4478

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

www/cart/order.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,11 @@ <h4>Pyarmor 马上有一个重大升级,预计在 2023年3月8号 之前发布
320320
<div class="panel panel-default" style="margin-top: 1em; border: 0;">
321321
<div class="">
322322
<div class="payment-way" id="payment-weixin">
323-
<button type="button" class="btn btn-success weixin-payment-link" data-toggle="modal" data-target=".popup-weixin-payment">微信扫码支付 298元</button>
323+
<button type="button" class="btn btn-success weixin-payment-link" data-toggle="modal" data-target=".popup-weixin-payment">微信扫码支付 298元(无发票)</button>
324324
<p class="help-block" style="display: none;">如果需要收款人姓名校验二维码,请填写<strong>赵俊德</strong></p>
325325
</div>
326326
<div class="payment-way" id="payment-alipay" style="display: none;">
327-
<button type="button" class="btn btn-success alipay-payment-link" data-toggle="modal" data-target=".popup-alipay-payment">支付宝扫码支付 298元</button>
327+
<button type="button" class="btn btn-success alipay-payment-link" data-toggle="modal" data-target=".popup-alipay-payment">支付宝扫码支付 298元(无发票)</button>
328328
</div>
329329
<div class="payment-way" id="payment-bank" style="display: none;">
330330
<div class="panel panel-default">

www/cart/order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ function setPaymentAmount() {
352352
var tax = document.querySelector( 'input[name="tax"]' ).checked;
353353
var price = tax ? (lic == 'Z' ? '562' : lic == 'G' ? '918' : lic == 'C' ? '569' : '359') :
354354
(lic == 'Z' ? '512' : lic == 'G' ? '868' : lic == 'C' ? '520' : '298');
355-
var unithint = tax ? '元(包含电子发票)' : '元(不包含电子发票)';
355+
var unithint = tax ? '元(有电子发票)' : '元(无发票)';
356356

357357
document.querySelector( '.popup-weixin-payment img' ).src = 'weixin-' + price + '.jpg';
358358
document.querySelector( '.popup-alipay-payment img' ).src = 'alipay-' + price + '.jpg';

0 commit comments

Comments
 (0)