修改报警
This commit is contained in:
parent
59a17d392d
commit
73897ae1eb
@ -4,7 +4,7 @@ NODE_ENV = 'development'
|
||||
# 本地环境接口地址(/api/index.ts文件中使用)
|
||||
# 后端本地
|
||||
# VITE_API_URL = 'http://192.168.34.221:19111'
|
||||
# VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
|
||||
VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
|
||||
# VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
|
||||
# VITE_API_URL = 'http://192.168.34.221:28889'
|
||||
# VITE_API_URL = 'http://121.196.214.246/api'
|
||||
@ -30,7 +30,7 @@ NODE_ENV = 'development'
|
||||
# 苏立信
|
||||
# VITE_API_URL = 'http://101.43.164.214:11111'
|
||||
# 中科安信
|
||||
VITE_API_URL = 'http://8.136.222.164:8808'
|
||||
# VITE_API_URL = 'http://8.136.222.164:8808'
|
||||
# 上传
|
||||
VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url='
|
||||
|
||||
|
||||
BIN
src/assets/images/warning.gif
Normal file
BIN
src/assets/images/warning.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 MiB |
@ -24,8 +24,8 @@ export const staticRouter: RouteRecordRaw[] = [
|
||||
{
|
||||
path: "/large",
|
||||
name: "大屏",
|
||||
component: () => import("@/views/sevenLargeScreen/indexL.vue"), //七参数标准版
|
||||
// component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
|
||||
// component: () => import("@/views/sevenLargeScreen/indexL.vue"), //七参数标准版
|
||||
component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
|
||||
// component: () => import("@/views/sevenLargeScreen/indexL_syhy.vue"), // 只有一级路由(盘锦、嘉兴、鄱湖美湾医疗项目需切换至该首页)
|
||||
children: [
|
||||
{
|
||||
|
||||
@ -69,7 +69,7 @@ const mqttMSG = () => {
|
||||
const result = JSON.parse(message);
|
||||
openPeopleCountDialog({
|
||||
index: 10,
|
||||
title: "查看",
|
||||
title: "人员呼叫",
|
||||
timeOut: 60,
|
||||
timeFlag: null,
|
||||
show: true,
|
||||
@ -90,7 +90,7 @@ onMounted(() => {
|
||||
// setTimeout(() => {
|
||||
// openPeopleCountDialog({
|
||||
// index: 10,
|
||||
// title: "查看",
|
||||
// title: "人员呼叫",
|
||||
// timeOut: 10,
|
||||
// timeFlag: null,
|
||||
// show: true,
|
||||
|
||||
@ -57,6 +57,7 @@
|
||||
<div v-else-if="showIndex == 10">
|
||||
<div class="list-detail" v-for="ele in mapsDetail.filter((option: any) => option.show)" :key="ele.id">
|
||||
<div :class="postData.type == 1 ? 'dialog-content' : postData.type == 2 ? 'dialog-content-show' : 'dialog-content-more'">
|
||||
<div class="warning-bg"></div>
|
||||
<div class="dialog-title">
|
||||
<!-- <div class="title-img"><img src="@/assets/images/titleIcon.png" alt="" /></div> -->
|
||||
<div class="title-text">
|
||||
@ -72,7 +73,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="political-outlook">
|
||||
<myMap :mapsDetail="ele" :key="ele.id" tip="查看"></myMap>
|
||||
<myMap :mapsDetail="ele" :key="ele.id" :tip="ele.title"></myMap>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -201,6 +202,17 @@ onMounted(async () => {
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.warning-bg {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-image: url(@/assets/images/warning.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
position: absolute;
|
||||
top: -190px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.flex {
|
||||
display: -webkit-box;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user