payController.js 328 Bytes
angular.module('myApp')
	.controller('payController',['$scope','$rootScope','dingdaService','$state','globalService',function($scope,$rootScope,dingdaService,$state,globalService){
		
		var init = function() {
//			globalService.init();
		}
		
//		mui.init();
		init();
		
		$scope.pay = function() {
			alert("充值")
		}
}]);