no message
This commit is contained in:
parent
37c6d21f45
commit
6b88429e74
@ -119,7 +119,7 @@
|
||||
</div>
|
||||
<script>
|
||||
const { createApp, ref, onMounted, nextTick, onUnmounted, computed } = Vue
|
||||
const projectIndex = createApp({
|
||||
const search = createApp({
|
||||
setup() {
|
||||
onMounted(() => {
|
||||
// kw.value = "术"
|
||||
@ -255,10 +255,8 @@
|
||||
return { showList, count, kw, submit, pl, historyList, selectKW, handleClick, openMoreSelect, closeMoreSelectAll }
|
||||
},
|
||||
})
|
||||
|
||||
projectIndex.component("base-bottom", base)
|
||||
|
||||
projectIndex.mount("#app")
|
||||
|
||||
search.mount("#app")
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -81,13 +81,13 @@ function objectToQueryString(obj = {}) {
|
||||
return queryString ? "?" + queryString : ""
|
||||
}
|
||||
|
||||
function decodeKey(encrypted) {
|
||||
function decodeKey(encrypted,key) {
|
||||
return new Promise((resolve, reject) => {
|
||||
try {
|
||||
const storedData = localStorage.getItem("basicData")
|
||||
const basicData = JSON.parse(storedData)
|
||||
console.log("basicData", basicData)
|
||||
const key = basicData.encodekey
|
||||
// const key = basicData.encodekey
|
||||
|
||||
console.log("encodekey", key)
|
||||
const encryptedData = CryptoJS.enc.Base64.parse(encrypted)
|
||||
|
Loading…
Reference in New Issue
Block a user