HaniBlindBox/honey_box/common/platform/IOSPlatform.js
2026-01-01 21:01:55 +08:00

21 lines
322 B
JavaScript

import BasePlatform from './BasePlatform';
import AppPlatform from './AppPlatform';
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;