|
|
@@ -0,0 +1,260 @@
|
|
|
+<template>
|
|
|
+ <div class="flex flex-col items-center add-body">
|
|
|
+ <el-form
|
|
|
+ class="range-form"
|
|
|
+ :inline="true"
|
|
|
+ :model="cameraRangeData"
|
|
|
+ :rules="rules"
|
|
|
+ label-width="84px"
|
|
|
+ label-position="left"
|
|
|
+ >
|
|
|
+ <el-form-item
|
|
|
+ v-for="item in cameraRangeAddForm"
|
|
|
+ :key="item.prop"
|
|
|
+ :label="item.label"
|
|
|
+ :prop="item.prop"
|
|
|
+ :label-width="item.labelWidth"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-if="item.type === 'input'"
|
|
|
+ v-model="cameraRangeData[item.prop]"
|
|
|
+ :placeholder="item.placeholder"
|
|
|
+ style="width: 200px"
|
|
|
+ />
|
|
|
+ <el-select
|
|
|
+ v-if="item.type === 'select'"
|
|
|
+ v-model="cameraRangeData[item.prop]"
|
|
|
+ :placeholder="item.placeholder"
|
|
|
+ style="width: 200px"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="protocal in item.option"
|
|
|
+ :key="protocal.value"
|
|
|
+ :label="protocal.label"
|
|
|
+ :value="protocal.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div class="flex justify-end" style="width: 100%">
|
|
|
+ <el-button type="primary" class="btn-r" @click="searchRangeCamera">搜索</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="search-list">
|
|
|
+ <BasicTable
|
|
|
+ style="height: 274px"
|
|
|
+ :columns="columns"
|
|
|
+ :data-source="cameraItems"
|
|
|
+ :row-key="(row) => row.name"
|
|
|
+ :action-column="actionColumn"
|
|
|
+ :pagination="false"
|
|
|
+ :tableSetting="{
|
|
|
+ size: false,
|
|
|
+ redo: false,
|
|
|
+ fullscreen: false,
|
|
|
+ striped: false,
|
|
|
+ setting: false,
|
|
|
+ }"
|
|
|
+ :row-class-name="getRowClassName"
|
|
|
+ ref="tableRef"
|
|
|
+ @order-change="orderByItem"
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
+ >
|
|
|
+ <template #empty>
|
|
|
+ <div class="empty-content flex flex-col items-center">
|
|
|
+ <img :src="emptyImg" class="empty-img" />
|
|
|
+ <span class="empty-text">目前无内容,请先添加相机</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </BasicTable>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+ import { computed, h, reactive, ref } from 'vue';
|
|
|
+ import { CameraRangeItem } from '../type';
|
|
|
+ import { cameraRangeAddForm } from '../constant';
|
|
|
+ import SearchCamerasAction from './SearchCamerasAction.vue';
|
|
|
+ import { BasicTable } from '@/components/Table';
|
|
|
+ import { BasicColumn } from '@/components/Table';
|
|
|
+ import { columns } from '../searchRangeColumns';
|
|
|
+ import emptyImg from '@/assets/images/table/table-empty.png';
|
|
|
+ import editIcon from '@/assets/images/table/table-edit.png';
|
|
|
+ import deleteIcon from '@/assets/images/table/table-delete.png';
|
|
|
+
|
|
|
+ const cameraRangeData = ref<CameraRangeItem>({} as CameraRangeItem);
|
|
|
+
|
|
|
+ const rules = computed(() => {
|
|
|
+ const newRule = {};
|
|
|
+ cameraRangeAddForm.forEach((item) => {
|
|
|
+ if (item.required) {
|
|
|
+ newRule[item.prop] = item.rule;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return newRule;
|
|
|
+ });
|
|
|
+
|
|
|
+ //操作列
|
|
|
+ const actionColumn: BasicColumn = reactive({
|
|
|
+ width: 150,
|
|
|
+ title: '操作',
|
|
|
+ prop: 'action',
|
|
|
+ key: 'action',
|
|
|
+ fixed: 'right',
|
|
|
+ render(record) {
|
|
|
+ return h(SearchCamerasAction as any, {
|
|
|
+ activeColor: '#629bf9',
|
|
|
+ unactiveColor: 'rgba(0,0,0,0.4)',
|
|
|
+ tableTextActions: [
|
|
|
+ {
|
|
|
+ label: '添加',
|
|
|
+ disabled: false,
|
|
|
+ onclick: handleAdd.bind(null, record.row),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ tableIconActions: {
|
|
|
+ space: 10,
|
|
|
+ color: '#629bf9',
|
|
|
+ style: 'img',
|
|
|
+ size: 16,
|
|
|
+ actionIcons: [
|
|
|
+ {
|
|
|
+ label: '编辑',
|
|
|
+ icon: editIcon,
|
|
|
+ onClick: handleEdit.bind(null, record.row),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '删除',
|
|
|
+ icon: deleteIcon,
|
|
|
+ onClick: handleDelete.bind(null, record.row),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ const getRowClassName = (record) => {
|
|
|
+ return record.row.name !== 'SHGD-XDJS-0003' ? 'warm-row' : '';
|
|
|
+ };
|
|
|
+
|
|
|
+ const cameraItems = reactive([
|
|
|
+ {
|
|
|
+ cameraIp: '10.10.10.10',
|
|
|
+ protocal: '海康威视',
|
|
|
+ cameraPort: '8080',
|
|
|
+ mac: '255.255.255.255',
|
|
|
+ name: 'SHGD-XDJS-0001',
|
|
|
+ workshopId: 'ARJ21部装车间',
|
|
|
+ workspaceId: '200工位',
|
|
|
+ networkState: 1,
|
|
|
+ status: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ cameraIp: '10.10.10.10',
|
|
|
+ protocal: '海康威视',
|
|
|
+ cameraPort: '8080',
|
|
|
+ mac: '255.255.255.255',
|
|
|
+ name: 'SHGD-XDJS-0002',
|
|
|
+ workshopId: 'ARJ21部装车间',
|
|
|
+ workspaceId: '200工位',
|
|
|
+ networkState: 1,
|
|
|
+ status: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ cameraIp: '10.10.10.10',
|
|
|
+ protocal: '海康威视',
|
|
|
+ cameraPort: '8080',
|
|
|
+ mac: '255.255.255.255',
|
|
|
+ name: 'SHGD-XDJS-0003',
|
|
|
+ workshopId: 'ARJ21部装车间',
|
|
|
+ workspaceId: '200工位',
|
|
|
+ networkState: 1,
|
|
|
+ status: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ cameraIp: '10.10.10.10',
|
|
|
+ protocal: '海康威视',
|
|
|
+ cameraPort: '8080',
|
|
|
+ mac: '255.255.255.255',
|
|
|
+ name: 'SHGD-XDJS-0004',
|
|
|
+ workshopId: 'ARJ21部装车间',
|
|
|
+ workspaceId: '200工位',
|
|
|
+ networkState: 1,
|
|
|
+ status: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ cameraIp: '10.10.10.10',
|
|
|
+ protocal: '海康威视',
|
|
|
+ cameraPort: '8080',
|
|
|
+ mac: '255.255.255.255',
|
|
|
+ name: 'SHGD-XDJS-0005',
|
|
|
+ workshopId: 'ARJ21部装车间',
|
|
|
+ workspaceId: '200工位',
|
|
|
+ networkState: 1,
|
|
|
+ status: 1,
|
|
|
+ },
|
|
|
+ ]);
|
|
|
+
|
|
|
+ const searchRangeCamera = () => {};
|
|
|
+
|
|
|
+ // 列排序操作
|
|
|
+ const orderByItem = () => {};
|
|
|
+
|
|
|
+ const handleSelectionChange = (val: any[]) => {
|
|
|
+ console.log(val);
|
|
|
+ };
|
|
|
+
|
|
|
+ const handleAdd = () => {};
|
|
|
+
|
|
|
+ const handleDelete = () => {};
|
|
|
+
|
|
|
+ const handleEdit = () => {};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ .add-body {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .range-form {
|
|
|
+ width: 1082px;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-content: space-around;
|
|
|
+ margin-bottom: -12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-r {
|
|
|
+ margin-right: 24px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-list {
|
|
|
+ width: 100%;
|
|
|
+ height: 290px;
|
|
|
+ padding: 0 28px;
|
|
|
+ margin-bottom: 60px;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-form-item__label) {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #363636;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+ :deep(.el-form--inline .el-form-item) {
|
|
|
+ display: flex;
|
|
|
+ margin-right: 0;
|
|
|
+ margin-bottom: 28px;
|
|
|
+ }
|
|
|
+ :deep(.el-table__body-wrapper tr td.el-table-fixed-column--left) {
|
|
|
+ background: unset;
|
|
|
+ }
|
|
|
+ :deep(.el-table__body-wrapper tr td.el-table-fixed-column--right) {
|
|
|
+ background: unset;
|
|
|
+ }
|
|
|
+ :deep(.el-table .warm-row) {
|
|
|
+ background: #f9e6e5 !important;
|
|
|
+ }
|
|
|
+</style>
|