农燊高科官方网站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 584 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021
  1. /**
  2. * Created by Administrator on 2017/3/8.
  3. */
  4. define(['jquery', "template", "Tools"], function ($, template, Tools) {
  5. var module = {
  6. initData: {
  7. title: '基本例子',
  8. isAdmin: true,
  9. list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']
  10. }
  11. };
  12. var tools = new Tools();
  13. module.init = function (page) {
  14. var navMian = template('nav-mian-text', module.initData);
  15. $("#nav-mian").html(navMian);
  16. };
  17. module.login = function () { };
  18. return module;
  19. });