照片放大

颜色修改
nanjing-wuliu-qsl
LAPTOP-S9HJSOEB\昊天 3 years ago
parent aade491882
commit 2390b48511

@ -67,15 +67,15 @@ const routes = [{
// }, // },
// component: () => import('@/views/alarmVideos/alarmLog') // component: () => import('@/views/alarmVideos/alarmLog')
// }, // },
{ // {
path: 'checkSummary', // path: 'checkSummary',
name: 'checkSummary', // name: 'checkSummary',
meta: { // meta: {
icon: 'eye', // icon: 'eye',
name: '盘点统计' // name: '盘点统计'
}, // },
component: () => import('@/views/checkSummary/index') // component: () => import('@/views/checkSummary/index')
}, // },
{ {
path: 'emptyCheckManage', path: 'emptyCheckManage',
name: 'emptyCheckManage', name: 'emptyCheckManage',
@ -154,15 +154,15 @@ const routes = [{
}, },
component: () => import('@/views/cameraManage/model') component: () => import('@/views/cameraManage/model')
}, },
{ // {
path: 'checkMonitoring', // path: 'checkMonitoring',
name: 'checkMonitoring', // name: 'checkMonitoring',
meta: { // meta: {
icon: "eye", // icon: "eye",
name: '实时盘点监控' // name: '实时盘点监控'
}, // },
component: () => import('@/views/checkMonitoring/index') // component: () => import('@/views/checkMonitoring/index')
}, // },
// { // {
// path: 'productSpecManage', // path: 'productSpecManage',
// name: 'productSpecManage', // name: 'productSpecManage',

@ -10,7 +10,7 @@
> >
<span slot="tab" > <span slot="tab" >
{{ getRandom(latticeRow + 1 -index, latticeRow, nums.row, total.row) }} {{ getRandom(latticeRow + 1 -index, latticeRow, nums.row, total.row) }}
<a-icon type="close-circle" v-if="status.row[index] === 0" style="color: #d81e06"/> <a-icon type="close-circle" v-if="status.row[index] === 0" style="color: #dacb2e"/>
<a-icon type="check-circle" v-else-if="status.row[index] === 2" style="color: #1afa29" /> <a-icon type="check-circle" v-else-if="status.row[index] === 2" style="color: #1afa29" />
<a-icon type="exclamation-circle" v-else style="color: #909399" /> <a-icon type="exclamation-circle" v-else style="color: #909399" />
</span> </span>
@ -48,7 +48,7 @@
<span slot="tab"> <span slot="tab">
{{ getRandom(index, latticeColumn, nums.column, total.column) }} {{ getRandom(index, latticeColumn, nums.column, total.column) }}
<!-- <a-icon :id="`${shelveId}-row-${getRandom(index,latticeRow,nums.row,total.row)}`"/> --> <!-- <a-icon :id="`${shelveId}-row-${getRandom(index,latticeRow,nums.row,total.row)}`"/> -->
<a-icon type="close-circle" v-if="status.column[index] === 0" style="color: #d81e06" /> <a-icon type="close-circle" v-if="status.column[index] === 0" style="color: #dacb2e" />
<a-icon type="check-circle" v-else-if="status.column[index] === 2" style="color: #1afa29" /> <a-icon type="check-circle" v-else-if="status.column[index] === 2" style="color: #1afa29" />
<a-icon type="exclamation-circle" v-else style="color: #909399" /> <a-icon type="exclamation-circle" v-else style="color: #909399" />
</span> </span>
@ -217,7 +217,7 @@ export default {
getStatusBg(row,column,status) { getStatusBg(row,column,status) {
var dom = document.getElementById(this.direction+"-"+this.side+"-"+row+'-'+column); var dom = document.getElementById(this.direction+"-"+this.side+"-"+row+'-'+column);
var color = status == 0 ?'#d81e06': (status == 1) ? '#1afa29': '#bfbfbf'; var color = status == 0 ?'#dacb2e': (status == 1) ? '#1afa29': '#bfbfbf';
dom.style.background = color dom.style.background = color
}, },

@ -4,7 +4,7 @@
<div class="title-info"> <div class="title-info">
<span class="explain">颜色说明</span> <span class="explain">颜色说明</span>
<span class="info-text"> <span class="info-text">
<a-tag color="#d81e06" style="width:30px;height:20px;margin-right:6px"></a-tag> <a-tag color="#dacb2e" style="width:30px;height:20px;margin-right:6px"></a-tag>
未知 未知
</span> </span>
<span class="info-text"> <span class="info-text">

@ -44,8 +44,9 @@
<span style="height:100%;"> <span style="height:100%;">
<happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="height:30px;"> <happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="height:30px;">
<img class="historyImg" :src="imgUrl+text.intoStockPic" <viewer :images="text.intoStockPic">
/> <img class="historyImg" :src="imgUrl+text.intoStockPic" />
</viewer>
</happy-scroll> </happy-scroll>
</span> </span>
@ -58,8 +59,10 @@
<span style="height:100%;"> <span style="height:100%;">
<happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="height:30px;"> <happy-scroll color="rgba(100,100,100,0.5)" size="8" class="scroll-box" style="height:30px;">
<img class="historyImg" :src="imgUrl+text.intoStockOverPic" <viewer :images="text.intoStockOverPic">
/> <img class="historyImg" :src="imgUrl+text.intoStockOverPic" />
</viewer>
</happy-scroll> </happy-scroll>
</span> </span>
@ -113,7 +116,6 @@ export default {
}, },
{ {
title: "入库顶部照片", title: "入库顶部照片",
scopedSlots: {customRender: 'intoStockPic'}, scopedSlots: {customRender: 'intoStockPic'},
width:200 width:200
}, },

Loading…
Cancel
Save