Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
邱骏
6 years ago
Commit
a8e0a87aae650646ba1889b89d54870a5eaa3bc5
1 parent
e8ad0bb2
判断chatMessage的type=11的时候不处理
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
public/js/service/client.page.js
public/js/service/client.page.js
View file @
a8e0a87
...
...
@@ -546,12 +546,14 @@ function _loadPage() {
switch
(
item
.
type
)
{
case
allRTs
.
CU_SEND
:
dom
+=
cusTpl
({
userHead
:
item
.
userHead
,
userName
:
item
.
userName
,
sendTimeShort
:
item
.
sendTimeLong
,
newContent
:
item
.
chatMessage
.
newContent
});
if
(
item
.
chatMessage
.
type
!==
11
)
{
dom
+=
cusTpl
({
userHead
:
item
.
userHead
,
userName
:
item
.
userName
,
sendTimeShort
:
item
.
sendTimeLong
,
newContent
:
item
.
chatMessage
.
newContent
});
}
break
;
case
allRTs
.
ROBOT_SEND
:
...
...
Please
register
or
login
to post a comment