1234567891011121314151617181920212223242526272829 |
- angular.module('push')
- .controller('ActivityScheduleAccountCtrl', function ($scope, $stateParams, DockingService, UtilService) {
- var infoid = $stateParams.infoid;
- //获取超级管理员跟进列表
- var getActivityFollowUpList = function () {
- $scope.showLoadingToast();
- DockingService.getAdminActivitiesFollowupList(infoid).then(function (response) {
- console.log(response);
- $scope.actfoluplist = response.returnlist;
- $scope.hideLoadingToast();
- }, function () {
- UtilService.showMess("网络不给力,请重试");
- $scope.hideLoadingToast();
- })
- };
- getActivityFollowUpList();
- //查看跟进信息
- $scope.goActivityScheduleDetail = function (orgname, doccon) {
- $scope.go("ActivityLogisty", {
- folupid: 0,
- role: 3,
- orgname: orgname,
- docking_content: doccon.docking_content
- });
- };
- });
|