Files
sgxt_web/src/views/home/model/bkcz.vue

163 lines
4.5 KiB
Vue
Raw Normal View History

2025-04-15 14:38:12 +08:00
<template>
<div class="comom-title">
<div class="title">
2025-07-14 10:34:19 +08:00
<span class="mr12 pointer nowrap" :style="{fontSize:activeIndex == idx ? '22px':'18px'} " v-for="(it,idx) in btns" :key="idx" @click="changeActive(idx)">{{ it }}</span>
2025-04-15 14:38:12 +08:00
</div>
</div>
<div class="comom-cnt" id="qcbk">
<MyTable @changePage="changePage" customClass="zdy_bkcz_table" :tableData="pageData.tableData" :tableColumn="pageData.tableColumn" :tableHeight="pageData.tableHeight" :key="pageData.keyCount" :tableConfiger="pageData.tableConfiger" >
<template #tp="{row}">
2025-07-14 10:34:19 +08:00
<img width="30" src="@/assets/images/icon100.png" alt="">
2025-04-15 14:38:12 +08:00
</template>
<template #czzt="{row}">
<span style="color:#FDBC3A">{{ row.czzt }}</span>
</template>
</MyTable>
</div>
</template>
<script setup>
import MyTable from "@/components/aboutTable/DarkTable.vue";
import { reactive, ref,onMounted } from "vue";
const btns = reactive(["全域布控处置重点人员", "全域布控处置重点群体"]);
const activeIndex = ref(0);
const pageData = reactive({
tableData: [
{
tp: "https://example.com/photo1.jpg",
xm: "张三",
xb: "男",
sfzh: "330102199001011234",
gkdw: "城东派出所",
hdsj: "2023-12-25 14:30",
sfdz: "杭州市上城区平海路123号",
czzt: "已处置"
},
{
tp: "https://example.com/photo2.jpg",
xm: "李四",
xb: "女",
sfzh: "330102199203034567",
gkdw: "城西派出所",
hdsj: "2023-12-25 16:45",
sfdz: "杭州市西湖区文三路456号",
czzt: "待处置"
},
{
tp: "https://example.com/photo3.jpg",
xm: "王五",
xb: "男",
sfzh: "330102199505057890",
gkdw: "城北派出所",
hdsj: "2023-12-25 09:15",
sfdz: "杭州市拱墅区莫干山路789号",
czzt: "处置中"
},
{
tp: "https://example.com/photo3.jpg",
xm: "王五",
xb: "男",
sfzh: "330102199505057890",
gkdw: "城北派出所",
hdsj: "2023-12-25 09:15",
sfdz: "杭州市拱墅区莫干山路789号",
czzt: "处置中"
},
],
keyCount: 0,
tableConfiger: {
loading: false,
rowHieght: 61,
haveControls: false,
showSelectType: "null",
showIndex: false,
stripe:true
},
tableColumn: [
{ label: "照片", prop: "tp", showSolt: true },
{ label: "姓名", prop: "xm", showOverflowTooltip: true },
{ label: "性别", prop: "xb" ,showOverflowTooltip: true},
{ label: "身份证号码", prop: "sfzh",showOverflowTooltip: true },
{ label: "管控单位", prop: "gkdw" ,showOverflowTooltip: true},
{ label: "活动时间", prop: "hdsj" ,showOverflowTooltip: true},
{ label: "活动发生地址", prop: "sfdz" ,showOverflowTooltip: true},
{ label: "处置状态", prop: "czzt",showOverflowTooltip: true,showSolt: true },
]
});
2025-07-14 10:34:19 +08:00
const page = ref(1);
const total = ref(0);
2025-04-15 14:38:12 +08:00
onMounted(() => {
tabHeightFn();
});
2025-07-14 10:34:19 +08:00
const changeActive = (idx) =>{
activeIndex.value = idx;
page.value = 0;
total.value = 0;
switch(idx){
case 0:
break;
case 1:
break;
}
pageData.keyCount++;
changePage(idx)
}
2025-04-15 14:38:12 +08:00
const changePage = () => {
2025-07-14 10:34:19 +08:00
pageData.tableConfiger.loading = true;
let url = activeIndex.value == 0 ? '/mosty-gsxt/tbGsxtZdry/selectPage':'';
let data = { pageSize:10,pageNum:page.value };
qcckGet(data, url).then((res) => {
pageData.tableData = res.records || [];
total.value = res.total;
pageData.tableConfiger.loading = false;
}).catch(() => {
pageData.tableConfiger.loading = false;
});
2025-04-15 14:38:12 +08:00
console.log('触底加载==========');
};
2025-07-14 10:34:19 +08:00
// 获取数据
const getData = () =>{
}
2025-04-15 14:38:12 +08:00
const tabHeightFn = () => {
2025-04-16 09:33:29 +08:00
pageData.tableHeight = document.getElementById('qcbk').offsetHeight - 12;
2025-07-14 10:34:19 +08:00
window.onresize = function () {
tabHeightFn();
};
2025-04-15 14:38:12 +08:00
};
</script>
<style lang="scss" scoped>
@import "@/assets/css/homeScreen.scss";
::v-deeep .comom-title{
background: url("~@/assets/images/bg18.png") no-repeat center center;
background-size: 100% 100%;
}
::v-deeep .comom-cnt{
background: url("~@/assets/images/bg18.png") no-repeat center center;
background-size: 100% 100%;
}
::v-deep .el-table td.el-table__cell{
color: #ffffff;
}
::v-deep .el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell{
background: rgba(0,61,130,0.75);
}
</style>
<style lang="scss">
.zdy_bkcz_table td.el-table__cell {
color: #ffffff !important;
}
.zdy_bkcz_table th.el-table__cell {
color: #ffffff !important;
font-size: 15px;
}
</style>