This commit is contained in:
duanxiaohai 2024-08-16 10:46:05 +08:00
commit 248ef50016
1 changed files with 7 additions and 12 deletions

View File

@ -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;
} }