smart-admin/smart-app/src/constants/system/login-device-const.js
2024-03-10 22:26:32 +08:00

32 lines
519 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 登录设备
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-09-06 19:56:56
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
export const LOGIN_DEVICE_ENUM = {
PC: {
value: 1,
desc: '电脑端',
},
ANDROID: {
value: 2,
desc: '安卓',
},
APPLE: {
value: 3,
desc: '苹果',
},
H5: {
value: 3,
desc: 'H5',
},
};
export default {
LOGIN_DEVICE_ENUM,
};