angularjs弹出层

/**
   * 选择车牌号前缀
   *
   */

  $ionicModal.fromTemplateUrl('templates/order/modal/orderCity.html', {
   scope: $scope,//增长$scope
   animation: 'animated bounceInUp'//增长弹出动画样式
  }).then(function(modal) {
   $scope.CityNumberModal = modal;
  });
  //显示方法
  $scope.showCity = function() {
   $scope.CityNumberModal.show();
  }
  //隐藏方法
 $scope.closetoolNumber = function(city) {
    $scope.CityNumberModal.hide();
   }
相关文章
相关标签/搜索