no message

This commit is contained in:
aipaw 2021-06-25 01:00:54 +08:00
parent 15df2707b5
commit 57c1e09fc4
4 changed files with 5 additions and 2 deletions

View File

@ -1222,6 +1222,8 @@ export default {
dialog.loading = false;
dialog.currentPage = result.data.current_page;
dialog.hasMorePages = !!result.data.next_page_url;
dispatch("saveDialog", dialog);
//
const ids = result.data.data.map(({id}) => id)
if (ids.length == 0) {
return;

View File

@ -13,8 +13,8 @@
flex-direction: column;
align-items: center;
.login-logo {
width: 64px;
height: 64px;
width: 72px;
height: 72px;
background: url("../images/logo.svg") no-repeat center center;
background-size: contain;
}

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -10,6 +10,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="csrf-token" content="{{ csrf_token() }}">
<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="{{ asset_main('css/iview.css') }}">
<script src="{{ asset_main('js/jquery.min.js') }}"></script>