Files
dvcp_v2_wxcp_app/src/project/fd/AppAnswer/answerDetail.vue

113 lines
2.6 KiB
Vue
Raw Normal View History

2023-01-10 10:02:16 +08:00
<template>
<div class="answerDetail">
<div class="head">
<div class="left">
<img src="./img/avatar.png" alt="">
<div class="head_avtar">
<h4></h4>
<div class="col-999">产品部</div>
</div>
</div>
<div class="right col-999">12-30 12:23:54</div>
</div>
<div class="content">
2023-01-10 11:35:04 +08:00
极目新闻消息据韩国中央日报报道当地时间1月3日韩国在对来自中国的入境者实施高强度防疫措施两天后
该国疾病预防控制中心运营的新冠信息管理系统出现错误无法将中国入境者的信息传递给各地政府
韩国仁川国际机场对中国游客进行检测来源韩联社
据韩国疾病控制与预防中心和首尔市政府称从3日上午开始新冠信息管理系统出现错误因此本应传达给全国市区公共卫生部门的中国入境者信息无法送达
有卫生部门人士表示疾病预防控制中心表示下午2点左右系统将修复并恢复运行但截止下午2时30分还是没有恢复
</div>
<div class="btn_box">
<div class="del" @click="deleteBtn">删除</div>
<div class="edit" @click="editBtn">修改</div>
2023-01-10 10:02:16 +08:00
</div>
</div>
</template>
<script>
export default {
name: "answerDetail",
2023-01-10 11:35:04 +08:00
appName: "Ta的回答",
2023-01-10 10:02:16 +08:00
data() {
},
methods: {
2023-01-10 11:35:04 +08:00
deleteBtn() {
this.$confirm('确定要删除该回答吗?').then(()=> {
2023-01-10 10:02:16 +08:00
2023-01-10 11:35:04 +08:00
})
},
editBtn() {
uni.navigateTo({url: './'})
}
2023-01-10 10:02:16 +08:00
},
onShow() {},
}
</script>
<style lang="scss" scoped>
.answerDetail {
padding: 24px 32px 120px 32px;
box-sizing: border-box;
background: #FFF;
.head {
display: flex;
justify-content: space-between;
.left {
display: flex;
img {
width: 80px;
height: 80px;
margin-right: 16px;
}
.head_avtar {
width: calc(100% - 96px);
}
}
.col-999 {
color: #999999;;
}
}
.content{
width: 100%;
word-break: break-all;
2023-01-10 11:35:04 +08:00
font-size: 28px;
2023-01-10 10:02:16 +08:00
color: #333;
2023-01-10 11:35:04 +08:00
line-height: 44px;
margin-top: 24px;
}
.btn_box {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 120px;
padding: 16px 32px;
box-sizing: border-box;
display: flex;
div {
flex: 1;
border-radius: 44px;
text-align: center;
line-height: 88px;
font-size: 34px;
}
.del {
margin-right: 30px;
border: 1px solid #E23C3C;
color: #E23C3C;
}
.edit {
border: 1px solid #3975C6;
color: #3975C6;
}
2023-01-10 10:02:16 +08:00
}
}
</style>