|
@@ -51,9 +51,10 @@
|
|
|
{{if not .T.isTrial }}
|
|
|
<a href="javascript:;">
|
|
|
<span class="label">订阅周期</span>
|
|
|
- <input type="text" readonly="readonly" disabled style="color:#000;" value="1个月"
|
|
|
+ <span class="show_time">一个月</span>
|
|
|
+ <input type="text" readonly="readonly" disabled style="display:none;" value="1个月"
|
|
|
class="info choose_time">
|
|
|
- <i class="iconfont icon-arrow choose_time"></i>
|
|
|
+ <i class="iconfont icon-arrow"></i>
|
|
|
</a>
|
|
|
{{else}}
|
|
|
<div class="free-7day">
|
|
@@ -502,6 +503,7 @@
|
|
|
$('#number_box_month button:eq(0)').removeAttr("disabled");
|
|
|
}
|
|
|
}
|
|
|
+ $(".choose_item .show_time").text(tmp);
|
|
|
$(".info.choose_time").val(tmp);
|
|
|
},
|
|
|
flushPrice: function (time, flag) {
|
|
@@ -686,12 +688,14 @@
|
|
|
val = $('.active').html();
|
|
|
$('#time_cycle').hide(function () {
|
|
|
$('.choose_time').val(val)
|
|
|
+ $('.show_time').text(val);
|
|
|
});
|
|
|
purchase.timeSelect_tmp = [parseInt(val[0]), 1]
|
|
|
} else if ($(v).is(':checked') === true) {
|
|
|
val = $('.month_number').html();
|
|
|
$('#time_cycle').hide(function () {
|
|
|
$('.choose_time').val(val + '个月')
|
|
|
+ $('.show_time').text(val + '个月');
|
|
|
});
|
|
|
purchase.timeSelect_tmp = [parseInt(val), 2]
|
|
|
}
|