std_unbinding.js 356 B

123456789101112131415
  1. app.controller('StdUnbindingCtrl', [ '$rootScope', '$scope', function($rootScope, $scope) {
  2. $scope.curStep = 'info';
  3. $scope.goStep = function(step) {
  4. $scope.curStep = step;
  5. }
  6. $scope.stdUnbinding = function() {
  7. $rootScope.ajaxRequest({
  8. url : '../enrol/wx/reg/unbinding.htm'
  9. }, function(response) {
  10. $scope.curStep = 'success';
  11. });
  12. }
  13. } ])