张雄 2 years ago
parent 2f5a2a3ec3
commit 4b5d4bdc23

@ -35,6 +35,6 @@ const state = {
carCircle: LS.get('carCircle') || 0, // 0全部 1车友圈
specialGuid: LS.get('specialGuid') || '', //专项分析
warningBrand: LS.get('warningBrand') ? JSON.parse(LS.get('warningBrand')) : {}, //预警主品牌
warningSeries: LS.get('warningSeries') || '', //预警车型
warningSeries: LS.get('warningSeries') ? JSON.parse(LS.get('warningSeries')) : {}, //预警车型
}
export default state;

@ -57,12 +57,12 @@ export default {
let a = [
`<span style='cursor: pointer;'>${ele._source.title}</span>`,
ele._source.carseries,
ele._source.affections == 1?'初级危机':ele._source.affections == 2?'中级危机':'高级危机'
ele._source.crisis == 1?'初级危机':ele._source.crisis == 2?'中级危机':'高级危机'
];
let b = [
`<span style='cursor: pointer;'>${ele._source.title}</span>`,
ele._source.carseries,
ele._source.affections == 1?'初级危机':ele._source.affections == 2?'中级危机':'高级危机',
ele._source.crisis == 1?'初级危机':ele._source.crisis == 2?'中级危机':'高级危机',
ele._source.id
];
arr.push(a);

Loading…
Cancel
Save