Files
dvcp_v2_wxcp_app/src/project/fd/AppPointsReview/AppPointsReview.vue

165 lines
4.1 KiB
Vue
Raw Normal View History

2023-03-30 14:28:16 +08:00
<template>
<div class="AppPointsReview">
<AiTopFixed>
<div class="top-search">
<div class="left">
<u-search v-model="keyword" :clearabled="true" placeholder="请输入申请人,审批人" :show-action="false" bg-color="#F5F5F5"
search-icon-color="#999" color="#999" height="58" @search="getListInit" @clear="getListInit">
</u-search>
</div>
</div>
<div class="top-select">
<div class="item">
<span style="color:#999;">日期筛选</span>
<!-- <span v-else>{{ $dict.getLabel('EP_handleType', handleType) }}</span> -->
<u-icon name="arrow-down" color="#666" size="28" style="margin-left: 4px" />
</div>
<div class="item">
<span style="color:#999;">事件类型</span>
<!-- <span v-else>{{ $dict.getLabel('EP_handleType', handleType) }}</span> -->
<u-icon name="arrow-down" color="#666" size="28" style="margin-left: 4px" />
</div>
</div>
</AiTopFixed>
<div class="list-content">
<div class="item">
<div class="title-flex">
<p class="title">事件类型事件类型事件类型事件类型事件类型事件类型</p>
<div class="btn">
<div>推送精选</div>
<p>已推送</p>
</div>
</div>
<div class="user-name">李进放<span>积分+5</span></div>
<div class="time-flex">
<span>审核通过</span>
<span>2023-03-30 09:09</span>
</div>
</div>
<div class="item">
<div class="title-flex">
<p class="title">事件类型事件类型事件类型事件类型事件类型事件类型事件类型事件类型型事件类型事件类型事件类型</p>
</div>
<div class="user-name">李进放<span>积分+5</span></div>
<div class="time-flex">
<span>审核通过</span>
<span>2023-03-30 09:09</span>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "AppPointsReview",
appName: "积分审核",
data() {
return {
keyword: '',
areaId: '',
areaName: '',
};
},
onShow() {
},
methods: {
getListInit() {
},
areaSelect(e) {
this.areaId = e
this.getListInit()
this.getTotal()
},
},
};
</script>
<style lang="scss" scoped>
.AppPointsReview {
height: 100%;
::v-deep .AiTopFixed {
.placeholder {
.content {
padding: 0 !important;
}
}
.fixed {
margin: 0 !important;
.content {
padding: 0 !important;
}
}
}
.top-search {
padding: 20px 32px;
display: flex;
.left {
width: 100%;
}
}
.top-select {
display: flex;
padding: 28px 0;
.item {
flex: 1;
padding: 0 8px;
text-align: center;
span {
display: inline-block;
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 28px;
color: #666;
line-height: 40px;
}
}
}
.list-content {
padding: 32px;
.item {
border-radius: 8px;
padding: 32px;
background-color: #fff;
margin-bottom: 32px;
.title-flex {
display: flex;
.title {
word-break: break-all;
font-size: 30px;
font-weight: 500;
color: #333;
line-height: 34px;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
.btn {
text-align: right;
padding-left: 32px;
div {
width: 150px;
text-align: center;
border-radius: 4px;
line-height: 56px;
background: #1365DD;
color: #fff;
font-size: 28px;
}
p {
margin-top: 8px;
font-size: 28px;
color: #666;
}
}
}
}
}
}
</style>