diff --git a/src/views/checkManage/Subsection.vue b/src/views/checkManage/Subsection.vue index 3816502..13d26ad 100644 --- a/src/views/checkManage/Subsection.vue +++ b/src/views/checkManage/Subsection.vue @@ -217,7 +217,16 @@ export default { getStatusBg(row,column,status) { var dom = document.getElementById(this.direction+"-"+this.side+"-"+row+'-'+column); - var color = status == 1 ?'#d81e06': (status == 2|| status == 3) ? '#1afa29': '#bfbfbf'; + var color; + if(status == -1){ + color = '#bfbfbf'; + }else if(status == 2|| status == 3){ + color = '#1afa29'; + }else if(status == 0 ){ + color = '#fbb33d'; + }else{ + color = '#d81e06'; + } dom.style.background = color }, diff --git a/src/views/checkManage/index.vue b/src/views/checkManage/index.vue index 371ace1..ac4ce43 100644 --- a/src/views/checkManage/index.vue +++ b/src/views/checkManage/index.vue @@ -12,11 +12,15 @@ 颜色说明: - 盘点错误 + 核对错误 - 盘点正确 + 核对正确 + + + + 需要核对 diff --git a/src/views/videoWall/index.vue b/src/views/videoWall/index.vue index e229de8..142979c 100644 --- a/src/views/videoWall/index.vue +++ b/src/views/videoWall/index.vue @@ -1,10 +1,10 @@