This commit is contained in:
闫世杰 2024-12-19 09:42:42 +08:00
commit 924dc1613b
5 changed files with 23 additions and 19 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -326,8 +326,6 @@ const openLCQXs = () => {
verifyTime: "", verifyTime: "",
}); });
data.active = res.data.length; data.active = res.data.length;
console.log(data.active,222);
if (res.data && res.data.length > 0) { if (res.data && res.data.length > 0) {
data.content.sendTime = res.data[0]?.sendTime; data.content.sendTime = res.data[0]?.sendTime;

View File

@ -81,8 +81,8 @@
</div> </div>
</div> </div>
</div> </div>
<div class="person-content"> <div class="person-content-main">
<div class="back" @click="back()"> <div class="back person-back" @click="back()">
<img src="@/assets/person/back.png" alt="" /> <img src="@/assets/person/back.png" alt="" />
<p>返回</p> <p>返回</p>
</div> </div>
@ -102,6 +102,7 @@
<span v-else>{{ item.name }}</span> <span v-else>{{ item.name }}</span>
</div> </div>
<div class="person-main-person"></div> <div class="person-main-person"></div>
<!-- v-if="dataMyTag.camera" --> <!-- v-if="dataMyTag.camera" -->
<div <div
class="videoCamera" class="videoCamera"
@ -1288,10 +1289,13 @@ onMounted(() => {
background: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.2);
} }
} }
.person-content { .person-content-main {
position: relative; position: relative;
flex: auto; flex: auto;
min-width: 300px; height: 100%;
.person-back {
position: relative;
}
.person-main { .person-main {
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -1322,7 +1326,7 @@ onMounted(() => {
&:nth-of-type(1) { &:nth-of-type(1) {
top: 70px; top: 70px;
left: 70px; left: 60px;
} }
&:nth-of-type(2) { &:nth-of-type(2) {
@ -1337,7 +1341,7 @@ onMounted(() => {
&:nth-of-type(4) { &:nth-of-type(4) {
top: 420px; top: 420px;
left: 110px; left: 100px;
} }
&:nth-of-type(5) { &:nth-of-type(5) {
@ -1412,7 +1416,7 @@ onMounted(() => {
opacity: 0.85; opacity: 0.85;
z-index: 5; z-index: 5;
position: absolute; position: absolute;
bottom: 56px; bottom: -30px;
left: 90px; left: 90px;
width: 600px; width: 600px;
height: 250px; height: 250px;

View File

@ -904,15 +904,15 @@ const columnsList = reactive({
label: "地址", label: "地址",
property: "dz", property: "dz",
}, },
{ // {
label: "救助日期", // label: "",
property: "jzrq", // property: "jzrq",
width: "100", // width: "100",
}, // },
{ {
label: "残疾人护理金额", label: "残疾人护理金额",
property: "col1", property: "col1",
width: "100", width: "130",
}, },
{ {
label: "操作", label: "操作",
@ -1037,6 +1037,7 @@ const personDetails = () => {
return item; return item;
}); });
// index // index
res.data.forEach((item, index) => { res.data.forEach((item, index) => {
item.index = index + 1 + (currentPage - 1) * pageSize; item.index = index + 1 + (currentPage - 1) * pageSize;
@ -1178,7 +1179,7 @@ onMounted(() => {
if(query.bm == "65"){ if(query.bm == "65"){
console.log(columnsList["最低生活保障"].columns65); // console.log(columnsList[""].columns65);
data.columns = columnsList["最低生活保障"].columns65; data.columns = columnsList["最低生活保障"].columns65;
}else{ }else{
data.columns = columnsList["最低生活保障"][defaultTitle.col]; data.columns = columnsList["最低生活保障"][defaultTitle.col];

View File

@ -217,13 +217,14 @@
<!-- 完成途径 --> <!-- 完成途径 -->
<div <div
v-if="item.property == 'operatesDeng'" v-if="item.property == 'operatesDeng'"
style="cursor: pointer"
@click="openLC(scope.row)" @click="openLC(scope.row)"
> >
<div v-if="scope.row.operatesDeng">系统推送</div> <div v-if="scope.row.operatesDeng">系统推送</div>
<div v-else>其他</div> <div v-else>其他</div>
</div> </div>
<!-- 推送次数 --> <!-- 推送次数 -->
<div v-if="item.property == 'pushSendTotal'"> <div v-if="item.property == 'pushSendTotal'" style="cursor: pointer">
<div> <div>
{{ scope.row.pushSendTotal }} {{ scope.row.pushSendTotal }}
</div> </div>
@ -1105,7 +1106,7 @@ const getTable = (pagination) => {
case "2": case "2":
data.tableData1 = res.data; data.tableData1 = res.data;
pagination1.total = res.count; pagination1.total = res.count;
console.log(pagination.id, data.tableData1); // console.log(pagination.id, data.tableData1);
break; break;
case "3": case "3":
data.tableData2 = res.data; data.tableData2 = res.data;