parent
475570da04
commit
e4465ebe7f
@ -0,0 +1,26 @@ |
|||||||
|
import Taro from "@tarojs/taro"; |
||||||
|
|
||||||
|
const KET = 'SELECTDEP' |
||||||
|
|
||||||
|
function set(data: number[]) { |
||||||
|
Taro.setStorageSync(KET, data) |
||||||
|
} |
||||||
|
|
||||||
|
function remove() { |
||||||
|
Taro.removeStorageSync(KET) |
||||||
|
} |
||||||
|
|
||||||
|
function get(): number[] { |
||||||
|
const deps = Taro.getStorageSync(KET) |
||||||
|
if (deps && deps.length) { |
||||||
|
remove() |
||||||
|
return deps |
||||||
|
} |
||||||
|
return [] |
||||||
|
} |
||||||
|
|
||||||
|
export default { |
||||||
|
set, |
||||||
|
get, |
||||||
|
remove |
||||||
|
} |
Loading…
Reference in new issue