This repository was archived by the owner on Oct 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
liulihaocai
committed
Jun 22, 2020
1 parent
5299121
commit 1fa2322
Showing
3 changed files
with
62 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,15 +75,6 @@ | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script> | ||
<script> | ||
const vuetify = new Vuetify({ | ||
theme: { | ||
themes: { | ||
light: { | ||
primary: "#009688", | ||
}, | ||
}, | ||
}, | ||
}) | ||
function setCookie(name,value){ | ||
document.cookie = name + "="+ escape (value); | ||
} | ||
|
@@ -96,20 +87,21 @@ | |
} | ||
if(getCookie("lang")==null){if(navigator.language.substr(0,2)=="zh"){setCookie("lang=zh_cn;")}else{setCookie("lang=en_us;")}} | ||
if(getCookie("lang")=="zh_cn"){ | ||
var thislang={nowlang:"中文(简体)",tools:"功能",jsdecode:"JS解码",about:"关于",updlog:"更新日志",gh:"Github",upd13:"支持破解Sojson v4及Sojson高级版<br>多语言支持",upd12:"性能优化<br>支持上传文件",upd11:"修复bug<br>支持美化js,破解JSF*ck,一键美化破解结果",upd10:"第一个版本,支持eval/aaencode/jjencode的js解密",links:"友链",l1:"YSCTC云主机"} | ||
var thislang={nowlang:"中文(简体)",tools:"功能",jsdecode:"JS解码",about:"关于",updlog:"更新日志",gh:"Github",upd14:"UI优化<br>修复bug<br>支持破解JS-obfuscator普通版",upd13:"支持破解Sojson v4及Sojson高级版<br>多语言支持",upd12:"性能优化<br>支持上传文件",upd11:"修复bug<br>支持美化js,破解JSF*ck,一键美化破解结果",upd10:"第一个版本,支持eval/aaencode/jjencode的js解密",links:"友链",l1:"YSCTC云主机"} | ||
}else if(getCookie("lang")=="en_us"){ | ||
var thislang={nowlang:"EN(US)",tools:"Tools",jsdecode:"JS Decode",about:"About",updlog:"Update Logs",gh:"Github",upd13:"Sojson v4 and Sojson Premium decode supported<br>Multi Language supported",links:"Links",l1:"YSCTC Cloud",upd12:"optimization<br>Supported upload",upd11:"fix bugs<br>JS_Beautify and decode JSF*ck supported",upd10:"first version<br>eval/aaencode/jjencode decode supported"} | ||
var thislang={nowlang:"EN(US)",tools:"Tools",jsdecode:"JS Decode",about:"About",updlog:"Update Logs",gh:"Github",upd14:"UI Update<br>fix bugs<br>supported JS-obfuscator default",upd13:"Sojson v4 and Sojson Premium decode supported<br>Multi Language supported",links:"Links",l1:"YSCTC Cloud",upd12:"optimization<br>Supported upload",upd11:"fix bugs<br>JS_Beautify and decode JSF*ck supported",upd10:"first version<br>eval/aaencode/jjencode decode supported"} | ||
} | ||
document.getElementById("updlog").innerHTML=thislang.updlog+"(JSDec) - Liulihaocai" | ||
var vue= new Vue({ | ||
el: '#app', | ||
vuetify: new Vuetify(), | ||
vuetify: new Vuetify({theme:{themes:{light:{primary:"#009688",},},},}), | ||
data:{ | ||
lang:thislang, | ||
drawer: false, | ||
fullyear: new Date().getFullYear(), | ||
item:1, | ||
upl:[ | ||
{ver:'v1.4',date:'2020-06-22',tell:thislang.upd14}, | ||
{ver:'v1.3',date:'2020-06-19',tell:thislang.upd13}, | ||
{ver:'v1.2',date:'2020-06-18',tell:thislang.upd12}, | ||
{ver:'v1.1',date:'2020-06-17',tell:thislang.upd11}, | ||
|