详情 结果
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="detail">
|
<div class="detail">
|
||||||
详情
|
<div class="userInfo">
|
||||||
|
<div class="user-phone"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -10,12 +12,23 @@ export default {
|
|||||||
return {
|
return {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods() {
|
||||||
|
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
document.title = "风险预警"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.detail {
|
.detail {
|
||||||
|
.userInfo {
|
||||||
|
.user-phone {
|
||||||
|
height: 136px;
|
||||||
|
line-height: 136px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
BIN
src/apps/AppWarningMonitoring/img/phone.png
Normal file
BIN
src/apps/AppWarningMonitoring/img/phone.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
BIN
src/apps/AppWarningMonitoring/img/user.png
Normal file
BIN
src/apps/AppWarningMonitoring/img/user.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 946 B |
21
src/apps/AppWarningMonitoring/result.vue
Normal file
21
src/apps/AppWarningMonitoring/result.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<div class="result"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
onShow() {
|
||||||
|
document.title = "处理结果"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.result {
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</AiTopFixed>
|
</AiTopFixed>
|
||||||
<div class="card-list">
|
<div class="card-list">
|
||||||
<div class="item" @click="uni.navigateTo('./detail')">
|
<div class="item" @click="toDetail">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<div class="name-type">
|
<div class="name-type">
|
||||||
<span class="name">李毅</span>
|
<span class="name">李毅</span>
|
||||||
@@ -53,6 +53,9 @@ export default {
|
|||||||
this.areaId = v
|
this.areaId = v
|
||||||
this.current = 1
|
this.current = 1
|
||||||
},
|
},
|
||||||
|
toDetail() {
|
||||||
|
uni.navigateTo({url:'./detail'})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
document.title = "风险监控"
|
document.title = "风险监控"
|
||||||
|
|||||||
Reference in New Issue
Block a user