open-location-weex.js 280 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import {
  showPage
} from '../page.js'

export function openLocation (data) {
  showPage({
    url: '__uniappopenlocation',
    data,
    style: {
      titleNView: {
        type: 'transparent'
      }
    }
  })
  return {
    errMsg: 'openLocation:ok'
  }
}