修改一下默认错误图标
This commit is contained in:
parent
ce2f141e05
commit
482837d6dd
|
|
@ -4,7 +4,7 @@ app.controller('bookmarksCtr', ['$scope', '$state', '$stateParams', '$filter', '
|
||||||
$scope.showSearch = false; // 搜索对话框
|
$scope.showSearch = false; // 搜索对话框
|
||||||
$scope.bookmarkNormalHover = false;
|
$scope.bookmarkNormalHover = false;
|
||||||
$scope.bookmarkEditHover = false;
|
$scope.bookmarkEditHover = false;
|
||||||
$scope.showStyle = 'card' //($stateParams && $stateParams.showStyle) || 'card'; // 显示风格'navigate', 'card', 'table'
|
$scope.showStyle = ($stateParams && $stateParams.showStyle) || 'navigate'; // 显示风格'navigate', 'card', 'table'
|
||||||
$('.js-radio-' + $scope.showStyle).checkbox('set checked');
|
$('.js-radio-' + $scope.showStyle).checkbox('set checked');
|
||||||
$scope.edit = false;
|
$scope.edit = false;
|
||||||
const perPageItems = 20;
|
const perPageItems = 20;
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
<div class="ui five stackable cards">
|
<div class="ui five stackable cards">
|
||||||
<div class="card link raised" ng-repeat="bookmark in bookmarks">
|
<div class="card link raised" ng-repeat="bookmark in bookmarks">
|
||||||
<div class="image">
|
<div class="image">
|
||||||
<img ng-src="./images/shot/{{bookmark.id}}.png" err-src="./images/shot/264.png"/>
|
<img ng-src="./images/shot/{{bookmark.id}}.png" err-src="./images/shot/default.png"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" href="{{ bookmark.url }}">
|
<div class="content" href="{{ bookmark.url }}">
|
||||||
<div class="description bookmarkTitle">
|
<div class="description bookmarkTitle">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue