修复分销和商品详情无法生成关系的问题
This commit is contained in:
@ -29,7 +29,16 @@ function remove(key) {
|
||||
}
|
||||
|
||||
function clearAll() {
|
||||
uni.clearStorage()
|
||||
const res = uni.getStorageInfoSync();
|
||||
res.keys.map((item) => {
|
||||
if (item == 'redirect' || item == 'spread') {
|
||||
return
|
||||
}
|
||||
remove(item)
|
||||
})
|
||||
console.log(res)
|
||||
// debugger
|
||||
// uni.clearStorageSync()
|
||||
}
|
||||
|
||||
function _has(key) {
|
||||
|
Reference in New Issue
Block a user