14468 三项数据库都有 新增 还显示之前弹窗的数据
parent
163bc26036
commit
d5241d8c02
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title">
|
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title" destroy-on-close @close="clear" >
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
||||||
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
||||||
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
||||||
|
@ -293,6 +293,8 @@ export default {
|
||||||
this.form.TYPE_NAME = e.info[0].NAME
|
this.form.TYPE_NAME = e.info[0].NAME
|
||||||
},
|
},
|
||||||
clear() {
|
clear() {
|
||||||
|
this.dialogVisible = false
|
||||||
|
console.log('clear')
|
||||||
this.isEdit = false
|
this.isEdit = false
|
||||||
this.form = {
|
this.form = {
|
||||||
REMARKS: '',
|
REMARKS: '',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title">
|
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title" destroy-on-close @close="clear">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
||||||
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
||||||
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title">
|
<el-dialog v-loading="loading" v-if="dialogVisible" :visible.sync="dialogVisible" :title="title" destroy-on-close @close="clear">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
||||||
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
<el-form-item v-if="false" label="规程属性:" prop="CATEGORY_LIST">
|
||||||
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
<multiple-choice :dynamic-tags.sync="form.CATEGORY_LIST" :labels="categoryList" :row-key="key.categoryKey" :row-name="key.categoryName" :limit="1" @getChooseOne="getChooseOne"/>
|
||||||
|
|
Loading…
Reference in New Issue