95 lines
3.2 KiB
JavaScript
95 lines
3.2 KiB
JavaScript
|
// // 温度图片
|
||
|
// import temperatureIcon from "@/static/images/index/temperature.png"
|
||
|
// // 红点图片
|
||
|
// import redDotIcon from "@/static/images/red-point.png"
|
||
|
// // 绿点图片
|
||
|
// import greenDotIcon from "@/static/images/green-point.png"
|
||
|
// // 灰色电池图片
|
||
|
// import grayBatteryIcon from "@/static/images/index/dianchigray.png"
|
||
|
// // 绿色电池图片
|
||
|
// import greenBatteryIcon from "@/static/images/index/dianchigreen.png"
|
||
|
// // 向上白色箭头
|
||
|
// import upWhiteArrowIcon from "@/static/images/index/upwhitearrow.png"
|
||
|
// // 向上黑色箭头
|
||
|
// import upBlackArrowIcon from "@/static/images/index/upblackarrow.png"
|
||
|
// // 向下黑色箭头
|
||
|
// import downBlackArrowIcon from "@/static/images/index/downblackarrow.png"
|
||
|
// // 向下白色箭头
|
||
|
// import downWhiteArrowIcon from "@/static/images/index/downwhitearrow.png"
|
||
|
// // 警告标志
|
||
|
// import warningIcon from "@/static/images/index/warning.png"
|
||
|
|
||
|
// // 阀门未激活图片
|
||
|
// import valveInactiveIcon from "@/static/images/index/valves/valveinactive.gif"
|
||
|
// // L型全关图片
|
||
|
// import lTypeAllClosedIcon from "@/static/images/index/valves/ltypeallclosed.gif"
|
||
|
// // T型全关图片
|
||
|
// import tTypeAllClosedIcon from "@/static/images/index/valves/ttypeallclosed.gif"
|
||
|
// // L型一开
|
||
|
// import lTypeOneOpenIcon from "@/static/images/index/valves/ltypeoneopen.gif"
|
||
|
// // T型一开
|
||
|
// import tTypeOneOpenIcon from "@/static/images/index/valves/ttypeoneopen.gif"
|
||
|
// // L型二开
|
||
|
// import lTypeTwoOpenIcon from "@/static/images/index/valves/ltypetwoopen.gif"
|
||
|
// // T型二开
|
||
|
// import tTypeTwoOpenIcon from "@/static/images/index/valves/ttypetwoopen.gif"
|
||
|
// // 全开
|
||
|
// import allOpenIcon from "@/static/images/index/valves/allopen.gif"
|
||
|
// // 全开
|
||
|
// import loaddingIcon from "@/static/images/index/valves/loaddingIcon.gif"
|
||
|
|
||
|
// // 五通阀默认图标
|
||
|
// import fiveDefault from "@/static/images/index/fiveValves/default.png"
|
||
|
|
||
|
// export {
|
||
|
// temperatureIcon,
|
||
|
// redDotIcon,
|
||
|
// greenDotIcon,
|
||
|
// grayBatteryIcon,
|
||
|
// greenBatteryIcon,
|
||
|
// upWhiteArrowIcon,
|
||
|
// upBlackArrowIcon,
|
||
|
// downBlackArrowIcon,
|
||
|
// downWhiteArrowIcon,
|
||
|
// warningIcon,
|
||
|
// valveInactiveIcon,
|
||
|
// lTypeAllClosedIcon,
|
||
|
// tTypeAllClosedIcon,
|
||
|
// lTypeOneOpenIcon,
|
||
|
// tTypeOneOpenIcon,
|
||
|
// lTypeTwoOpenIcon,
|
||
|
// tTypeTwoOpenIcon,
|
||
|
// allOpenIcon,
|
||
|
// loaddingIcon,
|
||
|
// fiveDefault
|
||
|
// }
|
||
|
|
||
|
//3通阀
|
||
|
import valve3 from "@/static/images/valves/3/valve3.png"
|
||
|
import valve3_1 from "@/static/images/valves/3/valve3_1.gif"
|
||
|
import valve3_2 from "@/static/images/valves/3/valve3_2.gif"
|
||
|
import valve3_all from "@/static/images/valves/3/valve3_all.gif"
|
||
|
import valve3_run from "@/static/images/valves/3/valve3_run.gif"
|
||
|
//5通阀
|
||
|
import valve5 from "@/static/images/valves/5/valve5.png"
|
||
|
import valve5_1 from "@/static/images/valves/5/valve5_1.gif"
|
||
|
import valve5_2 from "@/static/images/valves/5/valve5_2.gif"
|
||
|
import valve5_3 from "@/static/images/valves/5/valve5_3.gif"
|
||
|
import valve5_4 from "@/static/images/valves/5/valve5_4.gif"
|
||
|
import valve5_all from "@/static/images/valves/5/valve5_all.gif"
|
||
|
import valve5_run from "@/static/images/valves/5/valve5_run.gif"
|
||
|
|
||
|
export {
|
||
|
valve3,
|
||
|
valve3_1,
|
||
|
valve3_2,
|
||
|
valve3_all,
|
||
|
valve3_run,
|
||
|
valve5,
|
||
|
valve5_1,
|
||
|
valve5_2,
|
||
|
valve5_3,
|
||
|
valve5_4,
|
||
|
valve5_all,
|
||
|
valve5_run
|
||
|
}
|