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