摘要: 一. HTML HTML中比较多逻辑代码,修改的时候要注意修改很多绑值的地方。 <div class="form-group"> <label class="col-lg-3 control-label">组织权限</label> <div ng-init="enablePids = [];disa 阅读全文
posted @ 2016-03-11 18:35 小骚木 阅读(8937) 评论(0) 推荐(0) 编辑
摘要: angular.module('newApp') .factory('dateUtil', function() { var symbolMap = { 'MM': function(date) { if (typeof(date) === 'string') { var d = new Date( 阅读全文
posted @ 2016-03-11 17:15 小骚木 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: 使用方法看注释。主要解决帮上ngModel的问题 angular.module('newApp') .directive('ckeEditor', function() { return { /* For Example: <textarea id="..." name="..." class="f 阅读全文
posted @ 2016-03-11 17:13 小骚木 阅读(623) 评论(0) 推荐(0) 编辑
摘要: 一. 添加基本配置 1. 添加指令 angular.module('newApp') .directive('dpHighchart', ['$rootScope', function($rootScope){ return { restrict: 'E', scope: { chartConfig 阅读全文
posted @ 2016-03-11 17:08 小骚木 阅读(2053) 评论(0) 推荐(0) 编辑
摘要: 一. 真分页表格基础 1. 需求:分页,排序,搜索都是需要发API到服务端。 2. JS实现代码: getStorage是localStorage一个工具方法,可以自己写这个方法。 API参数如下: { limit: initItemCountPerPage, index: options1.pag 阅读全文
posted @ 2016-03-11 16:44 小骚木 阅读(392) 评论(0) 推荐(0) 编辑