Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
LuJin-Im
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yangzhaojun
LuJin-Im
Commits
3c6484bf
Commit
3c6484bf
authored
Jul 03, 2018
by
hanshuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REMOVE
parent
3bc16576
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
26 deletions
+23
-26
LICENSE
LICENSE
+1
-1
qiqiim-server.iml
qiqiim-server.iml
+2
-2
db.properties
src/main/resources/db.properties
+2
-2
layim.jsp
src/main/webapp/WEB-INF/page/layim.jsp
+8
-8
layimmobile.jsp
src/main/webapp/WEB-INF/page/layimmobile.jsp
+8
-8
layim.js
src/main/webapp/layui/lay/modules/layim.js
+1
-1
login.jsp
src/main/webapp/login.jsp
+1
-4
No files found.
LICENSE
View file @
3c6484bf
...
...
@@ -176,7 +176,7 @@ recommend that a file or class name and description of purpose be included on
the same "printed page" as the copyright notice for easier identification within
third-party archives.
Copyright 2017
琪琪IM
Copyright 2017
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
...
...
qiqiim-server.iml
View file @
3c6484bf
...
...
@@ -49,7 +49,7 @@
<orderEntry
type=
"module-library"
>
<library
name=
"Maven: com.alibaba:jconsole:1.8.0"
>
<CLASSES>
<root
url=
"jar://
C:/Program Files/Java/jdk1.8.0_16
1/lib/jconsole.jar!/"
/>
<root
url=
"jar://
D:/Java/jdk1.8.0_17
1/lib/jconsole.jar!/"
/>
</CLASSES>
<JAVADOC
/>
<SOURCES
/>
...
...
@@ -58,7 +58,7 @@
<orderEntry
type=
"module-library"
>
<library
name=
"Maven: com.alibaba:tools:1.8.0"
>
<CLASSES>
<root
url=
"jar://
C:/Program Files/Java/jdk1.8.0_16
1/lib/tools.jar!/"
/>
<root
url=
"jar://
D:/Java/jdk1.8.0_17
1/lib/tools.jar!/"
/>
</CLASSES>
<JAVADOC
/>
<SOURCES
/>
...
...
src/main/resources/db.properties
View file @
3c6484bf
jdbc.url
=
jdbc:mysql://127.0.0.1:3306/qiqiim?
allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
jdbc.url
=
jdbc:mysql://127.0.0.1:3306/qiqiim?
useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
jdbc.username
=
root
jdbc.password
=
root
jdbc.password
=
123456
jdbc.initialSize
=
5
jdbc.maxActive
=
30
...
...
src/main/webapp/WEB-INF/page/layim.jsp
View file @
3c6484bf
...
...
@@ -176,14 +176,14 @@
layim
.
on
(
'ready'
,
function
(
res
){
lm
=
layui
.
layim
;
//添加客服
layim
.
addList
({
type
:
'friend'
//列表类型,只支持friend和group两种
,
avatar
:
"layui/images/0.jpg"
//好友头像
,
username
:
'琪琪IM智能客服'
//好友昵称
,
groupid
:
1
//所在的分组id
,
id
:
"0"
//好友id
,
sign
:
"有什么问题尽管问我把"
//好友签名
});
//
layim.addList({
//
type: 'friend' //列表类型,只支持friend和group两种
//
,avatar: "layui/images/0.jpg" //好友头像
//
,username: '琪琪IM智能客服' //好友昵称
//
,groupid: 1 //所在的分组id
//
,id: "0" //好友id
//
,sign: "有什么问题尽管问我把" //好友签名
// });
layim
.
msgbox
(
2
);
//模拟消息盒子有新消息,实际使用时,一般是动态获得
//取得离线消息
showOfflineMsg
(
layim
)
...
...
src/main/webapp/WEB-INF/page/layimmobile.jsp
View file @
3c6484bf
...
...
@@ -172,14 +172,14 @@ layui.config({
layim
.
on
(
'ready'
,
function
(
res
){
lm
=
mobile
.
layim
;
//添加客服
lm
.
addList
({
type
:
'friend'
//列表类型,只支持friend和group两种
,
avatar
:
"layui/images/0.jpg"
//好友头像
,
username
:
'琪琪IM智能客服'
//好友昵称
,
groupid
:
1
//所在的分组id
,
id
:
"0"
//好友id
,
sign
:
"有什么问题尽管问我把"
//好友签名
});
//
lm.addList({
//
type: 'friend' //列表类型,只支持friend和group两种
//
,avatar: "layui/images/0.jpg" //好友头像
//
,username: '琪琪IM智能客服' //好友昵称
//
,groupid: 1 //所在的分组id
//
,id: "0" //好友id
//
,sign: "有什么问题尽管问我把" //好友签名
// });
//取得离线消息
showOfflineMsg
(
layim
)
...
...
src/main/webapp/layui/lay/modules/layim.js
View file @
3c6484bf
This diff is collapsed.
Click to expand it.
src/main/webapp/login.jsp
View file @
3c6484bf
...
...
@@ -64,10 +64,7 @@
<label
class=
"layui-form-label"
>
所在部门
</label>
<div
class=
"layui-input-block"
>
<select
name=
"userInfo.deptid"
lay-verify=
"required"
>
<option
value=
"1"
>
总经办
</option>
<option
value=
"2"
>
开发一部
</option>
<option
value=
"3"
>
开发二部
</option>
<option
value=
"4"
>
财务部
</option>
<option
value=
"1"
>
客服
</option>
</select>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment