20 lines
277 B
JavaScript
20 lines
277 B
JavaScript
import BasePlatform from './BasePlatform';
|
|
|
|
import {
|
|
parseQueryString
|
|
} from '@/common/util';
|
|
|
|
|
|
|
|
class IOSPlatform extends AppPlatform {
|
|
constructor() {
|
|
super();
|
|
this.code = 'IOS';
|
|
this.env = 'ios';
|
|
|
|
}
|
|
getVersion() {
|
|
return '1.0.0';
|
|
}
|
|
}
|
|
export default IOSPlatform; |