mainindex.js.bak 624 B

123456789101112131415161718
  1. (function ($app) {
  2. 'use strict';
  3. $app.module('ylmis').controller('mainindexCtrl', function ($scope, $state, $filter, $alert, AuthUser, flowaudit, $http, $ocLazyLoad, $loading, $window, $modal, $bsRouterState, $timeout) {
  4. $scope.isShow = false;
  5. $scope.moreTxt = "����";
  6. $scope.isShowClick = function () {
  7. $scope.isShow = !$scope.isShow;
  8. if ($scope.moreTxt == "更多") {
  9. $scope.moreTxt = "收起";
  10. } else if ($scope.moreTxt == "收起") {
  11. $scope.moreTxt = "更多";
  12. }
  13. };
  14. });
  15. })(angular);