rt-sim-training-client/src/jmapNew/config/deviceStyle.js

16 lines
348 B
JavaScript
Raw Normal View History

2019-11-29 12:51:58 +08:00
const mapDeviceStyle = {
'01': 'chengdu_01',
2019-11-29 12:51:58 +08:00
'02': 'fuzhou_01',
'03': 'bejing_01',
'04': 'chengdu_03',
'06': 'ningbo_01',
'07': 'haerbin_01',
2020-04-15 09:07:23 +08:00
'08': 'foshan_01',
'09': 'xian_02'
2019-11-29 12:51:58 +08:00
};
export function selectLineCode(code) {
return Object.assign({}, require(`./skinCode/${mapDeviceStyle[code || '02']}`).default);
}