This commit is contained in:
Jesse-Ma
2022-07-21 18:51:30 +08:00
parent 0bdd2eea5c
commit deb1fbe49d
22 changed files with 26943 additions and 346 deletions

View File

@@ -9,13 +9,10 @@ export function saveNote(noteForm) {
let note = {
"lock": storeText.substring(0, 1),
"cipher": storeText.substring(2, 34),
"text": storeText.substring(35),
"text": storeText.substring(35+16),
"key": noteForm.key
}
console.log("n"+ storeText)
return axios({
url: '/note/' + noteForm.key,
method: 'post',
@@ -78,7 +75,6 @@ export function getNoteMeta(key) {
}
export function getKeyMeta() {
console.log("getKeyMeta");
let keyMeta = {};
Jquery.ajax({
method: 'GET',