联调
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<el-dialog :title="dialogTitle" v-model="dialogVisible" width="1000px">
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1000px">
|
||||
<el-tabs v-model="currentTab">
|
||||
<el-tab-pane label="基础信息" name="base">
|
||||
<el-form
|
||||
@@ -230,7 +230,7 @@
|
||||
<el-button :disabled="formLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script name="DialogClass" setup>
|
||||
import { formatDate } from '@/utils/formatTime'
|
||||
|
||||
@@ -112,7 +112,7 @@
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-dialog title="批量修改" v-model="batchStatusDialogShow" width="400px">
|
||||
<Dialog title="批量修改" v-model="batchStatusDialogShow" width="400px">
|
||||
<el-form :model="statusForm" ref="statusRef" label-width="80px">
|
||||
<el-form-item label="选择状态" prop="status">
|
||||
<el-radio-group v-model="statusForm.status">
|
||||
@@ -128,7 +128,7 @@
|
||||
<el-button type="primary" @click="handleSureStatus">确 认</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</Dialog>
|
||||
|
||||
<DialogClass ref="ClassDialog" @success="getList" />
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<el-dialog :title="dialogTitle" v-model="dialogVisible" width="800px">
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
v-loading="formLoading"
|
||||
@@ -44,7 +44,7 @@
|
||||
<el-button :disabled="formLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script name="DialogSchool" setup>
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
Reference in New Issue
Block a user