|
|
@@ -10,8 +10,8 @@ const TelecomConstKey = {
|
|
|
};
|
|
|
|
|
|
|
|
|
-let telecomMobile = lk.getVal(TelecomConstKey.Mobile);
|
|
|
-let telecomPassword = lk.getVal(TelecomConstKey.Password);
|
|
|
+let telecomMobile = lk.getVal(TelecomConstKey.Mobile, '');
|
|
|
+let telecomPassword = lk.getVal(TelecomConstKey.Password, '');
|
|
|
|
|
|
//公钥
|
|
|
const publicKey = 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBkLT15ThVgz6/NOl6s8GNPofdWzWbCkWnkaAm7O2LjkM1H7dMvzkiqdxU02jamGRHLX/ZNMCXHnPcW/sDhiFCBN18qFvy8g6VYb9QtroI09e176s+ZCtiv7hbin2cCTj99iUpnEloZm19lwHyo69u5UMiPMpq0/XKBO8lYhN/gwIDAQAB';
|
|
|
@@ -63,8 +63,9 @@ function getSignCount() {
|
|
|
}
|
|
|
|
|
|
async function all() {
|
|
|
- if (!lk.isEmpty(telecomMobile) || !lk.isEmpty(telecomPassword)) {
|
|
|
+ if (lk.isEmpty(telecomMobile) || lk.isEmpty(telecomPassword)) {
|
|
|
lk.log('⚠️ 请配置手机号(lkTelecomMobile)和密码(lkTelecomPassword)');
|
|
|
+ lk.done();
|
|
|
return;
|
|
|
}
|
|
|
await doLogin();
|