Preview.vue 1.57 KB
<template>
  <transition name="el-zoom-in-center">
    <div class="NCC-preview-main flow-form-main">
      <div class="NCC-common-page-header">
        <el-page-header @back="goBack" :content="'表单预览【'+setting.fullName+'】'" />
        <div class="options">
          <el-button @click="goBack()">{{$t('common.cancelButton')}}</el-button>
        </div>
      </div>
      <div class="main">
        <component :is="currentView" @close="goBack" ref="form"></component>
      </div>
    </div>
  </transition>
</template>

<script>
import { FlowEngineInfo } from '@/api/workFlow/FlowEngine'
export default {
  data() {
    return {
      currentView: '',
      setting: {}
    }
  },
  methods: {
    goBack(isRefresh) {
      this.$emit('close', isRefresh)
    },
    init(data) {
      this.setting = data
      FlowEngineInfo(data.flowId).then(res => {
        if (!res.data || !res.data.formData) return
        data.formConf = res.data.formData
        data.type = res.data.type
        if (data.formType == 1) {
          if (res.data.formUrl) {
            this.currentView = (resolve) => require([`@/views/${res.data.formUrl}`], resolve)
          } else {
            this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/${data.enCode}`], resolve)
          }
        } else {
          this.currentView = (resolve) => require([`@/views/workFlow/workFlowForm/dynamicForm`], resolve)
        }
        setTimeout(() => {
          this.$nextTick(() => {
            this.$refs.form && this.$refs.form.init(data)
          })
        }, 300)
      })
    },
  }
}
</script>