| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <template>
- <el-card v-if="props.modelValue" class="pop-card">
- <template #header>
- <div class="flex justify-between items-center pop-head">
- <span class="pop-head-name">添加相机</span>
- <div class="flex pop-head-tabs">
- <div
- v-for="item in sharedCaremaType"
- :key="item.value"
- class="flex justify-center items-center tab-item"
- :class="{ 'tab-item-active': item.value === addType }"
- @click="addType = item.value"
- >
- {{ item.label }}
- </div>
- </div>
- <el-icon :size="16" class="mr-3" @click="updateValue(false)"><Close /></el-icon>
- </div>
- </template>
- <div><SharedTable :addCameraType="addType" @update="updateUnAdd" /></div>
- </el-card>
- </template>
- <script setup lang="ts">
- import { ref } from 'vue';
- import { sharedCaremaType } from '../constant';
- import { Close } from '@element-plus/icons-vue';
- import SharedTable from './SharedTable.vue';
- const props = defineProps<{ modelValue: boolean }>();
- const emits = defineEmits(['update:modelValue', 'updateUnadd']);
- const addType = ref(sharedCaremaType[0].value);
- const updateValue = (value) => {
- addType.value = sharedCaremaType[0].value;
- emits('update:modelValue', value);
- };
- const updateUnAdd = () => {
- emits('updateUnadd');
- };
- </script>
- <style scoped lang="scss">
- .pop-card {
- position: relative;
- margin-left: 21px !important;
- }
- .pop-head {
- height: 56px;
- &-name {
- margin-left: 24px;
- font-size: 16px;
- font-weight: 500;
- color: #252525;
- }
- &-tabs {
- margin-top: 18px;
- :first-child {
- border-radius: 8px 0px 0px 0px;
- }
- :last-child {
- border-radius: 0px 8px 0px 0px;
- }
- }
- }
- .tab-item {
- width: 188px;
- height: 38px;
- background: #fafafa;
- border: 1px solid #d9d9d9;
- cursor: pointer;
- &-active {
- background: #e2eefe;
- border: 1px solid #1890ff;
- }
- }
- .pop-content {
- height: 566px;
- }
- :deep(.el-card__header) {
- padding: 0;
- }
- :deep(.el-card__body) {
- padding: 0;
- }
- </style>
|