This commit is contained in:
lcw
2026-01-15 15:28:53 +08:00
parent e45b864be3
commit 89a95c7c96
43 changed files with 106 additions and 89 deletions

View File

@ -1,15 +1,24 @@
<template>
<div>
<el-dialog class="steps-dialog" title="上报分局" @close="dialogForm = false" :close-on-click-modal="false" v-model="dialogForm" width="420px">
<el-form ref="formRef" :model="formdata" :rules="rules">
<el-form-item label="上报分局">
<MOSTY.Department width="100%" clearable v-model="formdata.ssbmdm" />
</el-form-item>
<div class="flex just-center">
<el-button @click="dialogForm = false">取消</el-button>
<el-button type="primary" @click="submitForm">上报</el-button>
</div>
</el-form>
<el-dialog class="steps-dialog" title="上报分局" @close="dialogForm = false" :close-on-click-modal="false"
v-model="dialogForm" width="50%">
<div class="box">
<el-form ref="formRef" :model="formdata" :rules="rules" style="height: 100%;">
<el-form-item label="上报分局">
<MOSTY.Department width="100%" clearable v-model="formdata.ssbmdm" />
</el-form-item>
<el-form-item label="上传签到表">
<MOSTY.Upload width="100%" clearable v-model="formdata.ssbmdm" />
</el-form-item>
<!-- <el-form-item label="">
<MOSTY.Upload width="100%" clearable v-model="formdata.ssbmdm" />
</el-form-item> -->
</el-form>
</div>
<div class="flex just-center">
<el-button @click="dialogForm = false">取消</el-button>
<el-button type="primary" @click="submitForm">上报</el-button>
</div>
</el-dialog>
</div>
</template>
@ -36,5 +45,7 @@ defineExpose({
</script>
<style scoped lang="scss">
.box {
height: 50vh;
}
</style>