详情 结果
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
<template>
|
||||
<div class="detail">
|
||||
详情
|
||||
<div class="userInfo">
|
||||
<div class="user-phone"></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -10,12 +12,23 @@ export default {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods() {
|
||||
|
||||
},
|
||||
onShow() {
|
||||
document.title = "风险预警"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.detail {
|
||||
|
||||
.userInfo {
|
||||
.user-phone {
|
||||
height: 136px;
|
||||
line-height: 136px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</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>
|
||||
</AiTopFixed>
|
||||
<div class="card-list">
|
||||
<div class="item" @click="uni.navigateTo('./detail')">
|
||||
<div class="item" @click="toDetail">
|
||||
<div class="top">
|
||||
<div class="name-type">
|
||||
<span class="name">李毅</span>
|
||||
@@ -53,6 +53,9 @@ export default {
|
||||
this.areaId = v
|
||||
this.current = 1
|
||||
},
|
||||
toDetail() {
|
||||
uni.navigateTo({url:'./detail'})
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
document.title = "风险监控"
|
||||
|
||||
Reference in New Issue
Block a user