index.js 243 B

12345678910
  1. import { stringifyQuery, prefixPagePath } from '../../antbuilder/core/utils'
  2. Page({
  3. onLoad(query) {
  4. my.redirectTo({
  5. url: `${prefixPagePath}/web-view/index${stringifyQuery(query)}`
  6. })
  7. }
  8. })