FormPrintTemplateRuleCondition.vue 24.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
<template>
  <div>
    <el-dialog :title="title" :visible.sync="dialogVisible"  v-if="dialogVisible" width="80%" appendToBody   :close-on-click-modal="false" top="8vh">
      <el-container>
        <el-tabs v-model="userConditionTab" type="card" style="width:100%;">
        
          <el-tab-pane label="模板规则设置" name="first">

            <div style="position: absolute; z-index: 2;">
              <table  class="table-list custom_condition_tab table"  :style="tab.style"   v-for="tab in tabList" :key="tab.indexStr">
                <tbody>
                  <tr>
                    <td style="width: 12%;text-align: center;">
                      <el-select v-model="tab.ruleType" style="width:80px;" :disabled="isNotEmpty(tab.conDesc)"  size="mini">
                        <el-option label="规则" value="1"> </el-option>
                        <el-option label="脚本" value="2"> </el-option>
                      </el-select>
                    </td>
                    <td>
                        <span> {{tab.conDesc}}  </span>
                        <div style="display:inline-block;float:right">
                          <el-button v-if="tab.conDesc" icon="el-icon-edit" @click="editCondition(tab)"></el-button>
                          <el-button v-if="!tab.conDesc" icon="el-icon-plus" @click="editCondition(tab)"></el-button>
                          <el-button  icon="el-icon-delete" @click="removeCondition(tab.indexStr)"></el-button>
                        </div>
                    </td>
                  </tr>
                </tbody>
              </table>

              <div class="labelrag" :style="branch.style"   v-for="(branch,$index) in branchList" :key="branch.indexStr">
                <el-select v-model="branch.newjunction" style="height: 26px" class="selected_search" @change="changecondition($index)">
                  <el-option label="并且" value="and"> </el-option>
                  <el-option label="或者" value="or"> </el-option>
                  <el-option label="添加条件" value="3"> </el-option>
                  <el-option label="添加联合条件" value="4" v-if="branch.condition !='noAdd' "> </el-option>
                  <el-option label="删除" value="5" v-if="branch.condition !='noDel' "> </el-option>
                </el-select>
              </div>
            </div>
            <div  v-html="svgHtml" style="position: absolute; z-index: 1; width: 500px; height: 100%;"></div>

          </el-tab-pane>
        </el-tabs>
      </el-container>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false" size="medium">取 消</el-button>
        <el-button type="primary" @click="handleClose" size="medium">确 定</el-button>
      </span>
    </el-dialog>
     <FormPrintTemplateRuleSelector ref="formPrintTemplateRuleSelector" :varData="varData" @customRuleSelectorConfirm="customRuleSelectorConfirm" append-to-body />
     <FormPrintTemplateCustomScriptSelector :varData="varData" ref="formPrintTemplateCustomScriptSelector" @customScriptSelectorConfirm="customScriptSelectorConfirm" append-to-body />
  </div>
</template>

<script>
import flow from "@/api/flow.js";
import req from "@/request.js";
import { mapState, mapActions } from "vuex";
import utils from "@/hotent-ui-util.js";
const FormPrintTemplateRuleSelector = () => import("@/components/form/FormPrintTemplateRuleSelector.vue");
const FormPrintTemplateCustomScriptSelector = () => import("@/components/form/FormPrintTemplateCustomScriptSelector.vue");

export default {
  components: { FormPrintTemplateRuleSelector,FormPrintTemplateCustomScriptSelector},
  props: ['varData'], 
  data() {
    return {
        userConditionTab:'first',
        dialogVisible:false,
        title:'',
        userRule:{calcs:[],nodeType:""},
        nodeList:[],
        conditionList:[],
        curNode:{},
        nodeUserPluginList:[],
        conditionObj:{},
        conditionName:'',
        pathList:[],
        data:{},
        branchList:[],
        tabList:[],
        Tree:[],
        svgHeight:'400px',
        defaultCondition:{'ruleType':'2','conDesc':''},
        Mleft:50,//初始左边距50
        Mtop:20,//初始上边距40
        XIncase:100,//x轴递增数值70
        YIncase:50,//y轴递增数据50
        svgHtml:'',
        curEditTab:{}
    };
  },
  computed: mapState({
    defConfigData:state => state.flow.defConfigData
  }),
  methods: {
    isNotEmpty(val){
      if (!val || val.length ==0) {
        return false;
      }
      return true;
    },
    //根据条件数组构建条件分支界面
   buildConditionTree(data){
      let pathArr=[];
      let tableArr=[];
      let branchArr=[];
      this.buildData(data,pathArr,tableArr,branchArr);
      this.pathList=pathArr;
      this.branchList=branchArr;
      this.tabList=tableArr;
      //取路径最后一条数据,因为该条数据的高度距离顶部最大
      let lastPath=pathArr[pathArr.length-1];
      let lastIndexArr=[];
      if(lastPath)lastIndexArr=lastPath.split(',');
      //取最后一个坐标点。终点纵坐标为整个svg中最大的纵坐标
      let lastYIndex=lastIndexArr[lastIndexArr.length-1];
      //设置svg的高度为最大纵坐标+100,从而实现svg页面高度自适应
      if(lastYIndex){
          this.svgHeight=(parseInt(lastYIndex)+50)+"px";
      }
      this.createSvgHtml(pathArr);
    },
    ArrayTool(ary,idx,direct){
      direct = direct || "down";
      let part = ary[idx];
      if (!part || (part.constructor !== Object && part.constructor !== Array)) {
          return ary;
      }
      if (part.constructor === Object) {
          part = [part];
      }
      if (direct == "up") {
          part.forEach(m => {
              let index = ary.indexOf(m, 1);
              if (index > 0) {
                  let t=ary[index-1];
                  ary.splice(index - 1,1,ary[index]);
                  ary.splice(index,1,t);
              }
          });
      } else if (direct == "down") {
          for (var i = part.length - 1, m; (m = part[i--]);) {
              let index = ary.indexOf(m, 0);
              if (index > -1 && index < ary.length - 1) {
                  let t=ary[index+1];
                  ary.splice(index + 1,1,ary[index]);
                  ary.splice(index,1,t);
              }
          }
      }
    },
      //构建svg图形页面
     createSvgHtml(pathArr){
        this.svgHtml = '';
        var html='<svg height="'+this.svgHeight+'" version="1.1" width="692" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative;">';
        for(var i=0;i<pathArr.length;i++){
            html+='<path fill="none" stroke="#787878"'+'d="'+this.pathList[i]+'" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"></path>' ;
        }
        html+='</svg>';
        this.svgHtml = html;
    },
    changecondition (index) {
      var oldVal=this.branchList[index].oldjunction;
      var newVal=this.branchList[index].newjunction;
      if(newVal=='3' || newVal=='4'  || newVal=='5'){
          this.branchList[index].newjunction=this.branchList[index].oldjunction;
          var indexStr=this.branchList[index].indexStr;
          if(newVal=='3'){
              this.addCondition(indexStr);
          }else if(newVal=='4'){
              this.addUnionCondition(indexStr);
          }else{
            this.$confirm("确定要删除此联合条件及其下属的所有子条件吗?", "提示", {
              cancelButtonText: "取消",
              confirmButtonText: "确定",
              type: "warning",
              closeOnClickModal: false
            }).then(() => {
              this.removeCondition(indexStr);
            });
          }
      }else{
          this.branchList[index].oldjunction=this.branchList[index].newjunction;
          var indexStr=this.branchList[index].indexStr;
          var indexArr=indexStr.split(',');
          if(indexStr=='root'){
              this.conditionObj.junction=newVal;
          }else if(indexArr.length==1){
              this.conditionObj.condition[indexStr].junction=newVal;
          }else if(indexArr.length==2){
              this.conditionObj.condition[indexArr[0]].condition[indexArr[1]].junction=newVal;
          }
      }
   },
  //添加一个联合
  addCondition(indexStr){
      var data=this.conditionObj.condition;
      if(indexStr=='root'){
          data.push(JSON.parse(JSON.stringify(this.defaultCondition)));
      }else{
          var indexArr=[];
          if(indexStr) indexArr=indexStr.split(',');
          for(var i=0;i<data.length;i++){
              if(indexArr.length>0 && i==indexArr[0]){
                  if(indexArr.length>1){
                      for(var j=0;j<data[i].condition.length;j++){
                          if(j==indexArr[1]){
                              data[i].condition[j].condition.push(JSON.parse(JSON.stringify(this.defaultCondition)))
                              break;
                          }
                      }
                  }else{
                      data[i].condition.push(JSON.parse(JSON.stringify(this.defaultCondition)));
                  }
                  break;
              }
          }
      }
      this.conditionObj.condition=data;
      this.buildConditionTree(this.conditionObj);
  },
  removeCondition (indexStr) {
    var indexArr=[];
    if(indexStr) indexArr=indexStr.split(',');
    if(indexArr.length>0){
        var data=this.conditionObj.condition;
        for(var i=0;i<data.length;i++){
            if(i==indexArr[0]){
                if(indexArr.length>1){
                    for(var j=0;j<data[i].condition.length;j++){
                        if(j==indexArr[1]){
                            if(indexArr.length>2){
                                for(var z=0;z<data[i].condition[j].condition.length;z++){
                                    if(z==indexArr[2]){
                                        data[i].condition[j].condition.splice(z, 1);
                                        break;
                                    }
                                }
                            }else{
                                data[i].condition.splice(j, 1);
                            }
                            break;
                        }
                    }
                }else{
                    data.splice(i, 1);
                }
                break;
            }

        }
        this.conditionObj.condition=data;
        this.buildConditionTree(this.conditionObj);
    }
  },
  //添加一个联合条件条件
 addUnionCondition(indexStr){
      var data=this.conditionObj.condition;
      if(indexStr=='root'){
          data.push({'junction':'or','condition':[]});
      }else{
          var indexArr=[];
          if(indexStr) indexArr=indexStr.split(',');
          for(var i=0;i<data.length;i++){
              if(indexArr.length>0 && i==indexArr[0]){
                  if(indexArr.length>1){
                      for(var j=0;j<data[i].condition.length;j++){
                          if(j==indexArr[1]){
                              data[i].condition[j].condition.push(
                                  {'junction':'or','condition':[]}
                              )
                              break;
                          }
                      }
                  }else{
                      data[i].condition.push(
                          {'junction':'or','condition':[]}
                      )
                  }
                  break;
              }
          }
      }
      this.conditionObj.condition=data;
      this.buildConditionTree(this.conditionObj);
  },
  buildData(conditionData,pathArr,tableArr,branchArr){
      let curYIndex=0;
      let data=conditionData.condition;
      //算三级节点总共分支个数
      let yIncaseNum=this.getyIncaseNum(conditionData.condition) >1 ? this.getyIncaseNum(conditionData.condition):1;
      //第一个节点 this.Mtop 最后一个节点Mtop+this.YIncase*(yIncaseNum-1)
      let startY1=(this.Mtop*2+this.YIncase*(yIncaseNum-1))/2;

      branchArr.push({
          newjunction:conditionData.junction,
          oldjunction:conditionData.junction,
          style:"left:"+(this.Mleft-35)+"px; top:"+(startY1-15)+"px",
          indexStr:'root',
          condition:'noDel'
      })
      for(var i=0;i<data.length;i++){
          if(data[i].condition){
              var curchildNum=this.getyIncaseNum(data[i].condition);
              //如果该节点,没有分支条件,则保留节点
              var isEmpty0=false;
              if(curchildNum <1){
                  curchildNum=1;
                  isEmpty0=true;
              }
              //计算一级节点和该节点的连线
              var startY2=(this.Mtop*2+this.YIncase*(2*curYIndex+curchildNum-1))/2;
              var path='M'+(this.Mleft)+','+startY1+'C'+(this.Mleft)+','+startY2
                  +','+(this.Mleft)+','+startY2+','+(this.Mleft+this.XIncase)+','+startY2;
              pathArr.push(path);
              branchArr.push({
                  newjunction:data[i].junction,
                  oldjunction:data[i].junction,
                  style:"left:"+(this.Mleft+this.XIncase-35)+"px; top:"+(startY2-15)+"px",
                  indexStr:''+i,
              })
              if(isEmpty0)  curYIndex++;

              for(var j=0;j<data[i].condition.length;j++){
                  //如果第三级节点有分支,则计算分支
                  if(data[i].condition[j].condition){
                      //计算改节点分支个数
                      let curchildNum2=this.getyIncaseNum(data[i].condition[j].condition);
                      //如果该节点,没有分支条件,则保留节点,默认其占一行
                      let isEmpty=false;
                      if(curchildNum2 <1){
                          curchildNum2=1;
                          isEmpty=true;
                      }
                      // 改分支第一个节点纵坐标= this.Mtop+this.YIncase*curYIndex  上一个节点纵坐标加上递增值
                      // 改分支最后节点纵坐标=改分支第一个节点纵坐标 +计算改节点分支个数*y递增值 this.Mtop+this.YIncase*curYIndex+this.YIncase*(curchildNum2-1)
                      // 计算改节点的纵坐标。(改分支第一个节点纵坐标+该分支的最后一个纵坐标)/2
                      // 该节点起始点纵坐标=  this.Mtop+this.YIncase*curYIndex+ this.Mtop+this.YIncase*curYIndex+this.YIncase*(curchildNum2-1)
                      let startY3=(this.Mtop*2+this.YIncase*(2*curYIndex+curchildNum2-1))/2;
                      //改分支指引线的终点的纵坐标等于startY2
                      let path='M'+(this.Mleft+this.XIncase)+','+startY2+'C'+(this.Mleft+this.XIncase)+','+startY3
                          +','+(this.Mleft+this.XIncase)+','+startY3+','+(this.Mleft+this.XIncase*2)+','+startY3;
                      pathArr.push(path);
                      branchArr.push({
                          newjunction:data[i].condition[j].junction,
                          oldjunction:data[i].condition[j].junction,
                          style:"left:"+(this.Mleft+this.XIncase*2-35)+"px; top:"+(startY3-15)+"px",
                          indexStr:i+','+j,
                          condition:'noAdd'
                      })
                      if(isEmpty){
                          curYIndex++;
                      }
                      for(let z=0;z<data[i].condition[j].condition.length;z++){
                          let obj=data[i].condition[j].condition[z];
                          obj.style="left:"+(this.Mleft+this.XIncase*3)+"px; top:"+(this.Mtop+this.YIncase*curYIndex-19)+"px";
                          obj.indexStr=i+","+j+","+z;
                          tableArr.push(obj);
                          //改分支下所有节点的起始纵坐标为startY3,终点纵坐标根据该节点位置决定
                          let path='M'+(this.Mleft+this.XIncase*2)+','+startY3+'C'+(this.Mleft+this.XIncase*2)+','+(this.Mtop+this.YIncase*curYIndex)
                              +','+(this.Mleft+this.XIncase*2)+','+(this.Mtop+this.YIncase*curYIndex)+','+(this.Mleft+this.XIncase*3)+','+(this.Mtop+this.YIncase*curYIndex);
                          pathArr.push(path);
                          curYIndex++;
                      }
                  }else {
                      //第二级节点没有分支
                      let obj=data[i].condition[j];
                      obj.style="left:"+(this.Mleft+this.XIncase*2)+"px; top:"+(this.Mtop+this.YIncase*curYIndex-19)+"px";
                      obj.indexStr=i+","+j;
                      tableArr.push(obj);
                      //计算改分支的路径。因为是第二节点。startY2
                      let path='M'+(this.Mleft+this.XIncase)+','+startY2+'C'+(this.Mleft+this.XIncase)+','+(this.Mtop+this.YIncase*curYIndex)
                          +','+(this.Mleft+this.XIncase)+','+(this.Mtop+this.YIncase*curYIndex)+','+(this.Mleft+this.XIncase*2)+','+(this.Mtop+this.YIncase*curYIndex);
                      pathArr.push(path);
                      curYIndex++;
                  }
              }
          }else {
              let obj=data[i];
              obj.style="left:"+(this.Mleft+this.XIncase)+"px; top:"+(this.Mtop+this.YIncase*curYIndex-19)+"px";
              obj.indexStr=''+i;
              tableArr.push(obj);
              let path='M'+this.Mleft+','+startY1+'C'+this.Mleft+','+(this.Mtop+this.YIncase*curYIndex)
                  +','+this.Mleft+','+(this.Mtop+this.YIncase*curYIndex)+','+(this.Mleft+this.XIncase)+','+(this.Mtop+this.YIncase*curYIndex);
              pathArr.push(path);
              curYIndex++;
          }
      }
    },
    //获取条件总数
   getyIncaseNum(data){
      var sum=0;
      for(var i=0;i<data.length;i++){
          if(data[i].condition && data[i].condition.length>0){
              for(var j=0;j<data[i].condition.length;j++){
                  if(data[i].condition[j].condition && data[i].condition[j].condition.length>0){
                      for(var z=0;z<data[i].condition[j].condition.length;z++){
                          sum++;
                      }
                  }else{
                      sum++;
                  }
              }
          }else{
              sum++;
          }
      }
      return sum;
    },
    calcTypeChange:function(calc){
      calc.description="";
      if(calc.pluginType== "approver"){//流程实例审批人,在此处设置description
          calc.description="流程实例审批人";
      }else if(calc.pluginType== "depHead"){//部门负责人审批人,在此处设置description
          calc.description="部门负责人";
      }else if(calc.pluginType=="position"){
        calc.source = "spec";
      }
    },
     addCalc : function() {
        this.userRule.calcs.push({
            pluginType : "cusers",
            extract : "no",
            logicCal : "or",
            source : "start",
            vars:"",
            description : "发起人",
            nodeType: this.userRule.nodeType,
            parentParam:{},
            curEditIndex:''
        });
    },
    selector :function(index){
      this.curEditIndex = index;
      let calc=this.userRule.calcs[index];
      let type=calc.pluginType;
      if (type !='cusers' && type !='hrScript' && type != 'customQuery' && type!='matrix'&& type!='position') {
         this.$message.error("没有其他类型的选择器,暂时只能选用户");
         return;
      }
      eval("this."+calc.pluginType+"Selector(calc);");
    },
    positionSelector: function(calc) {
      let param= {...this.parentParam,calc:calc};
      this.$refs.flowNodePositionSelector.showDialog(param);
    },
    hrScriptSelector: function(calc) {
      let param= {...this.parentParam,calc:calc};
      this.$refs.flowHrScriptSelector.showDilaog(param);
    },
    matrixSelector: function(calc) {
      let param= {...this.parentParam,calc:calc};
      this.$refs.flowMatrixSelector.showDilaog(param);
    },
    customQuerySelector: function(calc) {
      let param= {...this.parentParam,calc:calc};
      this.$refs.flowCustomQuerySelector.showDilaog(param);
    },
    showDialog: function(conditionJson) {
      this.dialogVisible = true;
      if(conditionJson){
         if(typeof(conditionJson)=="string"){
              this.conditionObj = JSON.parse(conditionJson);
          }else{
              this.conditionObj = conditionJson;
          }
      }else{
        this.conditionObj = {'junction':'and','condition':[]};
      }
      this.buildConditionTree(this.conditionObj);
    },
    handleClose: function() {
      let conditionJson = JSON.stringify(this.conditionObj);
      this.$emit('formPrintTemplateConditionConfirm',conditionJson);
      this.dialogVisible = false;
    },
    cuserSelectorConfirm(selection) {
      this.userRule.calcs.splice(this.curEditIndex,1,selection);
    },
    positionSelectorConfirm(selection) {
      this.userRule.calcs.splice(this.curEditIndex,1,selection);
    },
    scriptSelectorConfirm(selection) {
      let calcs = {...this.userRule.calcs[this.curEditIndex],...selection};
          calcs.description = "[人员脚本]"+ selection.desc;
          calcs.scriptId = selection.scriptId;
      this.userRule.calcs.splice(this.curEditIndex,1,calcs);
    },
    customQuerySelectorConfirm(selection) {
      let calcs = {...this.userRule.calcs[this.curEditIndex],...selection};
          calcs.description = "[关联查询]"+ selection.desc;
          calcs.alias = selection.alias;
          calcs.name = selection.name;
      this.userRule.calcs.splice(this.curEditIndex,1,calcs);
    },
    matrixSelectorConfirm(selection) {
      let calcs = {...this.userRule.calcs[this.curEditIndex],...selection};
          calcs.description = "[角色矩阵]"+ selection.desc;
          calcs.code = selection.code;
          calcs.name = selection.name;
      this.userRule.calcs.splice(this.curEditIndex,1,calcs);
    },
   validateData(calcs){
      let isTrue = true;
      for(var i=0;i<calcs.length;i++){
          switch(calcs[i].pluginType){
              case "script":
              case "hrScript": if(!calcs[i].script)isTrue=false; break;
              case "sameNode": if(!calcs[i].nodeId)isTrue=false; break;
              case "cusers": if(!calcs[i].description)isTrue=false; break;
          }
      }
      return isTrue;
    },
    customScriptSelectorConfirm(result){
      this.curEditTab.script = result;
      this.curEditTab.conDesc = result;
    },
    customRuleSelectorConfirm(result){
      this.curEditTab.conDesc = result.conDesc;
      this.curEditTab.executorVar = result.executorVar;
      this.curEditTab.expression = result.expression;
      this.curEditTab.dataType = result.dataType;
    },
    editCondition (tab){
      this.curEditTab = tab;
      if(tab.ruleType ==2){
          this.$refs.formPrintTemplateCustomScriptSelector.showDialog(tab.script || '');
      }else{
          this.$refs.formPrintTemplateRuleSelector.showDialog(tab);
      }

      return;
      var pageParam = $scope.$parent.pageParam.passConf;
      if(tab.ruleType ==2){
          pageParam.script = tab.script;
          dialogService.page("flow-customScript", {area:['800px', '480px'], pageParam:pageParam,})
              .then(function(result){
                  tab.script = result;
                  tab.conDesc = result;
              });
      }else{
          pageParam.data = angular.copy(tab);
          dialogService.page("flow-varDailog", {area:['800px', '480px'], pageParam:pageParam,})
              .then(function(result){
                  tab.conDesc = result.conDesc;
                  tab.executorVar = result.executorVar;
                  tab.expression = result.expression;
                  tab.dataType = result.dataType;
              });
      }
    }
  }
};
</script>

<style  scoped>
div >>>.el-dialog__body{
  padding:10px ;
}

.table > thead > tr > th,.table > thead > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border-top: 1px solid #e7eaec;
    border-left: 1px solid #e7eaec;
    line-height: 1.42857;
    vertical-align: middle;
    padding: 4px;
}
.table{
  border-bottom: 1px solid #e7eaec;
  border-right: 1px solid #e7eaec;
  border-spacing: 0;
}
.table >>>.el-button{
  padding: 6px 8px;
  margin-left:0px;
  margin-right:5px;
}
div >>>.el-tabs__content{
    height: 450px;
    overflow: auto;
}
.labelrag {
    padding: .2em .2em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    background-color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 12px;
    width:70px;
    line-height: 20px;
    border: solid 1px;
    position: absolute;
    z-index: 3;
}
div>>>.labelrag >.selected_search {
    width: 60px;
    border: none;
    outline: none;
    height: 22px;
}
div>>>.labelrag >.el-select >.el-input > .el-input__inner{
  padding: 0px;
    border: none;
    height: 26px;
}
.custom_condition_tab {
    width: 700px;
    position: absolute;
}
</style>