This commit is contained in:
parent
0496652a10
commit
9de5dc3c06
|
@ -99,7 +99,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- v-if="dataMyTag.camera" -->
|
<!-- v-if="dataMyTag.camera" -->
|
||||||
<div class="videoCamera" v-if="dataMyTag.camera" @click="openCamera()">
|
<div class="videoCamera" v-if="dataMyTag.camera" @click="openCamera()">
|
||||||
<img src="@/assets/images/sxt_detail.png" alt="">
|
<img src="@/assets/images/sxt_detail.png" alt="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="person-side">
|
<div class="person-side">
|
||||||
|
@ -324,11 +324,7 @@
|
||||||
@handle="handlePaginationDialog"
|
@handle="handlePaginationDialog"
|
||||||
>
|
>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<DialogCamera
|
<DialogCamera :cameraShow="cameraShow" @close="close1"> </DialogCamera>
|
||||||
:cameraShow="cameraShow"
|
|
||||||
@close="close1"
|
|
||||||
>
|
|
||||||
</DialogCamera>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -692,13 +688,13 @@ const pd = computed(() => {
|
||||||
if (name == "医疗保险类型") {
|
if (name == "医疗保险类型") {
|
||||||
if (type == "0") {
|
if (type == "0") {
|
||||||
return "城乡居民基本医疗保险";
|
return "城乡居民基本医疗保险";
|
||||||
} else {
|
} else if (type == "1") {
|
||||||
return "职工基本医疗保险";
|
return "职工基本医疗保险";
|
||||||
}
|
}
|
||||||
} else if (name == "养老金类型") {
|
} else if (name == "养老金类型") {
|
||||||
if (type == "0") {
|
if (type == "0") {
|
||||||
return "城乡居民养老金";
|
return "城乡居民养老金";
|
||||||
} else {
|
} else if (type == "1") {
|
||||||
return "职工养老金";
|
return "职工养老金";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -759,7 +755,6 @@ const getTable = (url, csh) => {
|
||||||
rightList.value.length = 0;
|
rightList.value.length = 0;
|
||||||
} else {
|
} else {
|
||||||
rightList.value = tableType.data[0];
|
rightList.value = tableType.data[0];
|
||||||
console.log(22222, rightList.value);
|
|
||||||
}
|
}
|
||||||
rightType.value = 0;
|
rightType.value = 0;
|
||||||
}
|
}
|
||||||
|
@ -1108,8 +1103,8 @@ onMounted(() => {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
p {
|
p {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
// &:hover {
|
// &:hover {
|
||||||
// background: rgba(0, 158, 255, 0.38);
|
// background: rgba(0, 158, 255, 0.38);
|
||||||
// box-shadow: inset 0px 0px 11px 0px rgba(255, 255, 255, 0.5);
|
// box-shadow: inset 0px 0px 11px 0px rgba(255, 255, 255, 0.5);
|
||||||
|
@ -1210,7 +1205,7 @@ onMounted(() => {
|
||||||
top: -10px;
|
top: -10px;
|
||||||
right: 30px;
|
right: 30px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
img{
|
img {
|
||||||
width: 46px;
|
width: 46px;
|
||||||
height: 46px;
|
height: 46px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue