新建快捷命令支持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

@@ -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) {