|
@@ -243,6 +243,16 @@
|
|
|
var hasDaily = {{.T.hasDaily}} //大会员数据包
|
|
|
$(function () {
|
|
|
haslogin({{.T.logid}});
|
|
|
+ if (sessionStorage.getItem("order_email" +{{.T._id}}) != null) {
|
|
|
+ finishEmailVerity = true;
|
|
|
+ } else if (email_lastInput !== "" && email_lastInput != null) {
|
|
|
+ finishEmailVerity = true;
|
|
|
+ }
|
|
|
+ if (sessionStorage.getItem("order_phone" +{{.T._id}}) != null) {
|
|
|
+ finishPhoneVerity = true;
|
|
|
+ } else if (phone_lastInput !== "" && phone_lastInput != null) {
|
|
|
+ finishPhoneVerity = true;
|
|
|
+ }
|
|
|
//加载价格
|
|
|
$.ajax({
|
|
|
url: "/jypay/dataexport/getPrice",
|
|
@@ -285,6 +295,8 @@
|
|
|
$("#entuserguige").show();
|
|
|
}
|
|
|
$(".toPay").on("click", personalSubmit);
|
|
|
+
|
|
|
+
|
|
|
$("#entuserguige .inner .gr").on("click", function () {
|
|
|
$(this).addClass("active").siblings().removeClass("active");
|
|
|
$("#entuserguige").css("border-color", "#ccc")
|
|
@@ -293,17 +305,6 @@
|
|
|
$(".money").show();
|
|
|
$(".toPay").css("display", "");
|
|
|
$(".toDeduction").css("display", "none")
|
|
|
-
|
|
|
- if (sessionStorage.getItem("order_email" +{{.T._id}}) != null) {
|
|
|
- finishEmailVerity = true;
|
|
|
- } else if (email_lastInput !== "" && email_lastInput != null) {
|
|
|
- finishEmailVerity = true;
|
|
|
- }
|
|
|
- if (sessionStorage.getItem("order_phone" +{{.T._id}}) != null) {
|
|
|
- finishPhoneVerity = true;
|
|
|
- } else if (phone_lastInput !== "" && phone_lastInput != null) {
|
|
|
- finishPhoneVerity = true;
|
|
|
- }
|
|
|
$("#email").show();
|
|
|
})
|
|
|
$("#entuserguige .inner .qy").on("click", function () {
|