|
|
|
@ -663,6 +663,53 @@ define(['angular', 'decimal', 'uiRouter', 'ngBootSwitch', 'ngFileUpload'], funct
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$scope.myInterval = 2000;
|
|
|
|
|
$scope.first = true;
|
|
|
|
|
$scope.active = 0;
|
|
|
|
|
$scope.show = false;
|
|
|
|
|
var slides = $scope.slides = [];
|
|
|
|
|
var addSlide = function () {
|
|
|
|
|
slides.push({
|
|
|
|
|
image: '/static/images/hfpaylink_intro/hf_pay_step1.png',
|
|
|
|
|
text: '第一次打开支付链接进行下单,第一步用微信扫码页面弹出的二维码,确认您的身份',
|
|
|
|
|
id:0
|
|
|
|
|
});
|
|
|
|
|
slides.push({
|
|
|
|
|
image: '/static/images/hfpaylink_intro/hf_pay_step2.png',
|
|
|
|
|
text: '下一步,填写订单信息。注意订单金额货币单位是澳元(AUD)。请认真填写商品名称,否则可能导致交易不成功。填写完成,最后提交订单。',
|
|
|
|
|
id:1
|
|
|
|
|
});
|
|
|
|
|
slides.push({
|
|
|
|
|
image: '/static/images/hfpaylink_intro/hf_pay_step3.png',
|
|
|
|
|
text: '跳转到汇付支付页面,选择您的支付方式,同时填写姓名、身份证、银行卡号、手机号信息,完成身份验证,最后点击“确认支付”',
|
|
|
|
|
id:2
|
|
|
|
|
});
|
|
|
|
|
slides.push({
|
|
|
|
|
image: '/static/images/hfpaylink_intro/hf_pay_step4.png',
|
|
|
|
|
text: '页面弹出支付二维码,使用相应的支付app进行扫码支付。',
|
|
|
|
|
id:3
|
|
|
|
|
});
|
|
|
|
|
slides.push({
|
|
|
|
|
image: '/static/images/hfpaylink_intro/hf_pay_step5.png',
|
|
|
|
|
text: '完成支付,跳转到支付成功页面。',
|
|
|
|
|
id:4
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
$scope.toFirst = function () {
|
|
|
|
|
if(!$scope.first) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
addSlide();
|
|
|
|
|
$scope.first = false;
|
|
|
|
|
};
|
|
|
|
|
$scope.toShow = function () {
|
|
|
|
|
$scope.show = true;
|
|
|
|
|
};
|
|
|
|
|
$scope.toHide = function () {
|
|
|
|
|
$scope.show = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}]);
|
|
|
|
|
app.controller('clientPaymentMaterialCtrl', ['$scope', '$http', 'partner', function ($scope, $http, partner) {
|
|
|
|
|
$scope.paymentInfo = partner.data;
|
|
|
|
|