diff --git a/ruoyi-ui/src/assets/styles/JiHeExpressway.scss b/ruoyi-ui/src/assets/styles/JiHeExpressway.scss
index 36e5c973..660da6bd 100644
--- a/ruoyi-ui/src/assets/styles/JiHeExpressway.scss
+++ b/ruoyi-ui/src/assets/styles/JiHeExpressway.scss
@@ -1,14 +1,17 @@
.theme-jihe {
+ $lightBlue: #3de8ff;
$textColor: #f4f4f4;
$inputHeight: 26px;
color: $textColor;
+ .text-center{ text-align: center;}
+ .tc-lb{ color: $lightBlue;}
.el-tabs__item {
color: $textColor;
}
.el-form-item {
- margin-bottom: 14px;
+ margin-bottom: 8px;
}
.el-form-item__label {
@@ -47,11 +50,14 @@
// 多选框组
.el-checkbox-group {
+ // height: $inputHeight;
.el-checkbox__label {
color: $textColor;
+ padding-left: 6px;
}
.el-checkbox {
+ margin-right: 16px;
.el-checkbox__inner {
width: 20px;
height: 20px;
@@ -92,12 +98,17 @@
color: #fff;
&.is-disabled {
- color: #006a99;
+ color: #096d8c;
}
}
.el-input {
margin: 0;
+ .el-input__inner{
+ height: calc($inputHeight + 2px);
+ background-color: #096d8c;
+ padding:0 28px;
+ }
}
}
// 单选按钮
diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/Adaptation.vue b/ruoyi-ui/src/views/JiHeExpressway/components/Adaptation.vue
index 8d34a74d..ff5a269d 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/components/Adaptation.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/components/Adaptation.vue
@@ -101,10 +101,10 @@ export default {
mounted() {
this.initScale();
- // window.addEventListener(
- // "resize",
- // _.debounce(this.initScale.bind(this), 360)
- // );
+ window.addEventListener(
+ "resize",
+ _.debounce(this.initScale.bind(this), 360)
+ );
},
};
diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue b/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue
index 52426051..f5e4f510 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue
@@ -165,7 +165,7 @@ export default {
"reset"
);
},
- async handleSearch() {
+ async handleSearch(value) {
if (this.types === "input") {
let params = {};
params[this.params] = this.value;
diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/service/board/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/service/board/index.vue
index 14477d93..cb8fa6b1 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/pages/service/board/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/pages/service/board/index.vue
@@ -10,28 +10,63 @@