1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <sd-webflow
- ref="webflow"
- @afterDispatch="afterDispatch"
- @saveproject="save"
- @sdFormReady="initDatap"
- @actionBtnClick="actionBtnClick"
- >
- <template v-slot:form="{ model, FlowData }">
- <sd-form-by-builder ref="builderform" :form-data="FlowData.processFormData" />
- </template>
- </sd-webflow>
- </template>
- <script>
- import CaseMixins from '../case-mixins.js'
- import components from './_import-components/case-progress-sqccbq-form-import'
- export default {
- name: 'CaseProgressSqccbqForm',
- metaInfo: {
- title: '案件进展-诉前财产保全',
- },
- components,
- mixins: [CaseMixins],
- data() {
- return {}
- },
- created() {
- this.type = 'progress'
- },
- mounted() {
- this.type = 'progress'
- const _this = this
- const ini = setInterval(() => {
- if (
- _this.$refs.webflow &&
- (_this.$refs.webflow.$refs.form || _this.$refs.webflow.$refs.sdForm)
- ) {
- clearInterval(ini)
- const mmc = _this.$refs.webflow.getFieldValue('STEP_NAME')
- if (mmc) {
- document.querySelector('.toptitle_sd-header_common').innerHTML = mmc
- // 案件名称
- const CASE_NAME = _this.$refs.webflow.getFieldValue('CASE_NAME')
- // 案件阶段中文名
- const CASE_STAGE_NAME = _this.$refs.webflow.getFieldValue('CASE_STAGE_NAME')
- // 财产
- _this.$refs.webflow.setFieldValue('title', CASE_NAME + '-' + CASE_STAGE_NAME + mmc)
- }
- }
- }, 1000)
- },
- methods: {
- initDatap() {
- if (this.create) {
- this.initData()
- const _this = this
- const ini = setInterval(() => {
- if (
- _this.$refs.webflow &&
- (_this.$refs.webflow.$refs.form || _this.$refs.webflow.$refs.sdForm)
- ) {
- clearInterval(ini)
- const mmc = _this.$refs.webflow.getFieldValue('STEP_NAME')
- if (mmc) {
- document.querySelector('.toptitle_sd-header_common').innerHTML = mmc
- // 案件名称
- const CASE_NAME = _this.$refs.webflow.getFieldValue('CASE_NAME')
- // 案件阶段中文名
- const CASE_STAGE_NAME = _this.$refs.webflow.getFieldValue('CASE_STAGE_NAME')
- // 财产
- _this.$refs.webflow.setFieldValue('title', CASE_NAME + '-' + CASE_STAGE_NAME + mmc)
- }
- }
- }, 1000)
- }
- },
- },
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|