Files
sgxt_web/src/views/backOfficeSystem/ResearchJudgment/IntelligenceManagement/qbypfx/index.vue

68 lines
1.8 KiB
Vue
Raw Normal View History

2025-07-20 19:20:12 +08:00
<template>
<div class="container">
<div class="header flex just-between">
<span>情报研判分析</span>
<span class="pointer"><el-icon><Close /></el-icon></span>
</div>
2025-07-20 19:31:19 +08:00
<div class="seachsBox">
<Search :searchArr="searchConfiger" @submit="onSearch"/>
</div>
2025-07-20 19:20:12 +08:00
<div class="contant">
<div class="contant-left aside">
<div></div>
</div>
<div class="contant-right aside"></div>
</div>
</div>
</template>
<script setup>
2025-07-20 19:31:19 +08:00
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" },
]);
2025-07-20 19:20:12 +08:00
</script>
<style lang="scss" scoped>
.container{
width: 100%;
height: 100%;
background: #fff;
color: #333;
padding: 10px;
box-sizing: border-box;
.header{
height: 60px;
font-size: 30px;
font-weight: 600;
2025-07-20 19:31:19 +08:00
}
.seachsBox{
2025-07-20 19:20:12 +08:00
}
.contant{
position: relative;
height: calc(100% - 65px);
overflow: hidden;
overflow-y: auto;
.aside{
position: absolute;
width: 400px;
height: 100%;
top: 0;
background: red;
}
.contant-left{
left: 0;
}
.contant-right{
right: 0;
}
}
}
</style>