style(customerConfig): 优化对话框布局和代码结构
-调整了对话框中表单元素的布局结构 - 移除了不必要的空行和 console.log语句 - 在密码机管理部分添加了包裹 div 元素
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -276,7 +276,7 @@ | ... | @@ -276,7 +276,7 @@ |
| 276 | </Formitem> | 276 | </Formitem> |
| 277 | </el-col> | 277 | </el-col> |
| 278 | </el-row> | 278 | </el-row> |
| 279 | - </div> | 279 | + |
| 280 | 280 | ||
| 281 | <section class="dlTitle"> | 281 | <section class="dlTitle"> |
| 282 | <h3>密码机管理</h3> | 282 | <h3>密码机管理</h3> |
| ... | @@ -365,6 +365,7 @@ | ... | @@ -365,6 +365,7 @@ |
| 365 | </el-col> | 365 | </el-col> |
| 366 | 366 | ||
| 367 | </el-row> | 367 | </el-row> |
| 368 | + </div> | ||
| 368 | </el-form> | 369 | </el-form> |
| 369 | </div> | 370 | </div> |
| 370 | <div class="dialogOption entrySave"> | 371 | <div class="dialogOption entrySave"> |
| ... | @@ -547,7 +548,6 @@ export default { | ... | @@ -547,7 +548,6 @@ export default { |
| 547 | }, | 548 | }, |
| 548 | computed: { | 549 | computed: { |
| 549 | isCipherMachine() { | 550 | isCipherMachine() { |
| 550 | - console.log("11",this.formData.methodOfSignature === 'OTHERS') | ||
| 551 | return this.formData.methodOfSignature === 'OTHERS'; | 551 | return this.formData.methodOfSignature === 'OTHERS'; |
| 552 | } | 552 | } |
| 553 | }, | 553 | }, | ... | ... |
-
Please register or login to post a comment