1234567891011121314151617 |
- //index.js
- //获取应用实例
- const app = getApp()
- let template = require('../../template/template.js');
- Page({
- data: {
- },
- onReady: function(res){
-
- },
- //事件处理函数
- onLoad: function () {
- template.tabbar("tabBar", 1, this)//0表示第一个tabbar
- }
- })
|