1. 程式人生 > >增刪改查列表angular.js頁面實現

增刪改查列表angular.js頁面實現

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>品牌管理</title>
    <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">
    <link rel="
stylesheet" href="../plugins/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../plugins/adminLTE/css/AdminLTE.css"> <link rel="stylesheet" href="../plugins/adminLTE/css/skins/_all-skins.min.css"> <link rel="stylesheet" href="../css/style.css"> <script src="../plugins/jQuery/jquery-2.2.3.min.js
"></script> <script src="../plugins/bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript" src="../plugins/angularjs/angular.min.js"></script> <script type="text/javascript" src="../plugins/angularjs/pagination.js"></script> <link rel="
stylesheet" href="../plugins/angularjs/pagination.css"/> <script type="text/javascript"> var app = angular.module('eshop',['pagination']); app.controller('brandController',function($scope,$http){ //獲取查詢資料 $scope.findAll= function(){ $http.get('../brand/getAllBrand.do').success( function(res){ $scope.list = res; } ) }; //分頁控制元件控制 $scope.paginationConf={ currentPage:1, //當前頁 totalItems:10, //總記錄數 itemsPerPage:10, //每頁記錄數 perPageOptions:[10,20,30,40,50], //分頁選項 onChange:function(){ //當頁碼變更後自動觸發的方法 $scope.reloadList();//會變化 } }; //帶條件重新整理列表 $scope.reloadList=function(){ $scope.search($scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage); }; //重新整理列表 $scope.reloadListNoCondition=function(){ $scope.findPage($scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage); }; $scope.findPage=function(page,size){ $http.get('../brand/getBrandByPage.do?page='+page+'&size='+size).success( function(res){ $scope.list = res.rows;//顯示當前頁資料 $scope.paginationConf.totalItems=res.total;//更新總記錄數 } ) } //新增品牌 $scope.save=function(){ var methodName = 'addBrand'; if($scope.entity.id){ methodName = 'updateBrand'; } $http.post('../brand/'+methodName+'.do',$scope.entity).success( function(res){ if(res.success){ $scope.reloadListNoCondition();//重新整理列表 }else{ alert(res.message); } } ) } //查詢品牌 $scope.findOne=function(id){ $http.get('../brand/queryBrand.do?id='+id).success( function(res){ $scope.entity = res; } ) } //獲取刪除品牌的id $scope.selectIds = []; $scope.selectid = function($event,id){ if($event.target.checked){ $scope.selectIds.push(id);//向集合元素中新增資料 }else{ var index = $scope.selectIds.indexOf(id); $scope.selectIds.splice(index,1); } } //刪除 $scope.del = function(){ $http.get('../brand/deleteBrand.do?ids='+$scope.selectIds).success( function(res){ if(res.success){ $scope.reloadList();//重新整理列表 }else{ alert(res.message); } } ) $scope.selectIds=[]; } //查詢 $scope.searchEntity={}; $scope.search=function(page,size){ $scope.searchEntity.size=size; $scope.searchEntity.page=page; $http.post('../brand/search.do',$scope.searchEntity).success( function(res){ $scope.list = res.rows;//顯示當前頁資料 $scope.paginationConf.totalItems=res.total;//更新總記錄數 } ) } }); </script> </head> <body class="hold-transition skin-red sidebar-mini" ng-app="eshop" ng-controller="brandController" > <!-- .box-body --> <div class="box-header with-border"> <h3 class="box-title">品牌管理</h3> </div> <div class="box-body"> <!-- 資料表格 --> <div class="table-box"> <!--工具欄--> <div class="pull-left"> <div class="form-group form-inline"> <div class="btn-group"> <button type="button" class="btn btn-default" title="新增" data-toggle="modal" data-target="#editModal" ng-click="entity={}"><i class="fa fa-file-o"></i> 新增</button> <button type="button" class="btn btn-default" title="刪除" ng-click="del()"><i class="fa fa-trash-o"></i> 刪除</button> <button type="button" class="btn btn-default" title="重新整理" onclick="window.location.reload();"><i class="fa fa-refresh"></i> 重新整理</button> </div> </div> </div> <div class="box-tools pull-right"> <div class="has-feedback"> 品牌名稱:<input ng-model="searchEntity.name"> 品牌首字母:&nbsp;&nbsp;<input ng-model="searchEntity.firstChar">&nbsp;&nbsp;<button type="button" class="btn btn-default" ng-click="reloadList()">查詢</button> </div> </div> <!--工具欄/--> <!--資料列表--> <table id="dataList" class="table table-bordered table-striped table-hover dataTable"> <thead> <tr> <th class="" style="padding-right:0px"> <input id="selall" type="checkbox" class="icheckbox_square-blue"> </th> <th class="sorting_asc">品牌ID</th> <th class="sorting">品牌名稱</th> <th class="sorting">品牌首字母</th> <th class="text-center">操作</th> </tr> </thead> <tbody> <tr ng-repeat="entity in list"> <td><input type="checkbox" ng-click="selectid($event,entity.id)"></td> <td>{{entity.id}}</td> <td>{{entity.name}}</td> <td>{{entity.firstChar}}</td> <td class="text-center"> <button type="button" class="btn bg-olive btn-xs" data-toggle="modal" data-target="#editModal" ng-click="findOne(entity.id)" >修改</button> </td> </tr> </tbody> </table> <!--資料列表/--> </div> <!-- 資料表格 /--> <tm-pagination conf="paginationConf"></tm-pagination> </div> <!-- /.box-body --> <!-- 編輯視窗 --> <div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog" > <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h3 id="myModalLabel">品牌編輯</h3> </div> <div class="modal-body"> <table class="table table-bordered table-striped" width="800px"> <tr> <td>品牌名稱</td> <td><input class="form-control" placeholder="品牌名稱" ng-model="entity.name"> </td> </tr> <tr> <td>首字母</td> <td><input class="form-control" placeholder="首字母" ng-model="entity.firstChar"> </td> </tr> </table> </div> <div class="modal-footer"> <button class="btn btn-success" data-dismiss="modal" aria-hidden="true" ng-click="save()">儲存</button> <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">關閉</button> </div> </div> </div> </div> </body> </html>