Browse Source

style: 原始数据集表单的输入框和下拉框宽度统一

wu.jian2 1 year ago
parent
commit
6421c6f1a7

+ 9 - 1
data-room-ui/packages/DataSetManagement/src/HttpEditForm.vue

@@ -158,7 +158,7 @@
                   <el-input
                     v-model="dataForm.config.url"
                     autocomplete="off"
-                    class="bs-el-input"
+                    class="bs-el-input bs-el-input-url"
                     placeholder="请输入请求地址"
                     clearable
                   />
@@ -1435,4 +1435,12 @@ export default {
   background: #fff !important;
   border-radius: 10px;
 }
+::v-deep .el-input__inner{
+  width: 230px !important;
+}
+.bs-el-input-url{
+  ::v-deep .el-input__inner{
+    width:600px !important;
+  }
+}
 </style>

+ 5 - 1
data-room-ui/packages/DataSetManagement/src/OriginalEditForm.vue

@@ -1104,7 +1104,11 @@ export default {
 ::v-deep .el-loading-spinner{
   top: 75%;
 }
+
+.bs-el-select{
+  width: 100% !important;
+}
 ::v-deep .el-input__inner{
-  width: 230px !important;
+  width: 100% !important;
 }
 </style>