66 lines
1.3 KiB
Vue
66 lines
1.3 KiB
Vue
<template>
|
|
<el-dialog v-model="props.modelValue" title="班级详情" width="900px" @closed="closeDialog" @open="openDialog">
|
|
<el-form ref="formRef" :model="formData" :disabled="true">
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="12">
|
|
<el-form-item :label-width="labelWidth" label="班级名称" prop="classes_name">
|
|
<el-input v-model='formData.classes_name' type="text" placeholder='请输入班级名称'></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
</el-form>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive, ref, watch } from "vue";
|
|
import { isEmptyObject } from "~/utils/index";
|
|
|
|
|
|
// --业务参数
|
|
|
|
|
|
|
|
// --业务方法
|
|
|
|
|
|
|
|
|
|
// --基础参数
|
|
const formRef = ref();
|
|
const labelWidth = 100;
|
|
|
|
const props = defineProps({
|
|
modelValue: Boolean,
|
|
data: Object,
|
|
done: Function,
|
|
});
|
|
const emits = defineEmits(["update:modelValue"]);
|
|
const formData = ref({
|
|
...props.data,
|
|
});
|
|
|
|
|
|
// --基础方法
|
|
watch(props, (v) => {
|
|
formData.value = v.data;
|
|
});
|
|
|
|
// 打开弹窗时执行
|
|
const openDialog = () => {
|
|
|
|
|
|
};
|
|
|
|
const closeDialog = () => {
|
|
emits("update:modelValue", false);
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
|
|
</style>
|