1234567891011121314151617181920 |
- /**
- * Created by pushkeji on 2018/8/10.
- */
- angular.module('push')
- .controller('demandRewardCheckCtrl', ['$scope', '$stateParams', 'AccountService', '$q', function ($scope, $stateParams, AccountService, $q, UserService) {
- var getTechDemandCheckList = function () {
- AccountService.techDemandCheckList().then(function (res) {
- if (res.code == 3350) {
- $scope.checkList = res.data;
- }
- })
- }
- getTechDemandCheckList();
- $scope.jumpToTechDemand = function (list) {
- $scope.go('techDemandCheckDetail', {id: list.id});
- }
- }]);
|