|
|
@ -30,18 +30,30 @@
|
|
|
|
<div class="box_body">
|
|
|
|
<div class="box_body">
|
|
|
|
<div class="delete" @click="deleteto"></div>
|
|
|
|
<div class="delete" @click="deleteto"></div>
|
|
|
|
<div class="box_allbox">
|
|
|
|
<div class="box_allbox">
|
|
|
|
<div class="box_item" v-for="item in roll_list" :key="item.id">
|
|
|
|
<div
|
|
|
|
|
|
|
|
class="box_item"
|
|
|
|
|
|
|
|
v-for="(item, index) in roll_list"
|
|
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
|
|
@click="turn(item.url)"
|
|
|
|
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
<div
|
|
|
|
class="box_item_icon"
|
|
|
|
class="box_item_icon"
|
|
|
|
:style="{ backgroundImage: back_change(item.id) }"
|
|
|
|
:style="{ backgroundImage: back_change(item.id) }"
|
|
|
|
></div>
|
|
|
|
></div>
|
|
|
|
<div class="box_item_bgc"></div>
|
|
|
|
<div class="box_item_bgc"></div>
|
|
|
|
<div class="box_item_title" @click="turn(item.route)">
|
|
|
|
<div class="box_item_title">
|
|
|
|
{{ item.name }}
|
|
|
|
{{ item.name }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="acc">
|
|
|
|
|
|
|
|
<a href="http://50.144.45.53:5050/install.html" target="_Blank"
|
|
|
|
|
|
|
|
>江苏公安安全浏览器
|
|
|
|
|
|
|
|
浏览器下载地址:http://50.144.45.53:5050/install.html
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -56,29 +68,34 @@ export default {
|
|
|
|
//盒子循环数组
|
|
|
|
//盒子循环数组
|
|
|
|
roll_list: [
|
|
|
|
roll_list: [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
id: 1,
|
|
|
|
name: '射阳融合应用平台',
|
|
|
|
name: '射阳融合应用平台',
|
|
|
|
route: '/hunting'
|
|
|
|
url: 'http://50.146.63.18/sz/qbpt/index/loginSys.xhtml'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '2',
|
|
|
|
id: 2,
|
|
|
|
name: '盐城市感知综合 应用平台'
|
|
|
|
name: '盐城市感知综合 应用平台',
|
|
|
|
|
|
|
|
url: 'http://50.144.13.226:8080/ycgz/login/index.xhtml'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '3',
|
|
|
|
id: 3,
|
|
|
|
name: '射阳感知数据实战 应用平台'
|
|
|
|
name: '射阳感知数据实战 应用平台',
|
|
|
|
|
|
|
|
url: 'http://50.146.63.33/#/login'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '4',
|
|
|
|
id: 4,
|
|
|
|
name: '警网通平台'
|
|
|
|
name: '警网通平台',
|
|
|
|
|
|
|
|
url: 'http://50.144.13.62/login!input.action'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '5',
|
|
|
|
id: 5,
|
|
|
|
name: '公安网"云搜索"'
|
|
|
|
name: '公安网"云搜索"',
|
|
|
|
|
|
|
|
url: 'https://ys.zyfw.ga/'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
id: '6',
|
|
|
|
id: 6,
|
|
|
|
name: '省厅云智达'
|
|
|
|
name: '省厅云智达',
|
|
|
|
|
|
|
|
url: 'http://sjzxfw.kx.js'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -94,27 +111,31 @@ export default {
|
|
|
|
deleteto() {
|
|
|
|
deleteto() {
|
|
|
|
this.$router.go(-1)
|
|
|
|
this.$router.go(-1)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
timeStart() {
|
|
|
|
timeStart() {
|
|
|
|
this.timer = setInterval(() => {
|
|
|
|
this.timer = setInterval(() => {
|
|
|
|
this.timeArr = dateFormat(new Date())
|
|
|
|
this.timeArr = dateFormat(new Date())
|
|
|
|
// console.log(this.timeArr)
|
|
|
|
// console.log(this.timeArr)
|
|
|
|
}, 1000)
|
|
|
|
}, 1000)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
turn(url) {
|
|
|
|
|
|
|
|
window.open(url, '_blank')
|
|
|
|
|
|
|
|
},
|
|
|
|
back_change(id) {
|
|
|
|
back_change(id) {
|
|
|
|
console.log(id, 'lll')
|
|
|
|
console.log(id, 'lll')
|
|
|
|
switch (id) {
|
|
|
|
switch (id) {
|
|
|
|
case '1':
|
|
|
|
case 1:
|
|
|
|
return `url(${require('@/assets//utils-hza/04.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/04.png')})`
|
|
|
|
case '2':
|
|
|
|
case 2:
|
|
|
|
return `url(${require('@/assets//utils-hza/06.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/06.png')})`
|
|
|
|
case '3':
|
|
|
|
case 3:
|
|
|
|
return `url(${require('@/assets//utils-hza/03.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/03.png')})`
|
|
|
|
case '4':
|
|
|
|
case 4:
|
|
|
|
return `url(${require('@/assets//utils-hza/02.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/02.png')})`
|
|
|
|
case '5':
|
|
|
|
case 5:
|
|
|
|
return `url(${require('@/assets//utils-hza/01.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/01.png')})`
|
|
|
|
case '6':
|
|
|
|
case 6:
|
|
|
|
return `url(${require('@/assets//utils-hza/05.png')})`
|
|
|
|
return `url(${require('@/assets/utils-hza/05.png')})`
|
|
|
|
// case '7':
|
|
|
|
// case '7':
|
|
|
|
// return `url(${require('@/assets/building-picture-hza/icon1.png')})`
|
|
|
|
// return `url(${require('@/assets/building-picture-hza/icon1.png')})`
|
|
|
|
// case '8':
|
|
|
|
// case '8':
|
|
|
@ -128,9 +149,6 @@ export default {
|
|
|
|
// case '12':
|
|
|
|
// case '12':
|
|
|
|
// return `url(${require('@/assets/building-picture-hza/icon1.png')})`
|
|
|
|
// return `url(${require('@/assets/building-picture-hza/icon1.png')})`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
turn(path) {
|
|
|
|
|
|
|
|
this.$router.push(path)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -270,6 +288,17 @@ export default {
|
|
|
|
// background-size: 100% 100%;
|
|
|
|
// background-size: 100% 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.acc {
|
|
|
|
|
|
|
|
width: 30vw;
|
|
|
|
|
|
|
|
height: 5vh;
|
|
|
|
|
|
|
|
// background-color: #fff;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
bottom: 7vh;
|
|
|
|
|
|
|
|
left: 10vw;
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
.box_body {
|
|
|
|
.box_body {
|
|
|
|
width: 95vw;
|
|
|
|
width: 95vw;
|
|
|
|
height: 85vh;
|
|
|
|
height: 85vh;
|
|
|
@ -311,12 +340,19 @@ export default {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 5vh;
|
|
|
|
margin-bottom: 5vh;
|
|
|
|
|
|
|
|
.lianjie {
|
|
|
|
|
|
|
|
width: 19vw;
|
|
|
|
|
|
|
|
height: 14vh;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
// background-color: #fff;
|
|
|
|
|
|
|
|
}
|
|
|
|
.box_item_icon {
|
|
|
|
.box_item_icon {
|
|
|
|
width: 4vw;
|
|
|
|
width: 4vw;
|
|
|
|
height: 8vh;
|
|
|
|
height: 8vh;
|
|
|
|
margin-left: 2.5vw;
|
|
|
|
margin-left: 2.5vw;
|
|
|
|
margin-top: 2vh;
|
|
|
|
margin-top: 2vh;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
|
|
|
|
// background-color: pink;
|
|
|
|
// background-color: pink;
|
|
|
|
z-index: 3;
|
|
|
|
z-index: 3;
|
|
|
|
// background-color: pink;
|
|
|
|
// background-color: pink;
|
|
|
|