This commit is contained in:
2025-07-20 19:31:19 +08:00
parent b8f943ca79
commit fdf75c11d2

View File

@ -4,6 +4,9 @@
<span>情报研判分析</span>
<span class="pointer"><el-icon><Close /></el-icon></span>
</div>
<div class="seachsBox">
<Search :searchArr="searchConfiger" @submit="onSearch"/>
</div>
<div class="contant">
<div class="contant-left aside">
<div></div>
@ -14,6 +17,15 @@
</template>
<script setup>
import Search from "@/components/aboutTable/Search.vue";
import { reactive, ref } from 'vue';
const searchConfiger = reactive([
{ label: "所属部门", prop: 'ssbmdm', placeholder: "请输入所属部门", showType: "department" },
{ label: "内容关键字", prop: 'xsNr', placeholder: "请输入语义关键字", showType: "input" },
{ label: "线索类型", prop: 'xlLx', placeholder: "请选择线索类型", showType: "select"},
{ label: "线索来源", prop: 'qbLy', placeholder: "请选择线索来源", showType: "select"},
{ label: "指向地点", prop: 'zxdz', placeholder: "请输入指向地点", showType: "input" },
]);
</script>
<style lang="scss" scoped>
@ -28,6 +40,9 @@
height: 60px;
font-size: 30px;
font-weight: 600;
}
.seachsBox{
}
.contant{
position: relative;