FlowOtherSetting.vue 35.3 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 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
<template>
  <div class="flowOther-height">
    <el-card class="other-set__card" shadow="never">
      <div slot="header">
        <el-button size="mini" type="primary" icon="el-icon-check" @click="save"
          >保存</el-button
        >
      </div>
      <el-scrollbar class="scrollbar-fullheight">
        <table
          class="form-table other-set__table"
          cellspacing="0"
          cellpadding="0"
          border="0"
        >
          <tbody>
            <tr>
              <th>标题规则:</th>
              <td>
                <FlowVarSelector
                  type="1"
                  :defId="defId"
                  @node-click="subjectRuleConfirm"
                />
                <el-tooltip
                  class="item"
                  effect="dark"
                  content='脚本配置是为了满足用户自定义动态标题的需求,用法示例:{描述:Groovy脚本},表单变量取值:bxsqb.getString("sqr");流程变量取值:{标题变量:varTitile==null||varTitile==""?"没值":varTitile}'
                  placement="right"
                >
                  <span class="control-label left-label"
                    >脚本配置说明
                    <i class="el-icon-warning"></i>
                  </span>
                </el-tooltip>
                <br />
                <br />
                <ht-input
                  type="textarea"
                  style="width: 100%"
                  v-model="prop.subjectRule"
                  autocomplete="off"
                  :rows="4"
                  :showWordLimit="true"
                  :maxlength="200"
                ></ht-input>
              </td>
            </tr>
            <tr>
              <th>流程描述:</th>
              <td>
                <ht-input
                  type="textarea"
                  style="width: 100%"
                  v-model="prop.description"
                  autocomplete="off"
                  :showWordLimit="true"
                  :maxlength="200"
                ></ht-input>
              </td>
            </tr>
            <tr>
              <th>通知类型:</th>
              <td>
                <ht-checkbox
                  v-model="prop.notifyType"
                  :options="handlerTypes"
                />
              </td>
            </tr>
            <tr>
              <th>测试通知类型:</th>
              <td>
                <ht-checkbox
                  v-model="prop.testNotifyType"
                  :options="handlerTypes"
                />
              </td>
            </tr>
            <tr>
              <th>参数设置:</th>
              <td>
                <el-checkbox
                  v-model="prop.skipFirstNode"
                  :disabled="prop.firstNodeUserAssign"
                  >跳过第一个节点</el-checkbox
                >
                <el-checkbox v-model="prop.allowTransTo"
                  >任务允许转办</el-checkbox
                >
                <el-checkbox v-model="prop.allowExecutorEmpty"
                  >允许执行人为空</el-checkbox
                >
                <el-checkbox v-model="prop.showUrgentState"
                  >显示紧急状态</el-checkbox
                >
                <el-checkbox v-model="prop.readRevoke"
                  >允许已阅撤回</el-checkbox
                >
                <el-checkbox v-model="prop.endRevoke">允许办结撤回</el-checkbox>
                <el-checkbox v-model="prop.showModifyRecord"
                  >显示表单留痕</el-checkbox
                >
              </td>
            </tr>
            <!--      <tr>
              <th>跳过类型:</th>
              <td>
                <!~~ <ht-checkbox v-model="prop.skipRules" :options="skipConditionList" @mouseenter="mouseOver"/> ~~>
                <el-checkbox-group v-model="skipRulesList">
                  <el-checkbox
                    :label="item.key"
                    v-for="item in skipConditionList"
                    :key="item.key"
                  >
                    {{ item.value }}
                    <el-tooltip
                      class="item"
                      effect="dark"
                      :content="item.tip"
                      placement="bottom-start"
                    >
                      <i class="el-icon-warning"></i>
                    </el-tooltip>
                  </el-checkbox>
                </el-checkbox-group>
              </td>
            </tr> -->
            <tr>
              <th>任务自动执行:</th>
              <td>
                <el-button type="primary" @click="automatiPerform"
                  >规则设置</el-button
                >
              </td>
            </tr>
            <tr>
              <th>办结传阅:</th>
              <td>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="如果允许流程结束时抄送给某批人,则需要进行设置。"
                  placement="right"
                >
                  <span class="control-label left-label">
                    <el-button type="primary" @click="setEndNotify"
                      >设置</el-button
                    >
                    <i class="el-icon-warning"></i>
                  </span>
                </el-tooltip>
              </td>
            </tr>
            <tr>
              <th>人工催办内容模板:</th>
              <td>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="如果人工催办的催办内容需用到邮件模板,则需要进行设置。"
                  placement="right"
                >
                  <span class="control-label left-label">
                    <el-button type="success" @click="urgentMailTelClick"
                      >邮件模板设置</el-button
                    >
                    <i class="el-icon-warning" style="margin-right: 10px"></i>
                  </span>
                </el-tooltip>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="如果人工催办的催办内容需用到短信模板,则需要进行设置。"
                  placement="right"
                >
                  <span class="control-label left-label">
                    <el-button type="warning" @click="urgentSmsTelClick"
                      >短信模板设置</el-button
                    >
                    <i class="el-icon-warning"></i>
                  </span>
                </el-tooltip>
              </td>
            </tr>
            <tr>
              <th>邮件消息通知:</th>
              <td>
                <!-- <el-tooltip
                  class="item"
                  effect="dark"
                  content="如果人工催办的催办内容需用到邮件模板,则需要进行设置。"
                  placement="right"
                > -->
                <span class="control-label left-label">
                  <el-button
                    type="primary"
                    @click="$refs.flowMsgSendConfig.showDailog()"
                    >{{ prop.msgConfig ? '编辑' : '新增' }}
                  </el-button>
                  <!-- <i class="el-icon-warning" style="margin-right: 10px"></i> -->
                </span>
                <!-- </el-tooltip> -->
                <el-button
                  type="danger"
                  v-if="prop.msgConfig"
                  @click="prop.msgConfig = ''"
                  >清除
                </el-button>
              </td>
            </tr>

            <tr>
              <th>状态:</th>
              <td>
                <el-radio
                  v-model="prop.status"
                  v-for="item in statusArr"
                  :key="item.key"
                  :label="item.key"
                  style="margin-right: 10px"
                >
                  <el-tooltip
                    class="item"
                    effect="dark"
                    :content="item.title"
                    placement="right"
                  >
                    <span
                      class="control-label left-label"
                      style="font-size: 14px"
                    >
                      {{ item.value }}
                      <i class="el-icon-warning"></i>
                    </span>
                  </el-tooltip>
                </el-radio>
              </td>
            </tr>
            <tr>
              <th>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="外部子流程取主流程的设置参数。"
                  placement="right"
                >
                  <div class="control-label left-label">
                    任务审批时表单版本
                    <i class="el-icon-warning"></i>:
                  </div>
                </el-tooltip>
              </th>
              <td>
                <!-- <ht-radio v-model="prop.useMainForm"  :options="useMainFormArr" /> -->
                <el-radio
                  v-model="prop.useMainForm"
                  v-for="item in useMainFormArr"
                  :key="item.key"
                  :label="item.key"
                  style="margin-right: 10px"
                >
                  <el-tooltip
                    class="item"
                    effect="dark"
                    :content="item.title"
                    placement="right"
                  >
                    <span
                      class="control-label left-label"
                      style="font-size: 14px"
                    >
                      {{ item.value }}
                      <i class="el-icon-warning"></i>
                    </span>
                  </el-tooltip>
                </el-radio>
              </td>
            </tr>
            <tr>
              <th>查看已办数据版本:</th>
              <td>
                <el-radio-group v-model="prop.doneDataVersion">
                  <el-radio label="latest">最新版本</el-radio>
                  <el-radio label="history">历史版本</el-radio>
                </el-radio-group>
              </td>
            </tr>
            <tr>
              <th>自动发起流程:</th>
              <td>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="设置流程自动发起的发起人,表单数据和发起时机(需要先在系统配置的定时计划中配置定时启动类的触发器并启用)"
                  placement="right"
                >
                  <span class="control-label left-label">
                    <el-button
                      type="primary"
                      @click="$refs.flowAutoStartSetting.show()"
                      >设置</el-button
                    >
                    <i class="el-icon-warning"></i>
                  </span>
                </el-tooltip>
              </td>
            </tr>
            <tr style="display: none">
              <th>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="范围选择不能为空"
                  placement="right"
                >
                  <div class="control-label left-label">
                    审批历史查看范围
                    <i class="el-icon-warning"></i>:
                  </div>
                </el-tooltip>
              </th>
              <td>
                <span>审批人:</span>
                <el-select
                  v-model="checkLimit"
                  multiple
                  placeholder="请选择"
                  style="width: 270px"
                >
                  <el-option
                    v-for="item in checkOpnionLimits"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </el-select>
                <span>发起人:</span>
                <el-select
                  v-model="startLimit"
                  multiple
                  placeholder="请选择"
                  style="width: 270px"
                >
                  <el-option
                    v-for="item in checkOpnionLimits"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </el-select>
              </td>
            </tr>
            <tr>
              <th>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="启用后,在套打模板中绑定印章属性使用"
                  placement="right"
                >
                  <div class="control-label left-label">
                    办结印章
                    <i class="el-icon-warning"></i>:
                  </div>
                </el-tooltip>
              </th>
              <td>
                <el-radio-group v-model="prop.allowSignet">
                  <el-radio label="true">是</el-radio>
                  <el-radio label="false">否</el-radio>
                </el-radio-group>
              </td>
            </tr>
            <tr>
              <th>流程复制配置:</th>
              <td>
                <el-tooltip
                  class="item"
                  effect="dark"
                  content="设置流程复制时需要复制的字段(url表单配置除外)"
                  placement="right"
                >
                  <span class="control-label left-label">
                    <el-button
                      type="primary"
                      @click="$refs.CopySetting.showDialog(prop.copySetting)"
                      >设置</el-button
                    >
                    <i class="el-icon-warning"></i>
                  </span>
                </el-tooltip>
              </td>
            </tr>
<!--            <tr>-->
<!--              <th>-->
<!--                <div class="control-label left-label">流程类型</div>-->
<!--              </th>-->
<!--              <td>-->
<!--                <el-radio-group v-model="prop.flowType">-->
<!--                  <el-radio :label="1">普通流程</el-radio>-->
<!--                  <el-radio :label="2">自由流程</el-radio>-->
<!--                </el-radio-group>-->
<!--              </td>-->
<!--            </tr>-->
          </tbody>
        </table>
      </el-scrollbar>
    </el-card>
    <!-- //任务自动执行 -->
    <el-dialog
      title="规则设置"
      :visible.sync="dialogautomatiPerVisible"
      append-to-body
      class="urgent-text"
      :close-on-click-modal="false"
    >
      <div style="margin-bottom: 10px">
        <el-button
          type="primary"
          size="mini"
          @click="dialogautomatiPerSign('')"
          icon="el-icon-plus"
          >添加策略</el-button
        >
      </div>
      <el-form data-vv-scope="settingSave" style="    max-height: 50vh;
    overflow-y: auto;">
        <el-table :data="dialogautomatiPer" border ref="htTableSetting">
          <el-table-column label="生效环节" prop="validNodeName">
          </el-table-column>
          <el-table-column label="策略" prop="celue" width="200">
            <template v-slot="{row, $index}">
              <div v-html="row.celue"></div>
            </template>
          </el-table-column>
          <el-table-column label="显示审批记录" prop="opinion">
          </el-table-column>
          <el-table-column label="操作">
            <template v-slot="{row, $index}">
              <el-button type="text" @click="dialogautomatiPerSign(row, $index)"
                >编辑</el-button
              >
              <el-button type="text" @click="dialogautomatiPerDel(row, $index)"
                >删除</el-button
              >
            </template>
          </el-table-column>
        </el-table>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogautomatiPerVisible = false">取 消</el-button>
        <el-button type="primary" @click="savedialogautomatiPer"
          >确 定</el-button
        >
      </div>
    </el-dialog>
    <el-dialog
      title="办结抄送设置"
      :visible.sync="dialogEndNotifyVisible"
      append-to-body
      class="urgent-text"
      :close-on-click-modal="false"
    >
      <div style="margin-bottom: 10px">
        <el-button
          type="primary"
          size="mini"
          @click="addLine"
          icon="el-icon-plus"
          >新 增</el-button
        >
      </div>
      <el-form data-vv-scope="settingSave">
        <el-table :data="procNotifyList" border ref="htTableSetting">
          <el-table-column label="人员配置">
            <template v-slot="{row, $index}">
              <table class="table el-table table-bordered">
                <thead>
                  <tr>
                    <th width="50px">序号</th>
                    <th>条件</th>
                    <th width="130px">批次</th>
                    <th width="120px">操作</th>
                  </tr>
                </thead>
                <tr
                  v-for="(userRule, userIndex) in row.userAssignRules"
                  :key="userIndex"
                >
                  <td>{{ userIndex + 1 }}</td>
                  <td>{{ userRule.description }}</td>
                  <td>
                    <ht-input
                      v-model="userRule.groupNo"
                      class="ht"
                      placeholder="请输入批次"
                      autocomplete="off"
                    ></ht-input>
                  </td>
                  <td>
                    <el-button
                      size="mini"
                      icon="el-icon-edit"
                      @click="addUserCondition($index, userIndex)"
                    ></el-button>
                    <el-button
                      size="mini"
                      icon="el-icon-delete"
                      @click="deleteSetting(row.userAssignRules, userIndex)"
                    ></el-button>
                  </td>
                </tr>
                <tr>
                  <td style="text-align: left" colspan="4">
                    <el-button size="mini" @click="addUserCondition($index)"
                      >新增人员规则</el-button
                    >
                  </td>
                </tr>
              </table>
            </template>
          </el-table-column>
          <el-table-column label="操作" width="250">
            <template v-slot="{row, $index}">
              <MessageTypeSelector
                class="ht_ce"
                ref="messageTypeSelector"
                v-model="row.msgTypes"
              ></MessageTypeSelector>
              <el-button
                size="mini"
                type="danger"
                icon="el-icon-delete"
                @click="deleteSetting(procNotifyList, $index)"
                >删除</el-button
              >
            </template>
          </el-table-column>
        </el-table>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogEndNotifyVisible = false">取 消</el-button>
        <el-button type="primary" @click="saveEndNotify">确 定</el-button>
      </div>
    </el-dialog>
    <el-dialog
      title="邮件模板设置"
      :visible.sync="dialogUrgentMailTelVisible"
      append-to-body
      class="urgent-text"
      :close-on-click-modal="false"
    >
      <FlowVarSelector
        type="1"
        :defId="defId"
        @node-click="urgentMailTelConfirm"
      />
      <br />
      <br />
      <ht-input
        type="textarea"
        :rows="8"
        v-model="urgentMailTel"
        autocomplete="off"
      ></ht-input>
      <div slot="footer" class="dialog-footer">
        <el-button
          @click="
            dialogUrgentMailTelVisible = false
            urgentMailTel = ''
          "
          >取 消</el-button
        >
        <el-button
          type="primary"
          @click="
            dialogUrgentMailTelVisible = false
            prop.urgentMailTel = urgentMailTel
          "
          >确 定</el-button
        >
      </div>
    </el-dialog>

    <el-dialog
      title="短信模板设置"
      :visible.sync="dialogUrgentSmsTelVisible"
      append-to-body
      class="urgent-text"
      :close-on-click-modal="false"
    >
      <FlowVarSelector
        type="1"
        :defId="defId"
        @node-click="urgentSmsTelConfirm"
      />
      <br />
      <br />
      <ht-input
        type="textarea"
        :rows="8"
        v-model="urgentSmsTel"
        autocomplete="off"
      ></ht-input>
      <div slot="footer" class="dialog-footer">
        <el-button
          @click="
            dialogUrgentSmsTelVisible = false
            urgentSmsTel = ''
          "
          >取 消</el-button
        >
        <el-button
          type="primary"
          @click="
            dialogUrgentSmsTelVisible = false
            prop.urgentSmsTel = urgentSmsTel
          "
          >确 定</el-button
        >
      </div>
    </el-dialog>

    <!-- 加载其他设置数据 -->
    <ht-load-data
      :url="loadDataUrl"
      context="bpmModel"
      @after-load-data="afterLoadData"
    ></ht-load-data>
    <!-- 人员配置选择器 -->
    <FlowNodeUserCondition
      @nodeUserConditionConfirm="nodeUserConditionConfirm"
      ref="flowNodeUserCondition"
    />
    <FlowAutoStartSetting :defId="defId" ref="flowAutoStartSetting" />
    <CopySetting
      ref="CopySetting"
      :defId="defId"
      @confirm="copySettingConfirm"
    />

    <CopySetting
      ref="CopySetting"
      :defId="defId"
      @confirm="copySettingConfirm"
    />

    <FlowMsgSendConfig
      :defId="defId"
      v-model="prop.msgConfig"
      ref="flowMsgSendConfig"
    />
    <AddaPolicy
      ref="AddaPolicy"
      :defId="defId"
      :daList="daList"
      :dautomatiPerSignItem="dautomatiPerSignItem"
      @automatiPer="automatiPer"
    >
    </AddaPolicy>
  </div>
</template>

<script>
import flow from '@/api/flow.js'
import req from '@/request.js'

const statusOptions = [
  {key: 'deploy', value: '已发布', title: '可以发起和审批。'},
  {key: 'forbidden', value: '禁止', title: '禁止发起,已发起的可以继续审批。'},
  {key: 'forbidden_instance', value: '禁止实例', title: '禁止发起和审批。'}
]

const useMainForms = [
  {
    key: 'mainVersion',
    value: '表单主版本',
    title: '表单主版本:任务审批时使用绑定表单的主版本。'
  },
  {
    key: 'startVersion',
    value: '启动时版本',
    title: '启动时版本:任务审批时使用流程启动时绑定的表单版本。'
  },
  {
    key: 'instUseMainForm',
    value: '跟随全局系统属性',
    title:
      '根据系统属性 inst.useMainForm true 使用主版本的表单, false 使用启动流程时设置的表单'
  }
]

import model from '@/api/flow.js'
const FlowVarSelector = () => import('@/components/flow/FlowVarSelector.vue')
const MessageTypeSelector = () =>
  import('@/components/flow/MessageTypeSelector.vue')
const FlowNodeUserCondition = () =>
  import('@/components/flow/FlowNodeUserCondition.vue')
const CopySetting = () => import('@/components/flow/CopySetting.vue')
const FlowAutoStartSetting = () =>
  import('@/components/flow/FlowAutoStartSetting.vue')

const FlowMsgSendConfig = () =>
  import('@/components/flow/FlowMsgSendConfig.vue')
const AddaPolicy = () => import('@/components/flow/AddaPolicy.vue')

import {mapState, mapActions} from 'vuex'
import {Message} from 'element-ui'
export default {
  props: ['defId'],
  components: {
    FlowVarSelector,
    MessageTypeSelector,
    FlowNodeUserCondition,
    FlowAutoStartSetting,
    CopySetting,
    FlowMsgSendConfig,
    AddaPolicy
  },
  data() {
    return {
      opinionList: [],
      optionsSx: [],
      dautomatiPerSignItem: {},
      daList: [],
      dialogautomatiPer: [],
      automatiPerSignItem: {},
      dialogautomatiPerVisible: false,
      dialogautomatiPerList: [],
      curEditSetting: '', //下标,用于记录是哪一条办结抄送的人员配置
      procNotifyList: [{userAssignRules: [], msgTypes: ''}], //办结抄送的配置信息
      curEditRuleIndex: '', //下标,用于记录修改某一条办结抄送人员配置的时候是哪条数据
      dialogEndNotifyVisible: false, //办结抄送设置对话框是否显示
      loadDataUrl: '',
      prop: {urgentMailTel: '', urgentSmsTel: '', msgConfig: ''},
      handlerTypes: [],
      skipConditionList: [],
      statusArr: statusOptions,
      useMainFormArr: useMainForms,
      dialogUrgentMailTelVisible: false,
      dialogUrgentSmsTelVisible: false,
      urgentMailTel: '',
      urgentSmsTel: '',
      checkOpnionLimits: [
        {value: 'all', label: '查看全部'}
        // {value: 'self', label: '本人操作'},
        // {value: 'back', label: '退回自己'},
        // {value: 'end', label: '显示终止恢复'},
      ],
      checkLimit: ['all'],
      startLimit: ['all'],
      skipRulesList: ['autoRun'], //g给其默认值
      skipConditionListTip: [
        {key: 'all', tip: '发起后跳过所有节点,直接结束'},
        {key: 'sameUser', tip: '相邻两个节点审批人相同时跳过'},
        {key: 'approver', tip: '已处理节点与待处理人员相同时跳过'},
        {key: 'emptyUser', tip: '节点审批为空时跳过,会签节点不允许跳过'},
        {
          key: 'preSkipAfterApprove',
          tip:
            '产生的任务的处理人,如果后续的任务也有相同的处理时跳过,请注意需要节点属性中配置是否支持前跳后审预演'
        },
        {key: 'autoRun', tip: '任务自动执行'},
      ]
    }
  },
  watch: {
    // checkLimit: {
    //   handler(newVal, oldVal) {
    //     if (newVal !== oldVal && newVal.length === 0) {
    //       this.$set(this, 'checkLimit', oldVal)
    //     }
    //   },
    // },
    // startLimit: {
    //   handler(newVal, oldVal) {
    //     if (newVal !== oldVal && newVal.length === 0) {
    //       this.$set(this, 'startLimit', oldVal)
    //     }
    //   },
    // },
    // skipRulesList: {
    //   handler(newVal, oldVal) {
    //     this.prop.skipRules = newVal.join(',')
    //   },
    // },
    dialogautomatiPerList: {
      handler(val) {
        
        if (val.length > 0) {
          this.dialogautomatiPer = _.cloneDeep(val)
          this.dialogautomatiPer.forEach(item => {
            if (item.validNode) {
              item.celue = ''
              let insd = this.optionsSx.filter(insd => {
                if (insd.nodeId == item.validNode) {
                  return insd
                }
              })
              item.validNodeName = insd[0].name + '(' + item.validNode + ')'
            } else {
              item.validNodeName = ''
            }
            if (item.policyType =='1') {
              item.policyList.forEach(i => {
                if (i.policyNode) {
                  let policyNodeName = this.opinionList.filter(imte => {
                    if (imte.nodeId == i.policyNode) {
                      return imte
                    }
                  })

                  item.celue += `<div>和${policyNodeName[0].name}重复时${
                    i.policyType == 1 ? '自动执行通过' : '保持人工审批</div>'
                  }`
                }
              })
            } else {
              item.celue = item.policyScriptPre
            }
          })
        }else {
          this.dialogautomatiPer = []
        }
      },
      deep: true,
      immediate: true
    }
  },
  computed: mapState({
    defConfigData: state => state.flow.defConfigData
  }),
  mounted() {
    const this_ = this
    let url =
      '${bpmModel}/flow/def/v1/nodeBos?defId=' + this.defId + '&topDefKey='
    req.get(url).then(function(res) {
      this_.opinionList.push(
        {name: '任意已执行节点', nodeId: 'already'},
        {name: '上一执行节点', nodeId: 'pre'},
        ...res.data.nodeDefList
      )
      this_.optionsSx.push(
        {name: '所有节点', nodeId: 'base'},
        ...res.data.nodeDefList
      )
    })
  },
  methods: {
    automatiPer(value) {
      if (value.index || value.index == 0) {
        this.dialogautomatiPerList.splice(value.index, 1, value)
      } else {
        this.dialogautomatiPerList.push(value)
      }
    },
    //任务自动执行 弹窗保存
    savedialogautomatiPer() {
      this.prop.skipRules = ''
      if (this.dialogautomatiPerList.length > 0) {
        this.prop.skipRules = 'autoRun'
      }

      let da = JSON.stringify(this.dialogautomatiPerList)

      this.prop.autoRunConfig = da

      this.dialogautomatiPerVisible = false
      this.save()
    },
    //   任务自动执行  弹窗编辑
    dialogautomatiPerSign(val, index) {
      if (val) {
        this.dialogautomatiPerList[index].index = index
        this.dautomatiPerSignItem = Object.assign(
          {},
          this.dialogautomatiPerList[index]
        )
      } else {
        this.dautomatiPerSignItem = {}
      }
      let daList = []
      this.dialogautomatiPerList.forEach(item => {
        daList.push(item.validNode)
      })

      this.daList = daList
      this.$refs.AddaPolicy.showDailog()
    },
    //   任务自动执行  弹窗删除
    dialogautomatiPerDel(val, index) {
      this.dialogautomatiPerList.splice(index, 1)
    },
    //保存办结抄送配送的信息
    saveEndNotify() {
      const this_ = this
      let url = '${bpmModel}/flow/plugins/v1/procNotifySave?defId=' + this.defId
      req.post(url, this.procNotifyList).then(function(data) {
        data = data.data
        if (data.state) {
          Message.success('办结抄送配置成功')
          this_.dialogEndNotifyVisible = false
        } else {
          Message.error(data.message)
        }
      })
    },
    //新增办结抄送
    addLine() {
      let procNotify = {userAssignRules: [], msgTypes: ''}
      this.procNotifyList.push(procNotify)
    },
    //添加人员配置(办结抄送)
    addUserCondition(setting, index) {
      this.curEditSetting = setting
      this.curEditRuleIndex = index
      let conf = {}
      if (index != undefined) {
        let userAssignRules = this.procNotifyList[setting].userAssignRules
        let userRule = userAssignRules[index]
        conf.userRule = JSON.parse(JSON.stringify(userRule))
      }
      conf = {...conf, ...{nodeType: '', nodeId: '', defId: this.defId}}
      this.$refs.flowNodeUserCondition.showDialog(conf)
    },
    //获取人员配置返回的值(办结抄送)
    nodeUserConditionConfirm(res) {
      if (this.curEditRuleIndex != undefined) {
        this.procNotifyList[this.curEditSetting].userAssignRules.splice(
          this.curEditRuleIndex,
          1,
          res
        )
      } else {
        this.procNotifyList[this.curEditSetting].userAssignRules.push(res)
      }
      this.$forceUpdate()
    },
    //删除
    deleteSetting(list, index) {
      list.splice(index, 1)
    },
    //任务自动执行
    automatiPerform() {
      // this.prop.autoRunConfig.policyScript.replace(/\"/)
      // 打开请求
      if (this.prop.autoRunConfig && this.prop.autoRunConfig != 'null') {
        this.dialogautomatiPerList = JSON.parse(this.prop.autoRunConfig)
      }
      this.dialogautomatiPerVisible = true
    },
    //办结抄送设置
    setEndNotify() {
      this.dialogEndNotifyVisible = true
      this.procNotifyList = [{userAssignRules: [], msgTypes: ''}] //清空办结抄送的配置信息
      const this_ = this
      req
        .get('${bpmModel}/flow/plugins/v1/procNotifyEdit?defId=' + this_.defId)
        .then(function(data) {
          data = data.data
          if (data) {
            this_.procNotifyList = data
          }
        })
    },
    save() {
      if (this.prop.subjectRule.length > 600) {
        this.$message.warning('超出限制长度!')
        return false
      }
      if (this.checkLimit) {
        this.prop.checkLimit = this.checkLimit.join(',')
      }
      if (this.startLimit) {
        this.prop.startLimit = this.startLimit.join(',')
      }
      var param = {
        bpmProp: JSON.parse(JSON.stringify(this.prop)),
        description: this.prop.description,
        defId: this.defId,
        rev: this.defConfigData.initData.bpmDefinition.rev
      }
      if (!param.bpmProp.testStatus) {
        param.bpmProp.testStatus = 'test'
      } else {
        param.bpmProp.testStatus = 'run'
      }
      model.flowOtherSettingSave(param).then(
        data => {
          if (data.state) {
            this.$message.success(data.message)
            let param = {defId: this.defId, topDefKey: this.topDefKey || ''}
            //重新获取流程最新版本,以免保存流程配置的时候提示不是最新版本
            this.$store.dispatch('flow/updateDefRev', this.defId)
          }
        },
        error => {
          this.$message.error(error || '保存失败')
        }
      )
    },
    urgentSmsTelConfirm(data) {
      this.urgentSmsTel = this.urgentSmsTel + data.pathValue
    },
    urgentMailTelConfirm(data) {
      this.urgentMailTel = this.urgentMailTel + data.pathValue
      ro
    },
    urgentSmsTelClick() {
      this.dialogUrgentSmsTelVisible = true
      if (!this.prop.urgentSmsTel) return
      this.urgentSmsTel = this.prop.urgentSmsTel
    },
    urgentMailTelClick() {
      this.dialogUrgentMailTelVisible = true
      if (!this.prop.urgentMailTel) return
      this.urgentMailTel = this.prop.urgentMailTel
    },
    subjectRuleConfirm(data) {
      this.prop.subjectRule = this.prop.subjectRule + data.pathValue
    },
    afterLoadData(data) {
      this.prop = data.prop
      // if (data.prop.checkLimit) {
      //   this.checkLimit = data.prop.checkLimit.split(',')
      // }
      // if (data.prop.startLimit) {
      //   this.startLimit = data.prop.startLimit.split(',')
      // }
      if (data.prop.testStatus == 'test') {
        this.prop.testStatus = false
      } else {
        this.prop.testStatus = true
      }
      for (let key in data.handlerTypes) {
        this.handlerTypes.push({key: key, value: data.handlerTypes[key]})
      }
      data.skipConditionList.forEach(item => {
        let tipItem = this.skipConditionListTip.find(
          item2 => item2.key == item.type
        )
        this.skipConditionList.push({
          key: item.type,
          value: item.title,
          tip: tipItem.tip
        })
      })
      // if (data.prop.skipRules) {
      //   this.skipRulesList = data.prop.skipRules.split(',')
      // }
    },
    copySettingConfirm(copySetting) {
      this.prop.copySetting = JSON.stringify(copySetting)
    }
  },
  created() {
    this.loadDataUrl = '/flow/def/v1/getOtherParam?defId=' + this.defId
  }
}
</script>

<style lang="scss" scoped>
::v-deep {
  label.el-checkbox-horizontal {
    margin: 5px 5px 0 0;
  }
}
.ht_ce {
  margin-top: -10px !important;
}

.flowOther-height {
  height: calc(100% - 48px);
  overflow: hidden;
  margin: 24px;
}

.other-set__card {
  height: calc(100% - 5px);
}

.other-set__card ::v-deep {
  div.el-card__header {
    padding: 8px 20px;
  }

  div.el-card__body {
    height: calc(100% - 65px);
    padding: 10px 0 10px 10px;
  }
}

.other-set__table th,
.other-set__card ::v-deep div.el-card__header {
  background: #f9f9f9;
}

.other-set__table th,
.other-set__table td {
  padding: 8px 15px !important;
}
.inputs.ht-form-inputs__inline {
  width: auto;
}
::v-deep .el-checkbox-group {
  line-height: inherit;
}
</style>