去回答
This commit is contained in:
27
src/project/fd/AppAnswer/answerAdd.vue
Normal file
27
src/project/fd/AppAnswer/answerAdd.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="answerAdd">
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "answerAdd",
|
||||
appName: "进行回答",
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
},
|
||||
onShow() {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.answerAdd {
|
||||
|
||||
}
|
||||
</style>
|
||||
@@ -11,7 +11,16 @@
|
||||
<div class="right col-999">12-30 12:23:54</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<u-parse :html="info.content"></u-parse>
|
||||
极目新闻消息,据韩国《中央日报》报道,当地时间1月3日,韩国在对来自中国的入境者实施高强度防疫措施两天后,
|
||||
该国疾病预防控制中心运营的新冠信息管理系统出现错误,无法将中国入境者的信息传递给各地政府。
|
||||
韩国仁川国际机场对中国游客进行检测(来源:韩联社)
|
||||
据韩国疾病控制与预防中心和首尔市政府称,从3日上午开始,新冠信息管理系统出现错误,因此,本应传达给全国市、县、区公共卫生部门的中国入境者信息无法送达。
|
||||
有卫生部门人士表示:“疾病预防控制中心表示,下午2点左右系统将修复并恢复运行,但截止下午2时30分,还是没有恢复。”
|
||||
</div>
|
||||
|
||||
<div class="btn_box">
|
||||
<div class="del" @click="deleteBtn">删除</div>
|
||||
<div class="edit" @click="editBtn">修改</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -19,11 +28,19 @@
|
||||
<script>
|
||||
export default {
|
||||
name: "answerDetail",
|
||||
appName: "Ta的回答",
|
||||
data() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
deleteBtn() {
|
||||
this.$confirm('确定要删除该回答吗?').then(()=> {
|
||||
|
||||
})
|
||||
},
|
||||
editBtn() {
|
||||
uni.navigateTo({url: './'})
|
||||
}
|
||||
},
|
||||
onShow() {},
|
||||
|
||||
@@ -58,10 +75,38 @@ export default {
|
||||
.content{
|
||||
width: 100%;
|
||||
word-break: break-all;
|
||||
font-size: 36px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
line-height: 64px;
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -16,22 +16,21 @@
|
||||
</div>
|
||||
<div class="right">12-30 12:23:54</div>
|
||||
</div>
|
||||
<div class="card_body">
|
||||
<div class="card_body" @click="toDetail">
|
||||
<div class="card_content">
|
||||
据韩国《中央日报》报道,当地时间1月3日,韩国在对
|
||||
中国的入境者实施高强度防疫措施两天后,该国疾病预防控制中心运营的新冠信息管理系统出现错误,无法将传.
|
||||
据韩国《中央日报》报道,当地时间1月3日,韩国在对中国的入境者实施高强度防疫措施中国的入境者实施高
|
||||
强度防疫措施两天后韩国在对中国的入境者实施高强度防疫措施中国的入境者实施高强度防疫措施两天后
|
||||
<div>全文</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card_btn">
|
||||
<div>修改</div>
|
||||
<div>删除</div>
|
||||
<div @click="toEdit">修改</div>
|
||||
<div @click="deleteBtn">删除</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="btn" @click="toDetail">去回答</div>
|
||||
<div class="btn" @click="toAdd">去回答</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -46,7 +45,12 @@ export default {
|
||||
methods: {
|
||||
toDetail() {
|
||||
uni.navigateTo({url: `./answerDetail`})
|
||||
}
|
||||
},
|
||||
toEdit() {},
|
||||
deleteBtn() {},
|
||||
toAdd() {
|
||||
uni.navigateTo({url: `./answerAdd`})
|
||||
},
|
||||
},
|
||||
onShow() {
|
||||
|
||||
@@ -111,7 +115,6 @@ export default {
|
||||
border-bottom: 2px solid #E4E5E6;
|
||||
|
||||
.card_content {
|
||||
// position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
@@ -119,27 +122,6 @@ export default {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 5;
|
||||
|
||||
// &::after {
|
||||
// position: absolute;
|
||||
// position: relative;
|
||||
// right: 0;
|
||||
// bottom: 0;
|
||||
// content: "全文";
|
||||
// color: #3975C6;
|
||||
// z-index: 999;
|
||||
// margin-left: 8px;
|
||||
// }
|
||||
|
||||
// .all_btn {
|
||||
// position: relative;
|
||||
// display: inline-block;
|
||||
// height: 16px;
|
||||
// width: 16px;
|
||||
// background-size: cover;
|
||||
// margin-left: 2px;
|
||||
// z-index: 999;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user