12345678910111213141516171819202122 |
- angular.module('push')
- .controller('academicianDetailCtrl', function ($q, $scope, $ionicActionSheet, ModelService, $stateParams) {
- $scope.title = $stateParams.title;
- $scope.logo = $stateParams.logo;
- $scope.summary = $stateParams.summary;
- $scope.content = $stateParams.content;
- $scope.domain = $stateParams.domain;
- //虚拟搜索框
- $scope.isShowSearchButton = true;
- $scope.keyfilter = {key: ""};//搜索关键词
- $scope.showSearchButtonLeft = function () {
- $scope.isShowSearchButton = false;
- $(".showSearchInput").focus();
- };
- //清空搜索内容
- $scope.clearSearch = function () {
- $scope.isShowSearchButton = true;
- $scope.keyfilter.key = "";
- };
- });
|