...
|
...
|
@@ -9,6 +9,8 @@ var $ = require('yoho-jquery'), |
|
|
|
|
|
var Dialog = require('../common/dialog').Dialog;
|
|
|
|
|
|
var authProtocolTpl = require('hbs/product/students/auth-protocol.hbs');
|
|
|
|
|
|
var $sortItem = $('.sort-item'),
|
|
|
$agreenShow = $('#agreen-show'),
|
|
|
$stuProv = $('#stu-province-show'),
|
...
|
...
|
@@ -438,12 +440,7 @@ $('.ident-select-wrap > .arrow-down').click(function() { |
|
|
});
|
|
|
|
|
|
$couponDia.on('click', function() {
|
|
|
var cont = '<h3 class="dia-title">认证协议</h3>' +
|
|
|
'<p>(1) 全日制大学生及硕士博士研究生;</p>' +
|
|
|
'<p>(2) 学校在可选的范围内,有部分学校可能暂未收录,后期尽快增加;</p>' +
|
|
|
'<p>(3) 每个学号只能认证一个账户;</p>';
|
|
|
|
|
|
createStuDialog('stu-agree-dialog', cont);
|
|
|
createStuDialog('stu-agree-dialog', authProtocolTpl({}));
|
|
|
});
|
|
|
|
|
|
$rightsItem.each(function(index, ele) {
|
...
|
...
|
@@ -451,7 +448,7 @@ $rightsItem.each(function(index, ele) { |
|
|
detail = $(ele).find('.item-detail').html(),
|
|
|
i = Number(index) + 1;
|
|
|
|
|
|
rightsText += '<p>权益' + i + ':' + title + '</p><p>' + detail + '</p>';
|
|
|
rightsText += '<p><span class="font-bold">权益' + i + ':</span>' + title + '</p><p>' + detail + '</p>';
|
|
|
i !== $rightsItem.length ? rightsText += '<br>' : '';
|
|
|
});
|
|
|
|
...
|
...
|
|