ActivityScheduleAccountCtrl.js 926 B

1234567891011121314151617181920212223242526272829
  1. angular.module('push')
  2. .controller('ActivityScheduleAccountCtrl', function ($scope, $stateParams, DockingService, UtilService) {
  3. var infoid = $stateParams.infoid;
  4. //获取超级管理员跟进列表
  5. var getActivityFollowUpList = function () {
  6. $scope.showLoadingToast();
  7. DockingService.getAdminActivitiesFollowupList(infoid).then(function (response) {
  8. console.log(response);
  9. $scope.actfoluplist = response.returnlist;
  10. $scope.hideLoadingToast();
  11. }, function () {
  12. UtilService.showMess("网络不给力,请重试");
  13. $scope.hideLoadingToast();
  14. })
  15. };
  16. getActivityFollowUpList();
  17. //查看跟进信息
  18. $scope.goActivityScheduleDetail = function (orgname, doccon) {
  19. $scope.go("ActivityLogisty", {
  20. folupid: 0,
  21. role: 3,
  22. orgname: orgname,
  23. docking_content: doccon.docking_content
  24. });
  25. };
  26. });