mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-08 09:52:26 +08:00
28 lines
505 B
JavaScript
28 lines
505 B
JavaScript
|
|
import {
|
||
|
|
canIUse
|
||
|
|
} from 'uni-core/service/api/base/can-i-use'
|
||
|
|
import {
|
||
|
|
upx2px
|
||
|
|
} from 'uni-core/service/api/base/upx2px'
|
||
|
|
import {
|
||
|
|
getLocation
|
||
|
|
} from 'uni-platform/service/api/location/get-location'
|
||
|
|
import {
|
||
|
|
onCompassChange,
|
||
|
|
stopCompass
|
||
|
|
} from 'uni-platform/service/api/device/compass'
|
||
|
|
import {
|
||
|
|
getSystemInfoSync
|
||
|
|
} from 'uni-platform/service/api/device/get-system-info'
|
||
|
|
|
||
|
|
// TODO route
|
||
|
|
|
||
|
|
export default {
|
||
|
|
canIUse,
|
||
|
|
upx2px,
|
||
|
|
getLocation,
|
||
|
|
onCompassChange,
|
||
|
|
stopCompass,
|
||
|
|
getSystemInfoSync
|
||
|
|
}
|