Files
dvcp_v2_wxcp_app/src/apps/AppWarningMonitoring/detail.vue

34 lines
415 B
Vue
Raw Normal View History

2022-03-24 10:40:30 +08:00
<template>
<div class="detail">
2022-03-24 11:02:59 +08:00
<div class="userInfo">
<div class="user-phone"></div>
</div>
2022-03-24 10:40:30 +08:00
</div>
</template>
<script>
export default {
data() {
return {
}
2022-03-24 11:02:59 +08:00
},
methods() {
},
onShow() {
document.title = "风险预警"
2022-03-24 10:40:30 +08:00
}
}
</script>
<style lang="scss" scoped>
.detail {
2022-03-24 11:02:59 +08:00
.userInfo {
.user-phone {
height: 136px;
line-height: 136px;
}
}
2022-03-24 10:40:30 +08:00
}
</style>