|
@ -16,15 +16,14 @@ |
|
|
数据总览 |
|
|
数据总览 |
|
|
</div> |
|
|
</div> |
|
|
<div class="mortgage_top_item_tit_right"> |
|
|
<div class="mortgage_top_item_tit_right"> |
|
|
<el-select v-model="times" placeholder="请选择日期"> |
|
|
<el-date-picker |
|
|
<el-option |
|
|
v-model="times" |
|
|
v-for="item in options" |
|
|
type="date" |
|
|
:key="item.value" |
|
|
placeholder="选择日期" |
|
|
:label="item.label" |
|
|
format="yyyy-MM-dd" |
|
|
:value="item.value" |
|
|
value-format="yyyy-MM-dd" |
|
|
> |
|
|
> |
|
|
</el-option> |
|
|
</el-date-picker> |
|
|
</el-select> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="mortgage_top_item_coner"> |
|
|
<div class="mortgage_top_item_coner"> |
|
@ -55,7 +54,7 @@ |
|
|
仓库安防 |
|
|
仓库安防 |
|
|
</div> |
|
|
</div> |
|
|
<div class="mortgage_top_item_tit_right"> |
|
|
<div class="mortgage_top_item_tit_right"> |
|
|
<el-select v-model="wareValue" placeholder="请选择日期"> |
|
|
<el-select v-model="wareValue" placeholder="请选择仓库"> |
|
|
<el-option |
|
|
<el-option |
|
|
v-for="item in warehouse" |
|
|
v-for="item in warehouse" |
|
|
:key="item.value" |
|
|
:key="item.value" |
|
@ -118,9 +117,10 @@ |
|
|
<div class="invie">东北角摄像头1</div> |
|
|
<div class="invie">东北角摄像头1</div> |
|
|
|
|
|
|
|
|
<div class="huishie"> |
|
|
<div class="huishie"> |
|
|
回放 |
|
|
{{videos?"监控回放":'实时监控'}} |
|
|
<span> |
|
|
<span @click="clivideo"> |
|
|
<svg-icon |
|
|
<svg-icon |
|
|
|
|
|
|
|
|
icon-class="huifang" |
|
|
icon-class="huifang" |
|
|
class="el-input__icon" |
|
|
class="el-input__icon" |
|
|
style="height: 16px; width: 16px" |
|
|
style="height: 16px; width: 16px" |
|
@ -255,16 +255,28 @@ |
|
|
<div class="mortgage_bom_item_cont_item_left">门店</div> |
|
|
<div class="mortgage_bom_item_cont_item_left">门店</div> |
|
|
<div class="mortgage_bom_item_cont_item_right">12123432.22元</div> |
|
|
<div class="mortgage_bom_item_cont_item_right">12123432.22元</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="ditus"></div> |
|
|
<div class="ditus" @click="dialogVisible = true"> |
|
|
|
|
|
<img src="/image/map.jpg" alt=""> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
|
|
title="门店分布" |
|
|
|
|
|
:visible.sync="dialogVisible" |
|
|
|
|
|
width="70%"> |
|
|
|
|
|
<div class="iframemap"> |
|
|
|
|
|
<iframe src="http://jianguan.yyundong.com/map365/#/map" frameborder="0"></iframe> |
|
|
|
|
|
</div> |
|
|
|
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import barlineEachartsVue from "../echarts/barlineEacharts.vue"; |
|
|
import barlineEachartsVue from "../echarts/barlineEacharts.vue"; |
|
|
import pieLineEachartsVue from "../echarts/pieLineEacharts.vue"; |
|
|
import pieLineEachartsVue from "../echarts/pieLineEacharts.vue"; |
|
|
|
|
|
import {getDateRang} from '@/utils/index' |
|
|
export default { |
|
|
export default { |
|
|
components: { barlineEachartsVue, pieLineEachartsVue }, |
|
|
components: { barlineEachartsVue, pieLineEachartsVue }, |
|
|
data() { |
|
|
data() { |
|
@ -296,26 +308,28 @@ export default { |
|
|
{ |
|
|
{ |
|
|
value: "选项1", |
|
|
value: "选项1", |
|
|
label: "常温仓", |
|
|
label: "常温仓", |
|
|
}, |
|
|
} |
|
|
{ |
|
|
|
|
|
value: "选项2", |
|
|
|
|
|
label: "供应链仓", |
|
|
|
|
|
}, |
|
|
|
|
|
], |
|
|
], |
|
|
wareValue: "", |
|
|
wareValue: "常温仓", |
|
|
day: [ |
|
|
day: [ |
|
|
{ |
|
|
{ |
|
|
value: "选项1", |
|
|
value: "选项1", |
|
|
label: "15日", |
|
|
label: "15日", |
|
|
}, |
|
|
} |
|
|
{ |
|
|
|
|
|
value: "选项2", |
|
|
|
|
|
label: "7日", |
|
|
|
|
|
}, |
|
|
|
|
|
], |
|
|
], |
|
|
dayValue: "", |
|
|
dayValue: "15日", |
|
|
|
|
|
dialogVisible:false, |
|
|
|
|
|
videos:true |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
|
|
|
mounted(){ |
|
|
|
|
|
this.times=getDateRang('yesterday') |
|
|
|
|
|
}, |
|
|
|
|
|
methods:{ |
|
|
|
|
|
clivideo(){ |
|
|
|
|
|
this.videos = !this.videos |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
}; |
|
|
}; |
|
|
</script> |
|
|
</script> |
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
@ -358,6 +372,16 @@ export default { |
|
|
flex: 1; |
|
|
flex: 1; |
|
|
position: relative; |
|
|
position: relative; |
|
|
justify-content: right; |
|
|
justify-content: right; |
|
|
|
|
|
::v-deep .el-date-editor{ |
|
|
|
|
|
width: 150px; |
|
|
|
|
|
.el-input__inner{ |
|
|
|
|
|
background: transparent; |
|
|
|
|
|
border: none; |
|
|
|
|
|
} |
|
|
|
|
|
.el-input__prefix{ |
|
|
|
|
|
display: none; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
&::before { |
|
|
&::before { |
|
|
content: ""; |
|
|
content: ""; |
|
|
position: absolute; |
|
|
position: absolute; |
|
@ -489,7 +513,6 @@ export default { |
|
|
.mortgage_top_item_cons_right_top_video { |
|
|
.mortgage_top_item_cons_right_top_video { |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
height: 85%; |
|
|
height: 85%; |
|
|
background: #f00; |
|
|
|
|
|
position: relative; |
|
|
position: relative; |
|
|
} |
|
|
} |
|
|
.mortgage_top_item_cons_right_top_foor { |
|
|
.mortgage_top_item_cons_right_top_foor { |
|
@ -795,9 +818,14 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.ditus { |
|
|
.ditus { |
|
|
height: 150px; |
|
|
height: 200px; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
background: #f00; |
|
|
position: relative; |
|
|
|
|
|
cursor: pointer; |
|
|
|
|
|
img{ |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
height: 100%; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -805,6 +833,15 @@ export default { |
|
|
cursor: pointer; |
|
|
cursor: pointer; |
|
|
width: 30px !important; |
|
|
width: 30px !important; |
|
|
height: 30px !important; |
|
|
height: 30px !important; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
.iframemap{ |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
height: 1000px; |
|
|
|
|
|
iframe{ |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
height: 100%; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |