代碼
提交代碼
function delHistory() {
let that = this
showModal({//彈出確認(rèn)對話框
title: '',
content: '您確定要清空搜索歷史嗎',
showCancel: true,
cancelText: '取消',
cancelColor: '#000000',
confirmText: '確定',
confirmColor: '#3CC51F',
success: result => {
if (result.confirm) {
window.localStorage.removeItem("historyList")//情況歷史隊(duì)列
}
}
})
},
運(yùn)行結(jié)果