xufenglei
2018-06-12 c83b053ccb952e95fad848c914126cbfadce5d26
src/app/routes/reports/demo/demo.component.ts
@@ -51,7 +51,39 @@
  get sensorNames(): string {
    return this._sensorNames;
  }
  options = [{
  value: 'zhejiang',
  label: 'Zhejiang',
  children: [{
    value: 'hangzhou',
    label: 'Hangzhou',
    children: [{
      value: 'xihu',
      label: 'West Lake',
      isLeaf: true
    }]
  }, {
    value: 'ningbo',
    label: 'Ningbo',
    isLeaf: true
  }]
}, {
  value: 'jiangsu',
  label: 'Jiangsu',
  children: [{
    value: 'nanjing',
    label: 'Nanjing',
    children: [{
      value: 'zhonghuamen',
      label: 'Zhong Hua Men',
      children: [{
      value: 'zhonghuamen12',
      label: 'Zhong Hua Men12',
      isLeaf: true
    }]
    }]
  }]
}];
  constructor(
    public http: HttpClient,
    public dateSrv: DateService,
@@ -82,10 +114,10 @@
  }
  
  dimensionChange(value) {
    this.items.forEach((item,index) => {
    this.items.forEach((item, index) => {
      item.profession = null;
      item.monitorPoint = null;
      item.device = null;
      this.getDevices(index);
    });
    if (value === 'monitorPoint') {
      this.professionShow = false;
@@ -159,37 +191,52 @@
        this.areacodeService.getProvinces().subscribe(
          (res: {label: string, value: string}[]) => {
            event.resolve(res);
          }
        ); break;
          });
        break;
      case 0:
        this.areacodeService.getCities(option.value).subscribe(
          (res: {label: string, value: string}[]) => {
            event.resolve(res);
          }
        ); break;
          });
         break;
      case 1:
        this.areacodeService.getAreas(option.value).subscribe(
          (res: {label: string, value: string}[]) => {
            event.resolve(res);
          }
        ); break;
          });
        break;
      case 2:
        this.areacodeService.getTowns(option.value).subscribe(
          (res: {label: string, value: string}[]) => {
            event.resolve(res);
          });
        break;
      case 3:
        this.areacodeService.getVillages(option.value).subscribe(
          (res: {label: string, value: string}[]) => {
            event.resolve(res);
          });
        break;
    }
  }
  public regionChange(event: {option: CascaderOption, index: number}, i) {
        console.info(event);
    let name = '';
    let areaName = '';
    const option = event.option;
    this.items[i].monitorPoint = null;
    this.items[i].profession = null;
    //this.items[i].profession = null;
    this.items[i].cityCode = null;
    this.items[i].areaCode = null;
    this.items[i].device = null;
    this.items[i].townCode = null;
    this.items[i].villageCode = null;
    
    switch (event.index) {
      case 0:
        name = 'provinceCode';
        this.items[i].provinceCode = option.value;
        this.items[i].cityCode = null;
        areaName = option.label;
        break;
      case 1:
@@ -202,8 +249,18 @@
        this.items[i].areaCode = option.value;
        areaName = option.parent.parent.label + '/' + option.parent.label + '/' + option.label;
        break;
      case 3:
        name = 'townCode';
        this.items[i].townCode = option.value;
        areaName = option.parent.parent.parent.label + '/' + option.parent.parent.label + '/' + option.parent.label + '/' + option.label;
        break;
      case 4:
        name = 'villageCode';
        this.items[i].villageCode = option.value;
        areaName = option.parent.parent.parent.parent.label + '/' + option.parent.parent.parent.label + '/' + option.parent.parent.label + '/' + option.parent.label + '/' + option.label;
        break;
    }
    this.items[i].areaName = areaName;
    //this.items[i].areaName = areaName;
    this.http.get(environment.SERVER_BASH_URL + 'monitor-point/list/region', {params: {name: name, value: option.value}}).subscribe((res: any) => {
      if (res.code === 0) {
        this.msgSrv.error(res.message);
@@ -211,42 +268,30 @@
        this.items[i].monitorPointOptions = res.data;
      }
    });
    this.getDevices(i);
  }
  monitorPointChange(value, i) {
    this.items[i].deviceOptions = [];
  getDevices(i) {
    this.items[i].device = null;
    if (value) {
      this.http.get(environment.SERVER_BASH_URL + 'device/monitorPointId', {params: {monitorPointId: value.id}}).subscribe((res: any) => {
        if (res.code === 0) {
          this.msgSrv.error(res.message);
        } else {
          this.items[i].deviceOptions = res.data;
        }
      });
    if (!!this.items[i].profession) {
      this.items[i].professionId = this.items[i].profession.id;
    } else {
      this.items[i].professionId = null;
    }
  }
  professionChange(value, i) {
    this.items[i].deviceOptions = [];
    this.items[i].device = null;
    if (value) {
      if (!!this.items[i].areaName) {
        this.items[i].professionId = value.id;
        this.http.get(environment.SERVER_BASH_URL + 'device/professionId', {params: this.items[i]}).subscribe((res: any) => {
          if (res.code === 0) {
            this.msgSrv.error(res.message);
          } else {
            this.items[i].deviceOptions = res.data;
          }
        });
    if (!!this.items[i].monitorPoint) {
      this.items[i].monitorPointId = this.items[i].monitorPoint.id;
    } else {
      this.items[i].monitorPointId = null;
    }
    return this.http.get(environment.SERVER_BASH_URL + 'device/professionId', {params: this.items[i]}).subscribe((res: any) => {
      if (res.code === 0) {
        this.msgSrv.error(res.message);
      } else {
        this.msgSrv.error('请先选择 省市区!');
        this.items[i].deviceOptions = res.data;
      }
    }
    });
  }
  _disabledDate(current: Date): boolean {
    return current && current.getTime() > Date.now();
  }
@@ -259,7 +304,7 @@
      const areaName = '';
      const item = this.items[i];
      const queryItem: any = {};
      if (item.monitorPointOptions.length > 0) {
      if (item.monitorPointOptions.length > 0 && item.deviceOptions.length > 0) {
        for (const key in item) {
          if (item[key]) {
            queryItem[key] = item[key];
@@ -296,7 +341,7 @@
        break;
      }
    }
    if (validate && this.timeType && query.reportType) {
    if (validate) {
      delete query.sensors;
      if (this._sensors) {
        const sensors = [];
@@ -311,7 +356,7 @@
      query.type = this.timeType.value;
      sessionStorage.setItem('queryParams', JSON.stringify(query));
    } else {
      this.msgSrv.error('请完善搜索项或删除查询条目');
      this.msgSrv.error('所选条目无数据!请完善搜索项或删除查询条目');
      return false;
    }
  }