diff --git a/src/assets/scss/modules/visual/warning.scss b/src/assets/scss/modules/visual/warning.scss
index 36260a7f..265c3889 100644
--- a/src/assets/scss/modules/visual/warning.scss
+++ b/src/assets/scss/modules/visual/warning.scss
@@ -87,7 +87,7 @@
content: "";
width: 8px;
height: 8px;
- background: #f0f3f7;
+ background: #fef200;
border-radius: 50%;
position: absolute;
left: 12px;
@@ -95,6 +95,12 @@
transform: translate(0, -50%);
}
+ &:nth-of-type(2) {
+ &::after {
+ background: #e70014;
+ }
+ }
+
div:nth-child(1) {
font-size: 16px;
font-family: PingFang SC;
diff --git a/src/assets/scss/modules/warning.scss b/src/assets/scss/modules/warning.scss
index 2353a943..f28535b9 100644
--- a/src/assets/scss/modules/warning.scss
+++ b/src/assets/scss/modules/warning.scss
@@ -85,7 +85,7 @@
content: "";
width: 8px;
height: 8px;
- background: #f5f502;
+ background: #fef200;
border-radius: 50%;
position: absolute;
left: 12px;
@@ -95,7 +95,7 @@
&:nth-of-type(2) {
&::after {
- background: #fb500d;
+ background: #e70014;
}
}
diff --git a/src/views/modules/base/community/buildTable.vue b/src/views/modules/base/community/buildTable.vue
index 99a435b3..0f201362 100644
--- a/src/views/modules/base/community/buildTable.vue
+++ b/src/views/modules/base/community/buildTable.vue
@@ -69,6 +69,26 @@
:selectable="checkSelect"
width="55">
+
+
+
+ {{scope.row.sort}}
+
+
+
+
+
@@ -107,25 +127,6 @@
-
-
-
- {{scope.row.sort}}
-
-
-
-
-
@@ -276,10 +276,10 @@ export default {
const { data, code, msg } = await requestPost(url, params)
if (code === 0) {
- this.$message({
- type: 'success',
- message: '操作成功'
- })
+ // this.$message({
+ // type: 'success',
+ // message: '修改成功'
+ // })
} else {
@@ -727,12 +727,12 @@ export default {
width: 120px;
}
-// /deep/.el-input-number--medium .el-input-number__decrease,
-// /deep/.el-input-number--medium .el-input-number__increase {
-// width: 26px;
-// }
-// /deep/.el-input-number--medium .el-input__inner {
-// padding-left: 0px;
-// padding-right: 0px;
-// }
+/deep/.el-input-number--medium .el-input-number__decrease,
+/deep/.el-input-number--medium .el-input-number__increase {
+ width: 26px;
+}
+/deep/.el-input-number--medium .el-input__inner {
+ padding-left: 0px;
+ padding-right: 0px;
+}
diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue
index 8c552f2c..7f2b7357 100644
--- a/src/views/modules/base/resi.vue
+++ b/src/views/modules/base/resi.vue
@@ -414,7 +414,7 @@ export default {
computed: {
...mapGetters(['clientHeight', 'iframeHeight']),
tableHeight() {
- const h = this.clientHeight - this.searchH - 310 + this.iframeHeigh
+ const h = this.clientHeight - this.searchH - 310 + this.iframeHeight
const _h = this.clientHeight - 310 - this.searchH
return this.$store.state.inIframe ? h : _h
}
diff --git a/src/views/modules/visual/warning/components/screen-table/people-list.vue b/src/views/modules/visual/warning/components/screen-table/people-list.vue
index 8efffffa..0cc25b6b 100644
--- a/src/views/modules/visual/warning/components/screen-table/people-list.vue
+++ b/src/views/modules/visual/warning/components/screen-table/people-list.vue
@@ -17,7 +17,7 @@
:loading="loading"
:header="header"
:list="list"
- @operate="toUserInfo"
+ @operate="handlePeopleItem"
>
@@ -50,7 +50,7 @@