123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <view class="content">
- <view v-for="(value, index) in list">
- <view class="item u-border-bottom" hover-class="message-hover-class">
- <img-cache :src="value.avatar || value.imgUrl"></img-cache>
- <view class="right title-wrap">
- <view class="right_top">
- <view class="right_top_name u-line-1">{{ value.nickName }}</view>
- <view class="right_top_time ">{{value.lastOperTime | format}}</view>
- </view>
- <view class="right_btm">
- <view class="u-line-1" v-show="value.status==0">
- <u-button @click="handleOn(value.id)" type="success" size="mini">同意</u-button>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- list: [],
- $url:''
- };
- },
- onLoad() {
- },
- onShow() {
- this.getNewFriend(false)
- },
- onPullDownRefresh() {
- this.getNewFriend(true)
- },
- methods: {
- handleOn(fid){
- console.log("点击同意")
- this.$socket.AcceptFriendRequest(fid,this.userData.user.operId,res=>{
- uni.showToast({
- title: '添加好友',
- duration: 2000
- });
- })
- },
- getNewFriend(freshFlag) {
- this.$socket.queryFriendRequestList(this.userData.user.operId, res => {
- this.list = res.userList;
- if(freshFlag){
- uni.stopPullDownRefresh();
- }
- });
- }
- },
- filters: {
- format: function (e) {
- // 获取js 时间戳
- let time = new Date().getTime();
- // 去掉 js 时间戳后三位
- time = parseInt((time - e) / 1000);
- // 存储转换值
- let s;
- if (time < 60 * 10) {
- // 十分钟内
- return '刚刚';
- } else if (time < 60 * 60 && time >= 60 * 10) {
- // 超过十分钟少于1小时
- s = Math.floor(time / 60);
- return s + '分钟前';
- } else if (time < 60 * 60 * 24 && time >= 60 * 60) {
- // 超过1小时少于24小时
- s = Math.floor(time / 60 / 60);
- return s + '小时前';
- } else if (time < 60 * 60 * 24 * 3 && time >= 60 * 60 * 24) {
- // 超过1天少于3天内
- s = Math.floor(time / 60 / 60 / 24);
- return s + '天前';
- } else {
- // 超过3天
- var date = new Date(e);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
- var Y = date.getFullYear() + '-';
- var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
- var D = date.getDate() + ' ';
- var h = date.getHours() + ':';
- var m = date.getMinutes() + ':';
- var ss = date.getSeconds();
- return h+m+ss;
- }
- }
- },
- };
- </script>
- <style lang="scss">
- .content{
- background-color: #fff;
- .item {
- width: 750rpx;
- height: 140rpx;
- display: flex;
- align-items: center;
- image {
- width: 96rpx;
- height: 96rpx;
- margin: 20rpx;
- border-radius: 12rpx;
- flex: 0 0 96rpx;
- }
- .right {
- overflow: hidden;
- flex: 1 0;
- padding: 20rpx 20rpx 40rpx 0;
- &_top {
- display: flex;
- justify-content: space-between;
- &_name {
- font-size: 28rpx;
- font-weight: 800;
- color: $u-main-color;
- flex: 0 0 450rpx;
- overflow: hidden;
- }
- &_time {
- font-size: 22rpx;
- color: $u-light-color;
- }
- }
- &_btm {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 22rpx;
- color: $u-tips-color;
- }
- }
- }
- .bg_view {
- background-color: #fafafa;
- }
- .slot-wrap {
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- }
- }
- </style>
|