快应用界面跳转

第一步增加点击事件

  <div class="demo-page">
    <input class="btn" type="button" value="跳转到详情页" onclick="routeDetail" />
  </div>
</template>

第二步实现点击事件

import router from '@system.router'

export default {
  routeDetail () {
    router.push ({
      uri: '/DemoDetail'  //跳转到另一个页面在manifest.json中注册地址
    })
  }
}
</script>
上一篇:Python 【精】AttributeError: 'Module' object has no attribute 'STARTF_USESHOWINDOW'


下一篇:由"缓存"到"Memcached分布式缓存"