cacheDictionary.js 685 Bytes
import baseApiInterface from '@/api/base'

const dictList = [
  'mood',
  'gender',
  'personType',
  'weatherType'
]

// 缓存
dictList.forEach((value, index, arr) => {
  baseApiInterface.dataDic({ type: value })
    .then(res => {
      const { data } = res.data
      data.forEach(item => {
        window.sessionStorage.setItem(item.type + '-' + item.key, item.valueEn)
      })
    })
})

// // account list
// this.$api.base.account({
// 	// _t: Date.parse(new Date()) / 1000
// }).then((res) => {
// 	let result = res.data.data;
// 	if(result.length > 0) {
// 		result.forEach(item => {
// 			window.sessionStorage.setItem('account-' + item.id, item.name);
// 		})
// 	}
// })