yfs/common/platform/IOSPlatform.js
2025-05-23 16:03:14 +08:00

20 lines
281 B
JavaScript

import BasePlatform from './BasePlatform';
import {
parseQueryString
} from '@/common/util';
class IOSPlatform extends AppPlatform {
constructor() {
super();
this.code = 'APP_IOS';
this.env = 'ios';
}
getVersion() {
return '1.0.0';
}
}
export default IOSPlatform;