angular.module('push') .controller('technicalBrokerEnterTransformResultCtrl', function ($scope,ActivityService,$stateParams) { // 获取参与成果列表 var getJoinComList = function () { $scope.showLoadingToast(); ActivityService.getJoinComList().then(function (response) { // console.log(response); $scope.transformResultList = response.transformResultList; $scope.hideLoadingToast(); }, function () { $scope.hideLoadingToast(); }) }; //getJoinComList(); //获取企业信息列表 $scope.transformResultList=[ {logo:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2102756011,2989429775&fm=27&gp=0.jpg", transformResultname:"成果A", transformResultLabel:"启动" }, {logo:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2427437564,310554570&fm=27&gp=0.jpg", transformResultname:"成果B", transformResultLabel:"进行中" }, {logo:"https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=733963650,3633348335&fm=27&gp=0.jpg", transformResultname:"成果C", transformResultLabel:"启动" }, {logo:"https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1477507599,2478418295&fm=27&gp=0.jpg", transformResultname:"成果D", transformResultLabel:"进行中" }, {logo:"https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=376390060,3966999180&fm=27&gp=0.jpg", transformResultname:"成果E", transformResultLabel:"完成" } ]; //进入成 $scope.goDetail = function (transformResultId) { $scope.go("", {transformResultId: transformResultId}); }; $scope.goEnterResultInfo=function () { $scope.go("technicalBrokerAddTransformInfo"); } });