Merge pull request 'master' (#709) from master into prod

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

View File

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

View File

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