Newer
Older
KaiFengPC / src / views / preassess / adaptationConfig / icon.js
@zhangdeliang zhangdeliang on 23 May 1 KB 初始化项目
import { reactive } from 'vue'
import  suitable_normal  from '@/assets/images/preassess/adaptationConfig/suitable_normal.png'
import suitable_active from '@/assets/images/preassess/adaptationConfig/suitable_active.png'
import can_normal from '@/assets/images/preassess/adaptationConfig/can_normal.png'
import can_active from '@/assets/images/preassess/adaptationConfig/can_active.png'
import unsuitable_normal from '@/assets/images/preassess/adaptationConfig/unsuitable_normal.png'
import unsuitable_active from '@/assets/images/preassess/adaptationConfig/unsuitable_active.png'

export const iconList = reactive([
  {
    value: 'suitable',
    url: suitable_active,
    text: '宜选用',
    actived: false,
    alternative: {
      normal: suitable_normal,
      active: suitable_active
    }
  },
  {
    value: 'can',
    url: can_normal,
    text: '可选用',
    actived: false,
    alternative: {
      normal: can_normal,
      active: can_active
    }
  },
  {
    value: 'unsuitable',
    url: unsuitable_normal,
    text: '不宜选用',
    actived: false,
    alternative: {
      normal: unsuitable_normal,
      active: unsuitable_active
    }
  }
])