新建快捷命令支持base64格式

This commit is contained in:
fofolee 2024-05-06 22:29:02 +08:00
parent 472f0029e2
commit 15395e3ff6
2 changed files with 68 additions and 53 deletions

View File

@ -43,6 +43,12 @@
"label": "新建快捷命令",
"match": "/^\\{[\\s\\S]*\"program\" *: *\".*\"[\\s\\S]*\"cmd\" *: *\".*\"[\\s\\S]*\\}$/i",
"maxNum": 1
},
{
"type": "regex",
"label": "新建快捷命令",
"match": "/^qc=eyJwcm9ncmFtIj/",
"maxNum": 1
}
]
},

View File

@ -321,8 +321,17 @@ export default {
initPage() {
// newcommand
if (this.newCommandDirect) {
if (this.$root.enterData.type === "text") this.addNewCommand();
else this.editCommand(JSON.parse(this.$root.enterData.payload));
if (this.$root.enterData.type === "text") {
this.addNewCommand();
} else if (this.$root.enterData.payload.slice(0, 3) === "qc=") {
this.editCommand(
JSON.parse(
window.base64Decode(this.$root.enterData.payload.slice(3))
)
);
} else {
this.editCommand(JSON.parse(this.$root.enterData.payload));
}
this.$router.push("/configuration");
}
if (this.$route.params.tags) {