index.js 276 B

12345678910111213141516171819202122
  1. //index.js
  2. //获取应用实例
  3. const getReq = require('./../../config.js').getReq
  4. const app = getApp()
  5. Page({
  6. data: {
  7. },
  8. onLoad: function () {
  9. getReq({
  10. act: 'index',
  11. op: 'tabs'
  12. }, function(res) {
  13. console.log(res)
  14. })
  15. },
  16. })