app.controller('XiaoFeiLiangFormCtrl', ['$scope', '$state', '$stateParams', '$sessionStorage', '$uibModal', '$http', function ($scope, $state, $stateParams, $sessionStorage, $uibModal, $http) { $scope.QueDing = true;//确定按钮 $scope.XiuGai = true;//修改按钮 $scope.xflId = $stateParams.id; $http.get(Gaddress + "/home/GetXiaoFeiLiang?KeyValue=" + $scope.xflId, {}) .success(function (myxfldata) { $scope.MYXFL = myxfldata.data; }); $scope.Close = function () { closelayer(); } $scope.Change = function () { // if (confirm("确定修改?")) { // // } dLayer.confirm('您确定要修改数据吗?', { btn: ['确定','取消'] //按钮 }, function(){ $http.post("/home/XiaoFeiLiangAddOrUpdate", { "xiaofeiliangstr": JSON.stringify($scope.MYXFL) }) .success(function (mydata) { dLayer.msg(mydata.message); if (mydata.state == "Ok") { closelayer(); } }); }, function(){ dLayer.msg('修改取消', {icon: 1,time: 2000},); }); } }])