lb #6
@@ -1,5 +1,12 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<el-dialog class="super-flexible-dialog" :title="isDetail ? title.detail : !dataForm.id ? title.add : title.edit" :visible.sync="visible" @close="handleClose">
 | 
			
		||||
	<el-dialog
 | 
			
		||||
		class="super-flexible-dialog"
 | 
			
		||||
		:title="isDetail ? title.detail : !dataForm.id ? title.add : title.edit"
 | 
			
		||||
		:visible.sync="visible"
 | 
			
		||||
		@close="handleClose"
 | 
			
		||||
		:distory-on-close="true"
 | 
			
		||||
		:close-on-click-modal="false"
 | 
			
		||||
	>
 | 
			
		||||
		<div style="max-height: 60vh; overflow-y: scroll; overflow-x: hidden;">
 | 
			
		||||
			<el-form ref="dataForm" :model="dataForm" :rules="dataFormRules">
 | 
			
		||||
				<!-- 如果需要更精细一点的布局,可以根据配置项实现地再复杂一点,但此处暂时全部采用一行两列布局  -->
 | 
			
		||||
 
 | 
			
		||||
@@ -26,7 +26,7 @@
 | 
			
		||||
		<!-- 弹窗, 新增 / 修改 -->
 | 
			
		||||
		<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update> -->
 | 
			
		||||
 | 
			
		||||
		<base-dialog v-if="showbasedialog" ref="basedialog" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" @destory-dialog="showbasedialog = false" />
 | 
			
		||||
		<base-dialog v-if="showbasedialog" ref="basedialog" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" />
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,11 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<el-dialog class="super-flexible-dialog" :title="isDetail ? $t('ws.detail') : !dataForm.id ? $t('add') : $t('ws.edit')" :visible.sync="visible">
 | 
			
		||||
	<el-dialog
 | 
			
		||||
		class="super-flexible-dialog"
 | 
			
		||||
		:title="isDetail ? $t('ws.detail') : !dataForm.id ? $t('add') : $t('edit')"
 | 
			
		||||
		:visible.sync="visible"
 | 
			
		||||
		:close-on-click-modal="false"
 | 
			
		||||
		:destroy-on-close="true"
 | 
			
		||||
	>
 | 
			
		||||
		<div style="max-height: 60vh; overflow-y: scroll; overflow-x: hidden;">
 | 
			
		||||
			<el-form ref="dataForm" :model="dataForm" :rules="dataFormRules">
 | 
			
		||||
				<el-row :gutter="20">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user