update 样式

This commit is contained in:
lb
2023-01-16 17:01:14 +08:00
parent 795fb5642e
commit 712b5937da
7 changed files with 78 additions and 23 deletions

View File

@@ -1,6 +1,8 @@
<!-- 表格页加上搜索条件 -->
<template>
<div class="bg-white rounded-lg shadow-lg w-full h-full p-5">
<div
class="list-view-with-head"
>
<!-- <head-form :form-config="headFormConfig" @headBtnClick="btnClick" /> -->
<BaseSearchForm :head-config="headConfig" @btn-click="handleBtnClick" />
@@ -226,4 +228,13 @@ export default {
};
</script>
<style scoped></style>
<style scoped>
.list-view-with-head {
background: white;
/* height: 100%; */
min-height: inherit;
border-radius: 6px;
padding: 16px;
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.125);
}
</style>