Files
dvcp_v2_wechat_app/src/mods/work/AppHelpDeclaration/progress.vue
shijingjing 0faa07e325 帮扶申报
2022-05-13 15:43:25 +08:00

89 lines
1.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="progress">
<div class="card_list">
<div class="card" @click="$linkTo(`./details`)">
<div class="top">
<div class="title">住房的部分承重结构载重无法满足日常需求或局部存在安全隐患住房的部分承重</div>
<div class="time">2021-10-10 10:10:10</div>
</div>
<div class="bottom">
<span></span><span>待处理</span>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "progress",
appName: "进度查询",
data() {
return {
list: [],
current: 1,
}
},
onShow() {
},
methods: {}
}
</script>
<style lang="scss" scoped>
.progress {
.card_list {
padding: 24px 32px;
box-sizing: border-box;
.card {
background: #FFFFFF;
box-shadow: 0px 0px 8px 0px #00000005;
border-radius: 16px;
.top {
padding: 32px;
box-sizing: border-box;
border-bottom: 2px solid #DDDDDD;
.title {
color: #333333;
font-size: 32px;
font-weight: 600;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}
.time {
margin-top: 32px;
color: #999999;
font-size: 26px;
}
}
.bottom {
padding: 32px;
box-sizing: border-box;
span:first-child {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
margin-right: 8px;
background: #FF4466;
}
}
.status0 {
color: #FF883C
}
.status1 {
color: #1AAAFF
}
.status2 {
color: #42D784
}
.status3 {
color: #FF4466
}
}
}
}
</style>