fix页面bug
This commit is contained in:
parent
071e70f844
commit
add39bc4f8
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1200px" @close="emits">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
@ -113,7 +113,7 @@
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
<el-button @click="emits">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
@ -152,6 +152,11 @@ const formData = ref({
|
||||
})
|
||||
|
||||
|
||||
const emits = async () => {
|
||||
dialogVisible.value = false
|
||||
emit('success')
|
||||
}
|
||||
|
||||
const formRules = reactive({
|
||||
//判断物料类型
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user