This commit is contained in:
lcw
2025-12-26 09:39:22 +08:00
parent 6999c36c3a
commit e59b401828
23 changed files with 1586 additions and 150 deletions

View File

@ -25,16 +25,17 @@
<template #jqlbdm="{ row }">
<DictTag :tag="false" :value="row.jqlbdm" :options="JQLB" />
</template>
<template #ypzt="{ row }">
{{ row.ypzt === '01' ? '已研判' : '未研判' }}
</template>
<!-- <template #jqdjdm="{ row }">
<DictTag :tag="false" :value="row.jqdjdm" :options="D_BZ_JQDJ" />
</template> -->
<!-- 操作 -->
<template #controls="{ row }">
<el-link type="warning" @click="addEdit('edit', row)">研判</el-link>
<el-link type="danger" @click="addEdit('edit', row)">深度研判</el-link>
<el-link type="primary" @click="addEdit('edit', row)">详情</el-link>
<el-link type="primary" @click="handleYP('研判', row)">研判</el-link>
<el-link type="primary" @click="handleYP('深度研判', row)">深度研判</el-link>
<el-link type="warning" @click="handleYP('研判', row)">研判</el-link>
<el-link type="danger" @click="handleYP('深度研判', row)">深度研判</el-link>
</template>
</MyTable>
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
@ -48,7 +49,7 @@
<!-- 研判弹窗 -->
<YpDialog ref="ypDialog" @change="getList" />
<!-- <DeepYpDialog ref="deepYpDialog" @change="getList" /> -->
<DeepYpDialog ref="deepYpDialog" @change="getList" />
</div>
</template>
@ -122,7 +123,7 @@ const pageData = reactive({
{ label: "警情类型", prop: "jqlbdm",showSolt:true },
{ label: "警情地址", prop: "jqdz" },
{ label: "补充接警内容", prop: "bcjjnr", showOverflowTooltip: true },
{ label: "研判状态", prop: "ypzt",showSolt:true },
]
});