新版交易所前段管理后台
1
PC-20250623MANY\Administrator
2025-07-06 0363875eb333c67529c8b27221a6da45d1a50bfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<template>
  <div id="panel-header" class="header">
    <div class="module1 left-module left-1">
 
      <div style="width: 100%; height: 100%;display: flex;justify-content: space-between;">
        <div class="module" style="">
          <div>
            <span class="nickname">{{ params.username }}</span>
          </div>
          
          <div>
            <span class="nickname">{{ params.remarks ? '(' + params.remarks + ')' : '' }}</span>
          </div>
          
          
          <div class="pointer" style="height: auto;padding-left: 10px;" @click="editFriendRemarks(params)">
            <img src="~@/assets/img/ri_delete-bin-3-line.png" width="24px" height="25px"/>
          </div>
 
          <div>
            <span class="nickname">设置备注</span>
          </div>
 
        </div>
 
        <div class="module" style="height: auto;display: flex;justify-content: flex-end;">
          <div class="pointer" style="height: auto;margin-right: 40px;" @click="deleteChat(params)">
            <i class="el-icon-delete"></i>
          </div>
          <div class="pointer" style="height: auto;margin-right: 20px;" @click="close()">
            <img src="~@/assets/img/clear.png" width="28px" height="28px"/>
          </div>       
        </div>
      </div>
 
 
      
      
 
    </div>
 
    <div class="module left-module left-2">
      <span class="text1">UID:{{ params.usercode }}</span>
      <span class="text1">账户类型:<span style="color:#38E1A5;">{{ getRoleName(params.role_name) }}</span></span>
      <span class="text1">推荐人:{{ params.recom_parent_name }}</span>
      <span class="text1">登录IP:{{ params.loginIp }}</span>
      <span class="text1">注册时间:{{ params.create_time }}</span>
      <span class="text1">最后登录时间:{{ params.last_login_time }}</span>
    </div>
  </div>
</template>
<script>
 
import {
  createNewAdminOnlineChatAction,
  userlistNewAdminOnlineChatAction,
  delNewAdminOnlineChatAction,
  resetRemarksNewAdminOnlineChatAction,
} from '@/api/chat'
 
export default {
  props: {
    data: {
      type: Object,
      default: () => {
        return {
          role_name: "MEMBER",
          recom_parent_name: null,
          last_login_time: null,
          create_time: "2023-01-25 22:19:34",
          loginIp: null,
          partyId: "ff80808185cb47530185e94c5bae0044",
          usercode: "3987564",
          remarks: null,
          username: "test001"
        }
      },
    },
    online: {
      type: Boolean,
      default: false,
    },
    keyboard: {
      type: [Boolean, Number],
      default: false,
    },
  },
  data() {
    return {
      params: {
        role_name: "MEMBER",
        recom_parent_name: null,
        last_login_time: null,
        create_time: "2023-01-25 22:19:34",
        loginIp: null,
        partyId: "ff80808185cb47530185e94c5bae0044",
        usercode: "3987564",
        remarks: null,
        username: "test001"
      }
    }
  },
  created() {
  },
  watch: {
    data(value) {
    },
    online(value) {
      this.setOnlineStatus(value)
    },
    keyboard(value) {
      this.isKeyboard = value
      setTimeout(() => {
        this.isKeyboard = false
      }, 2000)
    },
  },
  methods: {
    setOnlineStatus(value) {
      this.isOnline = value
    },
    setGroupNum(value) {
      this.groupNum = value
    },
    triggerEvent(event_name) {
      this.$emit('event', event_name)
    },
    //选择用户
    selectUser(data){
      this.params = data
    },
    // 修改好友备注信息
    editFriendRemarks(item) {
      let title = `您正在设置【${item.username}】的备注信息`
 
      if (item.remarks) {
        title += `,当前备注为【${item.remarks}】`
      }
 
      this.$prompt(title, '修改备注', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        customClass: 'border-radius0',
        inputPlaceholder: '请设置好友备注信息',
        inputValue: item.remarks ? item.remarks : item.username,
        inputValidator(val) {
          return val == null || val == '' ? '好友备注不能为空' : true
        },
      })
        .then(({ value }) => {
          if (value == item.remarks) {
            return false
          }
 
          resetRemarksNewAdminOnlineChatAction({
            partyid: this.params.partyId,
            remarks: value,
          },(data)=>{
            console.log("res = " + JSON.stringify(data));
            if (data.code == "0") {
              this.triggerEvent({type:"remarks",data:data.data});
              this.$notify({
                title: '成功',
                message: '好友备注修改成功...',
                type: 'success',
              })
              this.params.remarks = data.data;
            } else {
              this.$notify({
                title: '消息',
                message: data.msg,
                type: 'warning',
              })
            }
          })
        })
        .catch(() => {})
    },
    deleteChat(item){
      let title = `移除当前列表后聊天记录不会删除,产生新消息该用户将重新分配给在线客服`
      this.$confirm(title, '是否确认移除?', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          delNewAdminOnlineChatAction({partyId:this.params.partyId},(data)=>{
            if(data.code == 0){
              this.triggerEvent({type:"userlist"});
              this.$message({
                type: 'success',
                message: '删除成功!'
              });
            }else{
              this.$message({
                type: 'info',
                message: data,msg
              }); 
            }
          })
  
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });          
        });
    },
    close(){
      this.$router.push({ name: 'home' })
    },
    getRoleName(name){
      let names = {'MEMBER':'正式账号','GUEST':'演示账号','TEST':'试用账号'};
      return names[name];
    }
  },
}
</script>
<style lang="less" scoped>
 
  .pointer {
    cursor: pointer;
  }
 
  .header{
    // max-width: 1450px;
    // max-width: 1290px;
    width: auto;
    height: 87px;
    background-color: #2E2F33;
    // display: flex;
  }
 
#panel-header {
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid #f5eeee;
  color: #FFFFFF;
 
 
  .module1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
 
  .module {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
 
  .left-1{
    background: linear-gradient(90deg, #121212 0%, #2F3032 51.04%, #6E6F75 100%),
    linear-gradient(0deg, #393939, #393939);
    // width: 1171px;
    height: 55px;
    // top: 204px;
    // left: 720px;
    border-radius: 0px 10px 0px 0px;
 
  }
 
  .left-2{
    background-color: #2E2F33;
    // width: 1171px
    height: 32px;
    // top: 259px
    // left: 720px
 
  }
 
  .left-module {
    padding-right: 0px;
 
    .nickname {
      // overflow: hidden;
      // white-space: nowrap;
      // text-overflow: ellipsis;
      font-family: PingFang SC;
      font-size: 18px;
      font-weight: 500;
      line-height: 25px;
      letter-spacing: 0em;
      text-align: center;
 
      padding-left: 10px;
    }
 
    .text1{
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      font-family: PingFang SC;
      font-size: 12px;
      font-weight: 400;
      line-height: 17px;
      letter-spacing: 0em;
      text-align: center;
 
      font-family: PingFang SC;
      font-size: 12px;
      font-weight: 500;
      line-height: 17px;
      letter-spacing: 0em;
      text-align: center;
 
      padding-left: 10px;
    }
 
  }
 
  .center-module {
    flex-direction: column;
    justify-content: center;
 
    .online {
      color: #cccccc;
      font-weight: 300;
      font-size: 15px;
 
      &.color {
        color: #1890ff;
      }
 
      .online-status {
        position: relative;
        top: -1px;
        display: inline-block;
        width: 6px;
        height: 6px;
        vertical-align: middle;
        border-radius: 50%;
        position: relative;
        background-color: #1890ff;
        margin-right: 5px;
 
        &:after {
          position: absolute;
          top: -1px;
          left: -1px;
          width: 100%;
          height: 100%;
          border: 1px solid #1890ff;
          border-radius: 50%;
          -webkit-animation: antStatusProcessing 1.2s ease-in-out infinite;
          animation: antStatusProcessing 1.2s ease-in-out infinite;
          content: '';
        }
      }
    }
 
    .keyboard-status {
      height: 20px;
      line-height: 18px;
      font-size: 10px;
      animation: inputfade 600ms infinite;
      -webkit-animation: inputfade 600ms infinite;
    }
  }
 
  .right-module {
    display: flex;
    justify-content: flex-end;
    align-items: center;
 
    p {
      cursor: pointer;
      margin: 0 8px;
      font-size: 20px;
      color: #828f95;
      &:active i {
        font-size: 26px;
        transform: scale(1.3);
        transition: ease 0.5s;
        color: red;
      }
    }
  }
}
 
/* css 动画 */
@keyframes inputfade {
  from {
    opacity: 1;
  }
 
  50% {
    opacity: 0.4;
  }
 
  to {
    opacity: 1;
  }
}
 
@-webkit-keyframes inputfade {
  from {
    opacity: 1;
  }
 
  50% {
    opacity: 0.4;
  }
 
  to {
    opacity: 1;
  }
}
 
@-webkit-keyframes antStatusProcessing {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
 
  to {
    -webkit-transform: scale(2.4);
    transform: scale(2.4);
    opacity: 0;
  }
}
 
@keyframes antStatusProcessing {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
 
  to {
    -webkit-transform: scale(2.4);
    transform: scale(2.4);
    opacity: 0;
  }
}
</style>