Commit 71739dbb by lmf

payapl支付手机版增加安全按钮

parent cc9b9494
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<div class="payment-method" data-bind="css: {'_active': (getCode() == isChecked())}">
<div class="payment-method-title field choice">
<input type="radio"
name="payment[method]"
class="radio"
data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
<label data-bind="attr: {'for': getCode()}" class="label">
<!-- PayPal Logo -->
<img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-medium.png"
data-bind="attr: {alt: $t('Acceptance Mark')}"
class="payment-icon"/>
<!-- PayPal Logo -->
<span data-bind="text: getTitle()"></span>
<a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=AU826TU8&content=/bmlweb/ppwpsiw.html"
data-bind="click: showAcceptanceWindow"
class="action action-help">
<!-- ko i18n: 'See terms' --><!-- /ko -->
</a>
</label>
</div>
<div class="payment-method-content">
<!-- ko foreach: getRegion('messages') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!--/ko-->
<fieldset class="fieldset" data-bind='attr: {id: "payment_form_" + getCode()}'>
<div class="payment-method-note">
<!-- ko i18n: 'You will be redirected to the PayPal website when you place an order.' --><!-- /ko -->
</div>
</fieldset>
<div class="checkout-agreements-block">
<!-- ko foreach: $parent.getRegion('before-place-order') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!--/ko-->
</div>
<div class="payment-method-extra-content">
<each args="$parent.getRegion('paypal-method-extra-content')" render=""/>
</div>
<div class="actions-toolbar">
<div class="primary">2222
<button class="action primary checkout"
type="submit"
data-bind="click: continueToPayPal, enable: (getCode() == isChecked())"
disabled>
<span data-bind="i18n: 'Continue to PayPal'"></span>
</button>
</div>
</div>
</div>
</div>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<div class="payment-method" data-bind="css: {'_active': (getCode() == isChecked())}">
<div class="payment-method-title field choice">
<input type="radio"
name="payment[method]"
class="radio"
data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
<label data-bind="attr: {'for': getCode()}" class="label">
<!-- PayPal Logo -->
<img data-bind="attr: {src: getPaymentAcceptanceMarkSrc(), alt: $t('Acceptance Mark')}" class="payment-icon"/>
<!-- PayPal Logo -->
<span data-bind="text: getTitle()"></span>
<a data-bind="attr: {href: getPaymentAcceptanceMarkHref()}, click: showAcceptanceWindow"
class="action action-help">
<!-- ko i18n: 'What is PayPal?' --><!-- /ko -->
</a>
</label>
</div>
<div class="payment-method-content">
<!-- ko foreach: getRegion('messages') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!--/ko-->
<fieldset class="fieldset" data-bind='attr: {id: "payment_form_" + getCode()}'>
<div class="payment-method-note">
<!-- ko i18n: 'You will be redirected to the PayPal website.' --><!-- /ko -->
</div>
</fieldset>
<div class="checkout-agreements-block">
<!-- ko foreach: $parent.getRegion('before-place-order') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!--/ko-->
</div>
<div class="payment-method-extra-content">
<each args="$parent.getRegion('paypal-method-extra-content')" render=""/>
</div>
<div class="actions-toolbar">
<div class="primary">111111
<button class="action primary checkout"
type="submit"
data-bind="click: continueToPayPal, enable: (getCode() == isChecked())"
disabled>
<span data-bind="i18n: 'Continue to PayPal'"></span>
</button>
</div>
</div>
</div>
</div>
...@@ -40,12 +40,12 @@ ...@@ -40,12 +40,12 @@
<each args="$parent.getRegion('paypal-method-extra-content')" render=""/> <each args="$parent.getRegion('paypal-method-extra-content')" render=""/>
</div> </div>
<div class="actions-toolbar"> <div class="actions-toolbar">
<div class="primary">3333333 <div class="primary">
<button class="action primary checkout" <button class="action primary checkout"
type="submit" type="submit"
data-bind="click: continueToPayPal, enable: (getCode() == isChecked())" data-bind="click: continueToPayPal, enable: (getCode() == isChecked())"
disabled> disabled>
<span data-bind="i18n: 'Continue to PayPal'"></span> <span data-bind="i18n: 'Continue to PayPal'" style="vertical-align: super;"></span>
</button> </button>
</div> </div>
</div> </div>
......
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 to comment