Merge pull request 'fix : 修复新增分摊排版' (#708) from dd into master

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/708
This commit is contained in:
2024-08-13 05:19:44 +00:00
2 changed files with 10 additions and 7 deletions

View File

@@ -1,15 +1,15 @@
<template>
<div v-loading="loading">
<el-form :model="formData" ref="form" class="query-form" :rules="rules">
<el-row>
<el-col :span="6" style="padding-left: 0">
<el-form-item label="分摊名称" prop="shareName">
<div v-loading="loading" style="padding: 0 40px">
<el-form :model="formData" ref="form" :rules="rules" style="margin-left: 5px;margin-top: 18px">
<el-row :gutter="30">
<el-col :span="6" style="margin-left: -15px">
<el-form-item label="分摊名称" prop="shareName" label-width="80" >
<el-input v-model="formData.shareName" placeholder="请输入分摊名称" clearable>
</el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="分摊月份" prop="apportionmentMonth">
<el-form-item label="分摊月份" prop="apportionmentMonth" label-width="80">
<el-date-picker
v-model="formData.apportionmentMonth"
type="month"
@@ -563,4 +563,7 @@ onMounted(() => {
}
}
}
:deep(.el-date-editor--month){
width: 100%;
}
</style>

View File

@@ -339,7 +339,7 @@ onMounted(async () => {
}
:deep(.el-input-number) {
width: 88%;
width: 88.5%;
.el-input__wrapper{
padding: 1px 11px!important;
}