Commit 4409f96c by li_hongchao

审核、复核功能的查询条件样式修改

逻辑分库名称校验提示修改 -- 必须是汉字,最少2个
parent 704aaafe
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<div class="clear-btn" @click="resetForm('ruleForm')">清空</div> <div class="clear-btn" @click="resetForm('ruleForm')">清空</div>
<div class="select-btn" @click="submitForm">选结果</div> <div class="select-btn" @click="submitForm"></div>
</div> </div>
</el-form> </el-form>
</div> </div>
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
</el-form-item> </el-form-item>
</div> </div>
<div> <div>
<div class="select-btn" @click="submitForm" style="float:right;">选结果</div> <div class="select-btn" @click="submitForm" style="float:right;"></div>
<div class="clear-btn" @click="resetForm()" style="float:right;">清空</div> <div class="clear-btn" @click="resetForm()" style="float:right;">清空</div>
</div> </div>
</div> </div>
......
...@@ -15,7 +15,11 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -15,7 +15,11 @@ $tableHeight: var(--tableHeight, 450px);
} }
.bzxxfh-top { .bzxxfh-top {
margin: 24px 24px 16px 24px; margin: 24px 24px 16px 24px;
border-bottom: 1px solid #eeeeee; //border-bottom: 1px solid #eeeeee;
padding: 16px 20px 10px 20px;
background: #F6F8FA;
box-shadow: inset 0px 0px 3px 0px rgba(5, 95, 231, 0.2);
border-radius: 10px;
/deep/.el-form-item__label { /deep/.el-form-item__label {
width: 70px !important; width: 70px !important;
...@@ -62,7 +66,7 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -62,7 +66,7 @@ $tableHeight: var(--tableHeight, 450px);
.line1 { .line1 {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 15px; margin-bottom: 12px;
.el-form-item { .el-form-item {
margin-right: 24px; margin-right: 24px;
} }
...@@ -131,7 +135,7 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -131,7 +135,7 @@ $tableHeight: var(--tableHeight, 450px);
} }
.el-radio { .el-radio {
color: #666; color: #666;
margin-right: 12px; margin-right: 6px;
} }
/deep/.el-radio__input.is-checked + .el-radio__label { /deep/.el-radio__input.is-checked + .el-radio__label {
color: #333333; color: #333333;
...@@ -159,7 +163,7 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -159,7 +163,7 @@ $tableHeight: var(--tableHeight, 450px);
} }
.select-btn { .select-btn {
cursor: pointer; cursor: pointer;
width: 96px; width: 72px;
height: 32px; height: 32px;
background: #055fe7; background: #055fe7;
border-radius: 4px; border-radius: 4px;
......
...@@ -7,7 +7,12 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -7,7 +7,12 @@ $tableHeight: var(--tableHeight, 450px);
font-family: HarmonyOS_Sans_SC; font-family: HarmonyOS_Sans_SC;
.bzxxsh-top { .bzxxsh-top {
margin: 24px 24px 16px 24px; margin: 24px 24px 16px 24px;
border-bottom: 1px solid #eeeeee; //border-bottom: 1px solid #eeeeee;
padding: 16px 24px 0px 24px;
background: #F6F8FA;
box-shadow: inset 0px 0px 3px 0px rgba(5, 95, 231, 0.2);
border-radius: 10px;
/deep/ .el-form-item__label { /deep/ .el-form-item__label {
width: 70px !important; width: 70px !important;
...@@ -55,7 +60,7 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -55,7 +60,7 @@ $tableHeight: var(--tableHeight, 450px);
.cxtj-row1 { .cxtj-row1 {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 20px; margin-bottom: 12px;
.el-form-item { .el-form-item {
margin-right: 24px; margin-right: 24px;
...@@ -185,7 +190,7 @@ $tableHeight: var(--tableHeight, 450px); ...@@ -185,7 +190,7 @@ $tableHeight: var(--tableHeight, 450px);
.select-btn { .select-btn {
cursor: pointer; cursor: pointer;
width: 96px; width: 72px;
height: 32px; height: 32px;
background: #055fe7; background: #055fe7;
border-radius: 4px; border-radius: 4px;
......
...@@ -336,7 +336,7 @@ export default { ...@@ -336,7 +336,7 @@ export default {
{required: true, message: '请输入逻辑库名称', trigger: 'change'}, {required: true, message: '请输入逻辑库名称', trigger: 'change'},
{ {
pattern: fRegExp.SYS._LJFKM, pattern: fRegExp.SYS._LJFKM,
message: '名称必须至少两个汉字!', message: '名称必须是汉字,至少2个!',
trigger: 'change' trigger: 'change'
} }
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment