2023-11-05 15:34:42 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
|
|
|
|
|
<view class="content-middle">
|
|
|
|
|
|
|
|
|
|
<view class="content-middle-three">
|
|
|
|
|
<view class="middle-three">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="middle-threeb" style="margin-bottom: 20rpx;">
|
|
|
|
|
|
2023-11-20 18:23:46 +08:00
|
|
|
|
<!-- <view class="middle-threeb-title">
|
|
|
|
|
<!-- <view class="title">
|
2023-11-05 15:34:42 +08:00
|
|
|
|
{{list.send_time}}
|
2023-11-20 18:23:46 +08:00
|
|
|
|
</view> -->
|
2023-11-05 15:34:42 +08:00
|
|
|
|
<!-- <view class="title-status">
|
|
|
|
|
{{list.send_time}}
|
|
|
|
|
</view> -->
|
2023-11-20 18:23:46 +08:00
|
|
|
|
<!-- </view> -->
|
2023-11-05 15:34:42 +08:00
|
|
|
|
|
|
|
|
|
<view class="middle-threeba">
|
|
|
|
|
<view class="middle-threeb-a">
|
|
|
|
|
|
|
|
|
|
<view class="threeb-a-b">
|
|
|
|
|
|
|
|
|
|
<view class="name">消息:<text>{{list.content}}</text></view>
|
|
|
|
|
<view class="name">用户:<text>{{list.users}}</text></view>
|
|
|
|
|
<view class="name">发送时间:<text>{{list.send_time}}</text></view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<u-empty v-if="list.length==0" text="没有信息" icon="/static/empty/data.png"></u-empty>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
|
|
|
|
|
appmessageread
|
|
|
|
|
} from '@/api/oa.js'
|
|
|
|
|
import {
|
|
|
|
|
HTTP_REQUEST_URL
|
|
|
|
|
} from '@/config/app.js'
|
|
|
|
|
import {
|
|
|
|
|
Toast
|
|
|
|
|
} from '@/libs/uniApi.js'
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
keyword: '',
|
|
|
|
|
list: {},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
onLoad(option) {
|
|
|
|
|
|
|
|
|
|
this.getDocumentList(option.type)
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
//获取任务
|
|
|
|
|
async getDocumentList(id) {
|
|
|
|
|
|
|
|
|
|
let res = await appmessageread({
|
|
|
|
|
id: id
|
|
|
|
|
|
|
|
|
|
})
|
2023-11-09 09:44:44 +08:00
|
|
|
|
|
2023-11-05 15:34:42 +08:00
|
|
|
|
this.list = res.data
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
page {
|
|
|
|
|
padding-bottom: 88rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content-middle {
|
|
|
|
|
.content-middle-one {
|
|
|
|
|
.middle-one {
|
|
|
|
|
display: flex;
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
padding: 28rpx 18rpx;
|
|
|
|
|
|
|
|
|
|
.search {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #666666;
|
|
|
|
|
width: 149rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
text-align: center;
|
|
|
|
|
border-radius: 35rpx 35rpx;
|
|
|
|
|
border: 2rpx solid #E6E5E5;
|
|
|
|
|
margin-left: 18rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-middle-search {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 527rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
padding-left: 30rpx;
|
|
|
|
|
background: #F7F7F7;
|
|
|
|
|
border-radius: 35rpx 35rpx;
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
width: 527rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
padding-left: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.placeholder {
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #999999;
|
|
|
|
|
padding-left: 30rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-middle-sai {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 149rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 35rpx 35rpx;
|
|
|
|
|
border: 2rpx solid #E6E5E5;
|
|
|
|
|
margin-left: 18rpx;
|
|
|
|
|
|
|
|
|
|
.content-middle-saia {
|
|
|
|
|
|
|
|
|
|
width: 29rpx;
|
|
|
|
|
height: 28rpx;
|
|
|
|
|
margin-left: 25rpx;
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-middle-saib {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-middle-search-detail {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
|
|
|
|
|
:nth-last-child(1) {
|
|
|
|
|
border: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-detail {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding-right: 195rpx;
|
|
|
|
|
padding: 18rpx 53rpx;
|
|
|
|
|
border-bottom: 2rpx solid #E6E6E6;
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.search-detail-one {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.content-middle-three {
|
|
|
|
|
margin-top: 26rpx;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.middle-three {
|
|
|
|
|
.middle-threea {
|
|
|
|
|
font-size: 35rpx;
|
|
|
|
|
font-family: PingFang SC-Bold, PingFang SC;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #3274F9;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.middle-threeb {
|
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
|
padding: 28rpx 28rpx;
|
|
|
|
|
|
|
|
|
|
.middle-threeb-title {
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
line-height: 98rpx;
|
|
|
|
|
border-bottom: 1px solid #CCCCCC;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-family: PingFang SC-Medium, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-status {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-family: PingFang SC-Medium, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.middle-threeba {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.middle-threeb-a {
|
|
|
|
|
|
|
|
|
|
.threeb-a-b {
|
|
|
|
|
view {
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.middle-edit {
|
|
|
|
|
width: 645rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
background: #e6e5d9;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #000;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.middle-delete {
|
|
|
|
|
width: 645rpx;
|
|
|
|
|
height: 63rpx;
|
|
|
|
|
line-height: 63rpx;
|
|
|
|
|
background: #F02828;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name {
|
2023-11-20 18:23:46 +08:00
|
|
|
|
font-size: 25rpx;
|
2023-11-05 15:34:42 +08:00
|
|
|
|
|
|
|
|
|
font-family: PingFang SC-Bold, PingFang SC;
|
2023-11-20 18:23:46 +08:00
|
|
|
|
// font-weight: bold;
|
2023-11-05 15:34:42 +08:00
|
|
|
|
color: #333333;
|
|
|
|
|
|
|
|
|
|
text {
|
2023-11-20 18:23:46 +08:00
|
|
|
|
font-size: 35rpx;
|
2023-11-05 15:34:42 +08:00
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
2023-11-20 18:23:46 +08:00
|
|
|
|
color: #333333;
|
2023-11-05 15:34:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.achor {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #999999;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.middle-threeb-b {
|
|
|
|
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content-middle-two {
|
|
|
|
|
width: 386rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
line-height: 70rpx;
|
|
|
|
|
background: #3274F9;
|
|
|
|
|
border-radius: 60rpx 60rpx;
|
|
|
|
|
z-index: 99999;
|
|
|
|
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-family: PingFang SC-Regular, PingFang SC;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
display: flex;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 25rpx;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.middle-two-img {
|
|
|
|
|
width: 23rpx;
|
|
|
|
|
height: 23rpx;
|
|
|
|
|
margin-left: 52rpx;
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|