| | |
| | | import { Component, OnInit, ElementRef, ViewChild } from '@angular/core'; |
| | | import { SimpleTableColumn, SimpleTableComponent } from '@delon/abc'; |
| | | import { Subject } from 'rxjs/Subject'; |
| | | import { CoordinatesPickerComponent } from 'app/routes/map/coordinates-picker/coordinates-picker.component'; |
| | | import { CoorPickerService } from 'app/routes/map/coordinates-picker/coordinates-picker.service'; |
| | | import { CoordinatesPickerComponent } from '../../map/coordinates-picker/coordinates-picker.component'; |
| | | import { CoorPickerService } from '../../map/coordinates-picker/coordinates-picker.service'; |
| | | import { OrganizationService } from '@business/services/http/organization.service'; |
| | | import { ExampleService, Criteria } from '@business/services/util/example.service'; |
| | | import { AdjustConfigComponent } from '../../devices/basic-info/adjust-config/adjust-config.component'; |
| | |
| | | columns: SimpleTableColumn[] = [ |
| | | { title: '编号', index: 'id', type: 'checkbox' }, |
| | | { title: '名称', index: 'name' }, |
| | | { title: 'mac', index: 'mac' }, |
| | | { title: 'sim', index: 'mac' }, |
| | | { title: '型号', index: 'deviceVersion.name' }, |
| | | { title: '监控站点', index: 'monitorPoint.name' }, |
| | | { title: '维护人', index: 'operateUser.name' }, |
| | |
| | | { |
| | | text: '删除', |
| | | type: 'del', |
| | | click: (record: any) => this.delete(record.id) |
| | | click: (record: any) => this.addOrModify(record.id) |
| | | }, |
| | | { |
| | | text: '更多', |