no message
This commit is contained in:
parent
15df2707b5
commit
57c1e09fc4
2
resources/assets/js/store/actions.js
vendored
2
resources/assets/js/store/actions.js
vendored
@ -1222,6 +1222,8 @@ export default {
|
|||||||
dialog.loading = false;
|
dialog.loading = false;
|
||||||
dialog.currentPage = result.data.current_page;
|
dialog.currentPage = result.data.current_page;
|
||||||
dialog.hasMorePages = !!result.data.next_page_url;
|
dialog.hasMorePages = !!result.data.next_page_url;
|
||||||
|
dispatch("saveDialog", dialog);
|
||||||
|
//
|
||||||
const ids = result.data.data.map(({id}) => id)
|
const ids = result.data.data.map(({id}) => id)
|
||||||
if (ids.length == 0) {
|
if (ids.length == 0) {
|
||||||
return;
|
return;
|
||||||
|
4
resources/assets/sass/pages/page-login.scss
vendored
4
resources/assets/sass/pages/page-login.scss
vendored
@ -13,8 +13,8 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.login-logo {
|
.login-logo {
|
||||||
width: 64px;
|
width: 72px;
|
||||||
height: 64px;
|
height: 72px;
|
||||||
background: url("../images/logo.svg") no-repeat center center;
|
background: url("../images/logo.svg") no-repeat center center;
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@ -10,6 +10,7 @@
|
|||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
<title>{{ config('app.name', 'WebPage') }}</title>
|
<title>{{ config('app.name', 'WebPage') }}</title>
|
||||||
|
<link rel="shortcut icon" href="{{ asset_main('favicon.ico') }}">
|
||||||
<link rel="stylesheet" type="text/css" href="{{ mix('css/app.css') }}">
|
<link rel="stylesheet" type="text/css" href="{{ mix('css/app.css') }}">
|
||||||
<link rel="stylesheet" type="text/css" href="{{ asset_main('css/iview.css') }}">
|
<link rel="stylesheet" type="text/css" href="{{ asset_main('css/iview.css') }}">
|
||||||
<script src="{{ asset_main('js/jquery.min.js') }}"></script>
|
<script src="{{ asset_main('js/jquery.min.js') }}"></script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user