fix: style problem of message component; 🐛

修复:message 组件样式问题;
This commit is contained in:
iczer 2020-08-27 22:35:07 +08:00
parent ad11e315e6
commit 04be83ac7c
4 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,7 @@ Mock.mock(`${process.env.VUE_APP_API_BASE_URL}/login`, 'post', ({body}) => {
result.data.user = user
result.data.token = 'Authorization:' + Math.random()
result.data.expireAt = new Date(new Date().getTime() + 30 * 60 * 1000)
result.data.permissions = [{id: 'queryForm', operation: ['add', 'edit', 'delete']}]
result.data.permissions = [{id: 'queryForm', operation: ['add', 'edit']}]
result.data.roles = [{id: 'admin', operation: ['add', 'edit', 'delete']}]
}
return result

View File

@ -1,6 +1,6 @@
<template>
<div class="analysis">
<a-row :gutter="[24, 24]">
<a-row style="margin-top: 0" :gutter="[24, 24]">
<a-col :sm="24" :md="12" :xl="6">
<chart-card :loading="loading" :title="$t('totalSales')" total="¥ 189,345">
<a-tooltip :title="$t('introduce')" slot="action">

View File

@ -0,0 +1,3 @@
.ant-message{
z-index: 1100;
}

View File

@ -1 +1,2 @@
@import "ant-time-picker";
@import "ant-message";