更新数据

This commit is contained in:
2025-07-22 17:20:57 +08:00
parent 36d23fcbdb
commit 7d809e52d2
8 changed files with 327 additions and 194 deletions

View File

@ -2,8 +2,8 @@
<div class="personBox" id="zdrxxtj">
<div class="asideTitle mt60">
<div>
<span class="title">重点人信息统计</span>
<span :class="active == it ? 'active'+`${idx}`:''" @click="changeDate(it)" class="tabsBtn pointer" v-for="(it,idx) in btns" :key="it">{{ it }}</span>
<span class="title">重点人信息统计</span>
<span :class="active == it ? 'active'+`${idx}`:''" @click="changeDate(it)" class="tabsBtn pointer" v-for="(it,idx) in btns" :key="it">{{ it }}</span>
</div>
</div>
<div class="asideCnt">
@ -15,6 +15,11 @@
<template #qtFxdj="{row}">
<DictTag :tag="false" :value="row.qtFxdj" :options="D_GS_ZDQT_FXDJ"/>
</template>
<template #bqList="{row}">
<span v-if="row.bqList">
<el-tag type="success" v-for="(it, idx) in row.bqList" :key="idx">{{it.bqMc }}</el-tag>
</span>
</template>
<template #qtZt="{row}">
<DictTag :tag="false" :value="row.qtZt" :options="D_GS_ZDQT_ZT"/>
</template>
@ -34,10 +39,7 @@ const keywords = ref(''); // 搜索关键字
const { proxy } = getCurrentInstance();
const { D_GS_ZDQT_ZT,D_BZ_RYBQ,D_GS_ZDQT_FXDJ } = proxy.$dict('D_GS_ZDQT_ZT','D_BZ_RYBQ','D_GS_ZDQT_FXDJ') //获取字典数据
const pageData = reactive({
tableData: [
{ ryXm: "王五", rySfzh: "330102199505057890", bq: "吸毒人员" },
{ ryXm: "王五", rySfzh: "330102199505057890", bq: "吸毒人员" },
],
tableData: [],
keyCount: 0,
tableConfiger: {
loading: false,
@ -54,7 +56,7 @@ const pageData = reactive({
tableColumn: [
{ label: "姓名", prop: "ryXm", showOverflowTooltip: true },
{ label: "身份证号码", prop: "rySfzh",showOverflowTooltip: true },
{ label: "标签", prop: "bq",showOverflowTooltip: true },
{ label: "标签", prop: "bqList",showOverflowTooltip: true,showSolt:true },
{ label: "所属线索", prop: "xsmc",showOverflowTooltip: true },
]
});