智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/d8/d80944b57fae38359b7f6c7e61a...

19 lines
363 B

const service = {
OAUTH: 'OAUTH',
SHARE: 'SHARE',
PAYMENT: 'PAYMENT',
PUSH: 'PUSH'
}
export const getProvider = {
service: {
type: String,
required: true,
validator (value, params) {
value = (value || '').toUpperCase()
if (value && Object.values(service).indexOf(value) < 0) {
return 'service error'
}
}
}
}