农燊高科官方网站
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
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. });