app-org-select.vue 6.0 KB
Newer Older
1 2
<template>
  <div class="app-org-select">
3
    <ibiz-select-tree :NodesData="NodesData" v-model="selectTreeValue" :disabled="disabled" :multiple="multiple" @select="treeSelectChange"></ibiz-select-tree>
4 5 6
  </div>
</template>
<script lang = 'ts'>
7 8
import { Vue, Component, Prop, Watch } from "vue-property-decorator";
import { Http } from '@/utils';
9 10 11
@Component({})
export default class AppOrgSelect extends Vue {

12 13 14 15 16 17 18 19 20 21 22 23 24 25
  /**
   * 表单数据
   * 
   * @memberof AppOrgSelect
   */
  @Prop() public data!:any;

  /**
   * 上下文
   * 
   * @memberof AppOrgSelect
   */
  @Prop() public context!:any;

26 27 28 29 30 31 32 33 34 35 36 37 38 39
  /**
   * 填充对象
   * 
   * @memberof AppOrgSelect
   */
  @Prop() public fillMap:any;

  /**
   * 过滤项
   * 
   * @memberof AppOrgSelect
   */
  @Prop() public filter?:string;

40 41 42 43 44 45 46
  /**
   * 是否多选
   * 
   * @memberof AppOrgSelect
   */
  @Prop({default:false}) public multiple?:boolean;

47 48 49 50 51 52 53 54
  /**
   * 是否禁用
   *
   * @type {*}
   * @memberof AppDepartmentSelect
   */
  @Prop({default:false}) public disabled?: boolean;

tony001's avatar
tony001 committed
55 56 57 58 59 60 61
  /**
   * 查询单位路径
   * 
   * @memberof AppOrgSelect
   */
  @Prop() public url!:string;

62 63 64 65 66 67 68
  /**
   * 监听表单数据变化
   * 
   * @memberof AppOrgSelect
   */
  @Watch('data',{immediate:true,deep:true})
  onDataChange(newVal: any, oldVal: any) {
69 70 71 72 73 74
    if(newVal){
      this.computedSelectedData();
      if(this.filter){
        let tempFilterValue:any = this.initBasicData();
        // filter值变化才去请求数据
        if(tempFilterValue && (this.copyFilterValue !== tempFilterValue)){
tony001's avatar
tony001 committed
75
          this.loadTreeData(this.url.replace('${orgid}',tempFilterValue));
76
          this.copyFilterValue = tempFilterValue;
77 78 79 80 81
        }
      }
    }
  }

82 83 84 85 86
  /**
   * 选择值
   * 
   * @memberof AppOrgSelect
   */
87 88 89 90 91 92 93 94
  public selectTreeValue:any = "";

  /**
   * 树节点数据
   * 
   * @memberof AppOrgSelect
   */
  public NodesData:any = [];
95 96

  /**
97
   * 备份过滤值
98 99 100
   * 
   * @memberof AppOrgSelect
   */
101
  public copyFilterValue:any;
102 103 104 105 106 107 108

  /**
   * vue生命周期
   * 
   * @memberof AppOrgSelect
   */
  public created(){
109
    if(!this.filter){
tony001's avatar
tony001 committed
110
      this.loadTreeData(this.url);
111
    }
112 113 114 115 116 117 118 119 120 121 122
  }

  /**
   * 加载树数据
   * 
   * @memberof AppOrgSelect
   */
  public initBasicData(){
    // 计算出过滤值
    if(this.filter){
      if(this.data && this.data[this.filter]){
123
        return this.data[this.filter];
124
      }else if(this.context && this.context[this.filter]){
125 126 127
        return this.context[this.filter];
      }else{
        return null;
128 129 130 131 132
      }
    }
  }

  /**
133
   * 计算选中值
134 135 136
   * 
   * @memberof AppOrgSelect
   */
137 138 139 140 141 142 143 144 145 146 147 148
  public computedSelectedData(){
    // 单选
    if(!this.multiple){
      if(this.fillMap && Object.keys(this.fillMap).length >0){
      let templateValue = {};
      Object.keys(this.fillMap).forEach((item:any) =>{
        if(this.data && this.data[this.fillMap[item]]){
          Object.assign(templateValue,{[item]:this.data[this.fillMap[item]]});
        }
      })
      this.selectTreeValue = JSON.stringify([templateValue]);
      }
149
    }else{
150
    // 多选
tony001's avatar
tony001 committed
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
      if(this.fillMap && Object.keys(this.fillMap).length >0){
        let tempArray:Array<any> = [];
        Object.keys(this.fillMap).forEach((item:any) =>{
          if(this.data && this.data[this.fillMap[item]]){
            let tempDataArray:Array<any> = (this.data[this.fillMap[item]]).split(",");
            tempDataArray.forEach((tempData:any,index:number) =>{
              if(tempArray.length < tempDataArray.length){
                let singleData:any ={[item]:tempData};
                tempArray.push(singleData);
              }else{
                Object.assign(tempArray[index],{[item]:tempData});
              }
            })
          }
        })
        this.selectTreeValue = JSON.stringify(tempArray);
        }
168
    }
169 170 171 172 173 174 175 176
  }

  /**
   * 加载树数据
   * 
   * @memberof AppOrgSelect
   */
  public loadTreeData(requestUrl:string){
tony001's avatar
tony001 committed
177 178 179 180 181 182 183
    if(this.filter){
      const result:any = this.$store.getters.getCopyData(this.filter);
      if(result){
        this.NodesData = result;
        return;
      }
    }
184 185
    Http.getInstance().get(requestUrl).then((res:any) =>{
      if(!res.status && res.status !== 200){
186
        console.error((this.$t('components.appOrgSelect.loadFail') as string));
187 188 189
        return;
      }
      this.NodesData = res.data;
tony001's avatar
tony001 committed
190 191 192
      if(this.filter){
        this.$store.commit('addOrgData', { srfkey: this.filter, orgData: res.data });
      }
193 194 195 196 197 198 199 200 201 202 203
    })
  }

  /**
   * 树选择触发事件
   * 
   * @memberof AppOrgSelect
   */
  public treeSelectChange($event:any){
    // 多选
    if(this.multiple){
204
      if(!Object.is($event,'[]')){
tony001's avatar
tony001 committed
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
        const tempValue:any = JSON.parse($event);
        if(this.fillMap && Object.keys(this.fillMap).length >0){
          Object.keys(this.fillMap).forEach((item:any) =>{
            let tempResult:any ="";
            tempValue.forEach((value:any,index:number) =>{
              tempResult += index>0?`,${value[item]}`:`${value[item]}`;
            })
            this.emitValue(this.fillMap[item],tempResult);
          })
        }
      }else{
        if(this.fillMap && Object.keys(this.fillMap).length >0){
          Object.keys(this.fillMap).forEach((item:any) =>{
            this.emitValue(this.fillMap[item],null);
          })
        }
      }
222 223
    }else{
      // 单选
224
      if(!Object.is($event,'[]')){
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
        const tempValue:any = JSON.parse($event)[0];
        if(this.fillMap && Object.keys(this.fillMap).length >0){
          Object.keys(this.fillMap).forEach((item:any) =>{
            this.emitValue(this.fillMap[item],tempValue[item]);
          })
        }
      }else{
        if(this.fillMap && Object.keys(this.fillMap).length >0){
          Object.keys(this.fillMap).forEach((item:any) =>{
            this.emitValue(this.fillMap[item],null);
          })
        }
      }
    }
  }

  /**
   * 抛值
   * 
   * @memberof AppOrgSelect
   */
  public emitValue(name:string,value:any){
247
    this.$emit('select-change',{name:name,value:value});
248 249 250 251 252 253 254 255
  }

}
</script>

<style lang="less">
@import "./app-org-select.less";
</style>