index.js 284 B

1234567891011121314151617
  1. //index.js
  2. //获取应用实例
  3. const app = getApp()
  4. let template = require('../../template/template.js');
  5. Page({
  6. data: {
  7. },
  8. onReady: function(res){
  9. },
  10. //事件处理函数
  11. onLoad: function () {
  12. template.tabbar("tabBar", 2, this)//0表示第一个tabbar
  13. }
  14. })