|
@@ -1,213 +1,304 @@
|
|
|
<template>
|
|
|
<PageWrapper contentBackground>
|
|
|
<div class="desc-wrap-BasicTable">
|
|
|
- <BasicTable @register="registerTable">
|
|
|
- </BasicTable>
|
|
|
+ <BasicTable @register="registerTable"> </BasicTable>
|
|
|
</div>
|
|
|
</PageWrapper>
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
|
- import { defineComponent, h, onMounted, computed } from 'vue';
|
|
|
- import {
|
|
|
+import { defineComponent, h, onMounted, computed } from 'vue';
|
|
|
+import {
|
|
|
+ BasicTable,
|
|
|
+ useTable,
|
|
|
+ TableAction,
|
|
|
+ BasicColumn,
|
|
|
+ TableImg,
|
|
|
+ FormProps,
|
|
|
+} from '/@/components/Table';
|
|
|
+import { PageWrapper } from '/@/components/Page';
|
|
|
+import { Descriptions } from 'ant-design-vue';
|
|
|
+import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
+import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
+import { cameraList } from '/@/api/customer';
|
|
|
+import { cameraDelete } from '/@/api/device';
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
+import { UnbindCameraApi } from '/@/api/account';
|
|
|
+import { usePermissionStore } from '/@/store/modules/permission';
|
|
|
+import { useLocaleStore } from '/@/store/modules/locale';
|
|
|
+import { dincrementList } from '/@/api/equity';
|
|
|
+export default defineComponent({
|
|
|
+ components: {
|
|
|
BasicTable,
|
|
|
- useTable,
|
|
|
TableAction,
|
|
|
- BasicColumn,
|
|
|
+ PageWrapper,
|
|
|
TableImg,
|
|
|
- FormProps,
|
|
|
- } from '/@/components/Table';
|
|
|
- import { PageWrapper } from '/@/components/Page';
|
|
|
- import { Descriptions } from 'ant-design-vue';
|
|
|
- import { useI18n } from '/@/hooks/web/useI18n';
|
|
|
- import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
- import { cameraList } from '/@/api/customer';
|
|
|
- import { cameraDelete } from '/@/api/device';
|
|
|
- import { useRouter } from 'vue-router';
|
|
|
- import { UnbindCameraApi } from '/@/api/account';
|
|
|
- import { usePermissionStore } from '/@/store/modules/permission';
|
|
|
- import { useLocaleStore } from '/@/store/modules/locale';
|
|
|
- export default defineComponent({
|
|
|
- components: {
|
|
|
- BasicTable,
|
|
|
- TableAction,
|
|
|
- PageWrapper,
|
|
|
- TableImg,
|
|
|
- [Descriptions.name]: Descriptions,
|
|
|
- [Descriptions.Item.name]: Descriptions.Item,
|
|
|
- },
|
|
|
- setup() {
|
|
|
- const { t } = useI18n();
|
|
|
- const { createMessage, createConfirm } = useMessage();
|
|
|
- const permissionStore = usePermissionStore();
|
|
|
- const { getCheckPerm } = permissionStore;
|
|
|
- const router = useRouter();
|
|
|
- const localeStore = useLocaleStore();
|
|
|
- const isEn = computed(() => localeStore.getLocale === 'en');
|
|
|
- const companyId: Number = router.currentRoute.value.params.id - 0;
|
|
|
- onMounted(() => {
|
|
|
- // console.log(router.currentRoute.value.params.id);
|
|
|
- });
|
|
|
- const columns: BasicColumn[] = [
|
|
|
- {
|
|
|
- title: t('routes.device.snCode'),
|
|
|
- dataIndex: 'snCode',
|
|
|
- width: 180,
|
|
|
+ [Descriptions.name]: Descriptions,
|
|
|
+ [Descriptions.Item.name]: Descriptions.Item,
|
|
|
+ },
|
|
|
+ setup() {
|
|
|
+ const { t } = useI18n();
|
|
|
+ const { createMessage, createConfirm } = useMessage();
|
|
|
+ const permissionStore = usePermissionStore();
|
|
|
+ const { getCheckPerm } = permissionStore;
|
|
|
+ const router = useRouter();
|
|
|
+ const localeStore = useLocaleStore();
|
|
|
+ const isEn = computed(() => localeStore.getLocale === 'en');
|
|
|
+ const companyId: Number = router.currentRoute.value.params.id - 0;
|
|
|
+ onMounted(() => {
|
|
|
+ // console.log(router.currentRoute.value.params.id);
|
|
|
+ });
|
|
|
+ const columns: BasicColumn[] = [
|
|
|
+ {
|
|
|
+ title: t('routes.device.snCode'),
|
|
|
+ dataIndex: 'snCode',
|
|
|
+ width: 180,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: t('routes.device.wifiName'),
|
|
|
+ dataIndex: 'wifiName',
|
|
|
+ width: 150,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: t('routes.device.deviceType'),
|
|
|
+ dataIndex: 'type',
|
|
|
+ ellipsis: false,
|
|
|
+ width: 80,
|
|
|
+ customRender: ({ record }) => {
|
|
|
+ let typeObj = {
|
|
|
+ '0': t('routes.device.type.0'),
|
|
|
+ '1': t('routes.device.type.1'),
|
|
|
+ '2': t('routes.device.type.2'),
|
|
|
+ '9': t('routes.device.type.9'),
|
|
|
+ '10': t('routes.device.type.10'),
|
|
|
+ };
|
|
|
+ return typeObj[record.type];
|
|
|
},
|
|
|
- {
|
|
|
- title: t('routes.device.wifiName'),
|
|
|
- dataIndex: 'wifiName',
|
|
|
- width: 150,
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ title: t('routes.device.activatedTime'),
|
|
|
+ dataIndex: 'activatedTime',
|
|
|
+ width: 180,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: t('routes.equity.Type'),
|
|
|
+ dataIndex: 'validTimeType',
|
|
|
+ width: 180,
|
|
|
+ customRender({ record }) {
|
|
|
+ return record.validTimeType==0 ?t('routes.equity.equityType.0'):record.validTimeType==1? t('routes.equity.equityType.3') : t('routes.device.NoBind');
|
|
|
},
|
|
|
- {
|
|
|
- title: t('routes.device.deviceType'),
|
|
|
- dataIndex: 'type',
|
|
|
- ellipsis: false,
|
|
|
- width: 80,
|
|
|
- customRender: ({ record }) => {
|
|
|
- let typeObj ={
|
|
|
- '0':t('routes.device.type.0'),
|
|
|
- '1':t('routes.device.type.1'),
|
|
|
- '2':t('routes.device.type.2'),
|
|
|
- '9':t('routes.device.type.9'),
|
|
|
- '10':t('routes.device.type.10'),
|
|
|
- }
|
|
|
- return typeObj[record.type]
|
|
|
- }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: t('routes.device.statusName'),
|
|
|
+ dataIndex: 'incrementStatus',
|
|
|
+ customRender({ record }) {
|
|
|
+ if(record.incrementStatus == -1){
|
|
|
+ return '-'
|
|
|
+ }else{
|
|
|
+ return record.incrementStatus==0? t('routes.device.status.0') : t('routes.device.status.1');
|
|
|
+ }
|
|
|
},
|
|
|
-
|
|
|
- {
|
|
|
- title: t('routes.device.activatedTime'),
|
|
|
- dataIndex: 'activatedTime',
|
|
|
- width: 180,
|
|
|
+ width: 180,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: t('routes.device.userName'),
|
|
|
+ dataIndex: 'userName',
|
|
|
+ width: 180,
|
|
|
+ customRender({ record }) {
|
|
|
+ return record.userName ? record.userName : '-';
|
|
|
},
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ const searchForm: Partial<FormProps> = {
|
|
|
+ labelWidth: 120,
|
|
|
+ autoAdvancedLine:1,
|
|
|
+ actionColOptions: {
|
|
|
+ span: 24,
|
|
|
+ },
|
|
|
+ schemas: [
|
|
|
{
|
|
|
- title: t('routes.device.userName'),
|
|
|
- dataIndex: 'userName',
|
|
|
- width: 180,
|
|
|
- customRender({ record }) {
|
|
|
- return record.userName?record.userName:'-'
|
|
|
+ field: 'snCode',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.device.snCode'),
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
},
|
|
|
},
|
|
|
- ];
|
|
|
- const searchForm: Partial<FormProps> = {
|
|
|
- labelWidth: isEn.value?120:80,
|
|
|
- autoAdvancedLine:1,
|
|
|
- actionColOptions: {
|
|
|
- span: 24,
|
|
|
- },
|
|
|
- schemas: [
|
|
|
- {
|
|
|
- field: 'snCode',
|
|
|
- component: 'Input',
|
|
|
- label: t('routes.device.snCode'),
|
|
|
- colProps: {
|
|
|
- xl: 6,
|
|
|
- xxl: 6,
|
|
|
- },
|
|
|
- },{
|
|
|
- field: 'type',
|
|
|
- component: 'Select',
|
|
|
- label: t('routes.device.deviceType'),
|
|
|
- colProps: {
|
|
|
- xl: 6,
|
|
|
- xxl: 6,
|
|
|
- },
|
|
|
- componentProps: {
|
|
|
- options: [
|
|
|
- {
|
|
|
+ {
|
|
|
+ field: 'type',
|
|
|
+ component: 'Select',
|
|
|
+ label: t('routes.device.deviceType'),
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
+ },
|
|
|
+ componentProps: {
|
|
|
+ options: [
|
|
|
+ {
|
|
|
// label: t('routes.device.type.0'),
|
|
|
// value: 0,
|
|
|
// key: '0',
|
|
|
// },{
|
|
|
- label: t('routes.device.type.1'),
|
|
|
- value: 1,
|
|
|
- key: '1',
|
|
|
- },{
|
|
|
- label: t('routes.device.type.2'),
|
|
|
- value: 9,
|
|
|
- key: '9',
|
|
|
- },{
|
|
|
- label: t('routes.device.type.3'),
|
|
|
- value: 10,
|
|
|
- key: '10',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
+ label: t('routes.device.type.1'),
|
|
|
+ value: 1,
|
|
|
+ key: '1',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('routes.device.type.2'),
|
|
|
+ value: 9,
|
|
|
+ key: '9',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('routes.device.type.3'),
|
|
|
+ value: 10,
|
|
|
+ key: '10',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'userName',
|
|
|
+ component: 'Input',
|
|
|
+ label: t('routes.device.userName'),
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
},
|
|
|
- {
|
|
|
- field: 'userName',
|
|
|
- component: 'Input',
|
|
|
- label: t('routes.device.userName'),
|
|
|
- colProps: {
|
|
|
- xl: 6,
|
|
|
- xxl: 6,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'incrementTypeId',
|
|
|
+ component: 'ApiSelect',
|
|
|
+ label: t('routes.equity.Type'),
|
|
|
+ componentProps: {
|
|
|
+ maxLength: 50,
|
|
|
+ api: async function () {
|
|
|
+ const list = await dincrementList();
|
|
|
+ return list.map((ele) => {
|
|
|
+ return { name: t(`routes.finance.equityType.${ele.validTimeType}`), value: ele.id };
|
|
|
+ });
|
|
|
},
|
|
|
+ numberToString: true,
|
|
|
+ labelField: 'name',
|
|
|
+ valueField: 'value',
|
|
|
+ immediate: true,
|
|
|
+ },
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
},
|
|
|
- ],
|
|
|
- };
|
|
|
- const [registerTable, { reload }] = useTable({
|
|
|
- api: cameraList,
|
|
|
- columns: columns,
|
|
|
- searchInfo: { companyId },
|
|
|
- useSearchForm: true,
|
|
|
- formConfig: searchForm,
|
|
|
- showTableSetting: true,
|
|
|
- showIndexColumn:false,
|
|
|
- rowKey: 'id',
|
|
|
- beforeFetch:(T)=>{
|
|
|
- if(T.ctivated){
|
|
|
- T.activatedStartTime = T.ctivated[0]
|
|
|
- T.activatedEndTime = T.ctivated[1]
|
|
|
- }
|
|
|
- return T
|
|
|
},
|
|
|
- fetchSetting: {
|
|
|
- pageField: 'pageNum',
|
|
|
- sizeField: 'pageSize',
|
|
|
- listField: 'list',
|
|
|
- totalField: 'total',
|
|
|
+ {
|
|
|
+ field: 'incrementStatus',
|
|
|
+ component: 'Select',
|
|
|
+ label: t('routes.device.statusName'),
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
+ },
|
|
|
+ componentProps: {
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ label: t('routes.device.status.0'),
|
|
|
+ value: '0',
|
|
|
+ key: '0',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('routes.device.status.1'),
|
|
|
+ value: '1',
|
|
|
+ key: '1',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
},
|
|
|
- canResize: false,
|
|
|
- });
|
|
|
- async function handleUnbind(record: Recordable) {
|
|
|
- createConfirm({
|
|
|
- iconType: 'warning',
|
|
|
- title: () => h('span', t('common.optSuccess')),
|
|
|
- content: '解绑后用户将看不到该相机拍摄的场景。<br/>确定解绑吗?',
|
|
|
- onOk: async () => {
|
|
|
- await UnbindCameraApi({cameraId:record.id})
|
|
|
- createMessage.success(t('common.optSuccess'));
|
|
|
- reload()
|
|
|
+ {
|
|
|
+ field: 'bindStatus',
|
|
|
+ component: 'Select',
|
|
|
+ label: t('routes.device.bindStatus'),
|
|
|
+ colProps: {
|
|
|
+ xl: 8,
|
|
|
+ xxl: 8,
|
|
|
},
|
|
|
- });
|
|
|
- }
|
|
|
- async function handleDelete(record: Recordable){
|
|
|
- createConfirm({
|
|
|
- iconType: 'warning',
|
|
|
- title: () => h('span', t('common.optSuccess')),
|
|
|
- content: '删除设备后需要重新入库<br/>确定删除吗?',
|
|
|
- onOk: async () => {
|
|
|
- await cameraDelete({id:record.id})
|
|
|
- createMessage.success(t('common.optSuccess'));
|
|
|
- reload()
|
|
|
+ componentProps: {
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ label: t('routes.device.status.2'),
|
|
|
+ value: '1',
|
|
|
+ key: '1',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('routes.device.status.3'),
|
|
|
+ value: '0',
|
|
|
+ key: '0',
|
|
|
+ },
|
|
|
+ ],
|
|
|
},
|
|
|
- });
|
|
|
- }
|
|
|
- return {
|
|
|
- registerTable,
|
|
|
- handleUnbind,
|
|
|
- reload,
|
|
|
- handleDelete,
|
|
|
- getCheckPerm,
|
|
|
- };
|
|
|
- },
|
|
|
- });
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+ const [registerTable, { reload }] = useTable({
|
|
|
+ api: cameraList,
|
|
|
+ columns: columns,
|
|
|
+ searchInfo: { companyId },
|
|
|
+ useSearchForm: true,
|
|
|
+ formConfig: searchForm,
|
|
|
+ showTableSetting: true,
|
|
|
+ showIndexColumn: false,
|
|
|
+ rowKey: 'id',
|
|
|
+ beforeFetch: (T) => {
|
|
|
+ if (T.ctivated) {
|
|
|
+ T.activatedStartTime = T.ctivated[0];
|
|
|
+ T.activatedEndTime = T.ctivated[1];
|
|
|
+ }
|
|
|
+ return T;
|
|
|
+ },
|
|
|
+ fetchSetting: {
|
|
|
+ pageField: 'pageNum',
|
|
|
+ sizeField: 'pageSize',
|
|
|
+ listField: 'list',
|
|
|
+ totalField: 'total',
|
|
|
+ },
|
|
|
+ canResize: false,
|
|
|
+ });
|
|
|
+ async function handleUnbind(record: Recordable) {
|
|
|
+ createConfirm({
|
|
|
+ iconType: 'warning',
|
|
|
+ title: () => h('span', t('common.optSuccess')),
|
|
|
+ content: '解绑后用户将看不到该相机拍摄的场景。<br/>确定解绑吗?',
|
|
|
+ onOk: async () => {
|
|
|
+ await UnbindCameraApi({ cameraId: record.id });
|
|
|
+ createMessage.success(t('common.optSuccess'));
|
|
|
+ reload();
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ async function handleDelete(record: Recordable) {
|
|
|
+ createConfirm({
|
|
|
+ iconType: 'warning',
|
|
|
+ title: () => h('span', t('common.optSuccess')),
|
|
|
+ content: '删除设备后需要重新入库<br/>确定删除吗?',
|
|
|
+ onOk: async () => {
|
|
|
+ await cameraDelete({ id: record.id });
|
|
|
+ createMessage.success(t('common.optSuccess'));
|
|
|
+ reload();
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ registerTable,
|
|
|
+ handleUnbind,
|
|
|
+ reload,
|
|
|
+ handleDelete,
|
|
|
+ getCheckPerm,
|
|
|
+ };
|
|
|
+ },
|
|
|
+});
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
- .desc-wrap-BasicTable {
|
|
|
- background-color: #f0f2f5;
|
|
|
- .vben-basic-table-form-container {
|
|
|
- padding: 0;
|
|
|
- }
|
|
|
+.desc-wrap-BasicTable {
|
|
|
+ background-color: #f0f2f5;
|
|
|
+ .vben-basic-table-form-container {
|
|
|
+ padding: 0;
|
|
|
}
|
|
|
+}
|
|
|
</style>
|