workFrame.vue 7.18 KB
<template>
  <div class="container">
    <!-- 顶部内容框 -->
    <div class="topButton">
      <!-- 左侧业务功能按钮 -->
      <ul>
        <li
          @click="operation(index, item)"
          v-for="(item, index) in leftButtonList"
          :key="index"
        >
          <svg-icon :icon-class="item.icon" />
          <span class="iconName">{{ item.name }}</span>
        </li>
      </ul>
      <!-- 右侧流程按钮 -->
      <ul>
        <li
          @click="operation(index, item)"
          v-for="(item, index) in rightButtonList"
          :key="index"
        >
          <svg-icon class="icon" :icon-class="item.icon" />
          <span class="iconName">{{ item.name }}</span>
        </li>
      </ul>
    </div>
    <!-- 内容框架 -->
    <div id="ContainerFrame">
      <!-- 左侧菜单栏 -->
      <div id="leftmenu">
        <div class="title">申请单元列表({{ unitData.length }})</div>
        <el-menu default-active="0" @select="unitClick">
          <el-menu-item
            v-for="(item, index) in unitData"
            :index="index.toString()"
            :key="index"
          >
            <i>
              <p>{{ item.bdcdyh }}</p>
              <p>{{ item.zl }}</p>
            </i>
          </el-menu-item>
        </el-menu>
      </div>
      <div v-if="splitScreen" class="splitScreen-con">
        <component :is="clxxForm" v-bind="currentSelectProps" :key="fresh" />
      </div>
      <!-- 表单内容区域 -->
      <div id="rightContainer">
        <div class="tabDiv">
          <el-tabs v-model="tabName" @tab-click="tabClick">
            <el-tab-pane
              :label="item.name"
              :name="item.value"
              v-for="(item, index) in tabList"
              :key="index"
            >
            </el-tab-pane>
          </el-tabs>
          <component
            :key="fresh"
            :is="componentTag"
            v-bind="currentSelectProps"
          />
        </div>
      </div>
    </div>
  </div>
</template>

<style scoped lang='scss'>
@import "~@/styles/mixin.scss";
@import "./workFrame.scss";
</style>

<script>
import { leftMenu, stepExpandInfo, record } from "@/api/fqsq.js";
import { getForm } from "./flowform.js";
export default {
  components: {
    //注册表单组件,后期改为路由模式
    // slxx: () => import("@/views/ywbl/fqsq/components/slxx.vue"),
    // clxx: () => import("./components/clxx.vue"),
    // spyj: () => import("./components/spyj.vue"),
    // zdjbxx: () => import("../../zhcx/djbcx/components/zdxx.vue"),
    // qlxx: () => import("../../zhcx/djbcx/components/jsydsyq.vue"),
  },
  data() {
    return {
      //受理申请标识码
      bsmSlsq: this.$route.query.bsmSlsq,
      //当前流程所在环节
      bestepid: this.$route.query.bestepid,
      //顶部左侧按钮集合
      leftButtonList: [],
      //顶部右侧按钮集合
      rightButtonList: [],
      //左侧菜单数据集合
      unitData: [],
      //设置那个表单选中
      tabName: "",
      //表单集合
      tabList: [],
      //选择加载哪一个组件
      componentTag: "",
      //设置表单组件是否刷选值
      fresh: 0,
      //设置表单传递数据
      currentSelectProps: {},
      //是否开启材料分屏
      splitScreen: false,
      //材料分屏表单
      clxxForm: "",
      //材料信息选择卡索引
      clxxIndex: "",
      //材料信息选项卡对象
      clxxTab: {},
    };
  },
  mounted() {
    this.loadBdcdylist();
    this.flowInitParam();
  },
  methods: {
    //加载流程初始参数
    flowInitParam() {
      var formdata = new FormData();
      formdata.append("bsmSlsq", this.bsmSlsq);
      formdata.append("bestepid", this.bestepid);
      stepExpandInfo(formdata).then((res) => {
        if (res.code === 200) {
          this.leftButtonList = res.result.button;
          this.rightButtonList = res.result.operation;
          this.tabList = res.result.form;
          //默认选择第一个选项卡内容
          this.tabName = res.result.form[0].value;
          let that = this;
          this.tabList.forEach(function (item, index) {
            if (item.value == "clxx") {
              that.clxxIndex = index;
              that.clxxForm = getForm(item.value);
              that.clxxTab = item;
            }
          });
          //默认加载第一个选项卡的组件内容
          this.getFromRouter(res.result.form[0].value);
        }
      });
    },
    //流程环节操作按钮
    operation(index, item) {
      let that = this;
      switch (item.value) {
        case "zsyl":
          this.zsylFlag = true;
          break;
        case "clfp":
          this.splitScreen = this.splitScreen ? false : true;
          //this.$alert(this.tabName);
          if (this.splitScreen) {
            //如果当前选项卡为材料信息内容,递减到上一个选项卡内容
            if (this.tabName == this.clxxTab.value) {
              this.tabName = this.tabList[this.clxxIndex - 1].value;
              this.getFromRouter(this.tabList[this.clxxIndex - 1].value);
            }
            this.tabList.splice(this.clxxIndex, 1);
          } else {
            this.tabList.splice(this.clxxIndex, 1, this.clxxTab);
          }
          break;
        case "th":
          this.thflag = true;
          this.$nextTick(() => {
            this.$refs.thdialogRef.tablelistFn();
          });
          break;
        case "zc":
          this.zcDialog = true;
          this.$refs.zcDialogRef.tablelistFn();
          break;
        case "tc":
          window.close();
          break;
        case "db":
          var formdata = new FormData();
          formdata.append("bsmSlsq", this.bsmSlsq);
          formdata.append("bestepid", this.bestepid);
          // comMsg;
          this.$confirm("请确认是否登簿", "提示", {
            iconClass: "el-icon-question", //自定义图标样式
            confirmButtonText: "确认", //确认按钮文字更换
            cancelButtonText: "取消", //取消按钮文字更换
            showClose: true, //是否显示右上角关闭按钮
            type: "warning", //提示类型  success/info/warning/error
          }).then(function () {
            record(formdata).then((res) => {
              if (res.code === 200 || res.code === 2002) {
                that.$alert(res.message);
              }
            });
          });
          break;
      }
    },
    //读取申请单元信息
    loadBdcdylist() {
      var formdata = new FormData();
      formdata.append("bsmSlsq", this.bsmSlsq);
      formdata.append("bestepid", this.bestepid);
      leftMenu(formdata).then((res) => {
        if (res.code === 200) {
          this.unitData = res.result;
          this.currentSelectProps = res.result[0];
        }
      });
    },
    //申请单元点击事件
    unitClick(index) {
      if (this.currentSelectProps.bsmSldy != this.unitData[index].bsmSldy) {
        this.currentSelectProps = this.unitData[index];
        this.fresh += 1;
      }
    },
    //表单选项卡事件
    tabClick(tab, event) {
      //this.$alert(tab.name);
      this.getFromRouter(tab.name);
    },
    //切换选项卡内容组件
    getFromRouter(tabname) {
      this.componentTag = getForm(tabname);
    },
  },
};
</script>