123456789101112131415 |
- app.controller('StdUnbindingCtrl', [ '$rootScope', '$scope', function($rootScope, $scope) {
- $scope.curStep = 'info';
- $scope.goStep = function(step) {
- $scope.curStep = step;
- }
- $scope.stdUnbinding = function() {
- $rootScope.ajaxRequest({
- url : '../enrol/wx/reg/unbinding.htm'
- }, function(response) {
- $scope.curStep = 'success';
- });
- }
- } ])
|