uniapp-app/utils/client_type.js
2025-08-15 17:50:07 +08:00

10 lines
206 B
JavaScript

// #ifdef MP-WEIXIN
const client_type="M"
// #endif
// #ifdef APP-IOS
const client_type="I"
// #endif
// #ifdef APP-ANDROID
const client_type="A"
// #endif
export default client_type