|
@@ -6,7 +6,7 @@
|
|
|
<span style="font-size: 30px;margin-left:-10px;">数据湖数据检索</span>
|
|
|
</Space>
|
|
|
<Space :size="20">
|
|
|
- <!-- <Search />-->
|
|
|
+<!-- <Search />-->
|
|
|
<shopping-cart-outlined @click="onShowCart" title="购物车"
|
|
|
:style="{fontSize: '25px', color: 'red',display:'contents'}"/>
|
|
|
<Tooltip title="修改密码" placement="bottom" v-if="isDev">
|
|
@@ -17,9 +17,12 @@
|
|
|
<Tooltip title="退出系统" placement="bottom" v-if="isDev">
|
|
|
<PoweroffOutlined @click.prevent="doLogout"/>
|
|
|
</Tooltip>
|
|
|
- <LocalePicker/>
|
|
|
- </Space>
|
|
|
+<!-- <LocalePicker/>-->
|
|
|
+ </Space>
|
|
|
</Layout.Header>
|
|
|
+ <Layout.Content class="layout-header-hint">
|
|
|
+ 本系统为非涉密系统,严禁处理、传输国家秘密、商业秘密、工作秘密等!
|
|
|
+ </Layout.Content>
|
|
|
<ShoppingcartModal ref="shoppingCartModalRef"></ShoppingcartModal>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -139,4 +142,15 @@ onMounted(() => {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
+.layout-header-hint{
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ background-color: white !important;
|
|
|
+ color: red;
|
|
|
+ font-size: medium;
|
|
|
+ padding-right: 10px;
|
|
|
+ height: 0px;
|
|
|
+ position: sticky;
|
|
|
+ z-index: 100;
|
|
|
+}
|
|
|
</style>
|