|
|
@@ -137,7 +137,19 @@
|
|
137
|
137
|
$.cookie("extno", Fj, {
|
|
138
|
138
|
expires: 7
|
|
139
|
139
|
});
|
|
140
|
|
- window.location.href = "index.html";
|
|
|
140
|
+ var expireDate = data.data.date.split(' ')[0];
|
|
|
141
|
+ var expireDay = data.data.days;
|
|
|
142
|
+ var expireText = '<span style="color:#f00;">软件到期时间:' + expireDate + ',还剩' + expireDay +'天,请联系软件厂家</span>'
|
|
|
143
|
+ if (expireDay * 1 > 0) {
|
|
|
144
|
+ layer.confirm(expireText, {
|
|
|
145
|
+ btn: ['确定'] //按钮
|
|
|
146
|
+ }, function () {
|
|
|
147
|
+ window.location.href = "index.html";
|
|
|
148
|
+ })
|
|
|
149
|
+ }
|
|
|
150
|
+ else {
|
|
|
151
|
+ window.location.href = "index.html";
|
|
|
152
|
+ }
|
|
141
|
153
|
} else {
|
|
142
|
154
|
//alert("登录失败");
|
|
143
|
155
|
$("#user").val('');
|