Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
Project
Project
Details
Activity
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
西魏
cms_sys
Commits
c66c003a
Commit
c66c003a
authored
Jan 25, 2019
by
yinxr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: yinxr <2273460044@qq.com>
parent
450cf6f5
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
161 additions
and
2 deletions
+161
-2
login.ftl
src/main/webapp/WEB-INF/manager/login.ftl
+2
-2
keyword-reply.ftl
src/main/webapp/WEB-INF/manager/mweixin/keyword-reply.ftl
+53
-0
keyword-reply.css
src/main/webapp/static/mweixin/css/keyword-reply.css
+100
-0
keyword-reply.less
src/main/webapp/static/mweixin/keyword-reply.less
+6
-0
No files found.
src/main/webapp/WEB-INF/manager/login.ftl
View file @
c66c003a
...
...
@@ -92,9 +92,9 @@ var loginVue = new Vue({
},
methods
:
{
// 登录
checkLogin
:
function
(
form
)
{
checkLogin
:
function
()
{
var
that
=
this
;
ms
.
http
.
post
(
ms
.
manager
+
"/ms/checkLogin.do"
,
f
orm
).
then
(
function
(
data
)
{
ms
.
http
.
post
(
ms
.
manager
+
"/ms/checkLogin.do"
,
that
.
loginF
orm
).
then
(
function
(
data
)
{
if
(
data
.
result
)
{
that
.
$notify
({
title
:
'成功'
,
...
...
src/main/webapp/WEB-INF/manager/mweixin/keyword-reply.ftl
0 → 100644
View file @
c66c003a
<!-- 关键字回复 -->
<!DOCTYPE html>
<html
lang=
""
>
<head>
<title></title>
<!-- <#include "/include/head-file.ftl"/> -->
<!--#include virtual="../include/head-file.ftl" -->
<link
rel=
"stylesheet"
href=
"../../../static/mweixin/css/keyword-reply.css"
>
</head>
<body>
<div
id=
"keyword-reply"
class=
"keyword-reply ms-container"
>
<el-table
:data=
"tableData"
border
style=
"width: 100%"
>
<el-table-column
prop=
"date"
label=
"规则名"
width=
"180"
align=
'center'
>
</el-table-column>
<el-table-column
prop=
"name"
label=
"关键词"
width=
"180"
align=
'center'
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"消息回复类型"
align=
'center'
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"发送对象"
align=
'center'
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"回复方式"
align=
'center'
>
</el-table-column>
</el-table>
</div>
</body>
</html>
<script>
var
keywordReplyVue
=
new
Vue
({
el
:
'#keyword-reply'
,
data
:
{
tableData
:
[{
date
:
'2016-05-02'
,
name
:
'王小虎'
,
address
:
'上海市普陀区金沙江路 1518 弄'
},
{
date
:
'2016-05-04'
,
name
:
'王小虎'
,
address
:
'上海市普陀区金沙江路 1517 弄'
},
{
date
:
'2016-05-01'
,
name
:
'王小虎'
,
address
:
'上海市普陀区金沙江路 1519 弄'
},
{
date
:
'2016-05-03'
,
name
:
'王小虎'
,
address
:
'上海市普陀区金沙江路 1516 弄'
}]
}
})
</script>
\ No newline at end of file
src/main/webapp/static/mweixin/css/keyword-reply.css
0 → 100644
View file @
c66c003a
/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
* 按钮
*/
/*
*对常见的多行样式进行了方法封装,方便调用,加快开发效率
*/
html
,
body
{
min-height
:
100vh
;
background-color
:
#eee
;
margin
:
0
;
font-weight
:
initial
!important
;
font-size
:
14px
!important
;
color
:
#333
!important
;
}
html
*,
body
*
{
text-decoration
:
none
!important
;
font-family
:
Verdana
,
Arial
,
Helvetica
,
sans-serif
;
box-sizing
:
border-box
;
}
.ms-ellipsis
{
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
display
:
block
;
}
.ms-align-center
{
display
:
flex
;
align-items
:
center
;
}
input
::-webkit-input-placeholder
,
textarea
::-webkit-input-placeholder
{
font-weight
:
initial
;
font-size
:
12px
;
color
:
#999
;
resize
:
none
;
}
*
::-webkit-scrollbar
{
width
:
8px
;
height
:
8px
;
}
/*定义滚动条轨道 内阴影+圆角*/
*
::-webkit-scrollbar-track
{
border-radius
:
10px
;
/*滚动条的背景区域的圆角*/
background-color
:
#eee
;
/*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*
::-webkit-scrollbar-thumb
{
border-radius
:
10px
;
/*滚动条的圆角*/
background-color
:
#ddd
;
/*滚动条的背景颜色*/
}
.ms-container
{
margin
:
12px
;
height
:
100%
;
padding
:
14px
14px
0
14px
;
background
:
#fff
;
}
.ms-header
{
padding
:
10px
;
margin
:
0
;
border-bottom
:
1px
solid
#ddd
;
background
:
#fff
;
height
:
50px
;
}
.ms-pagination
{
padding
:
20px
0
;
text-align
:
right
;
}
.ms-fr
{
float
:
right
;
}
.ms-tr
{
text-align
:
right
;
}
.el-button
+
.el-button
{
margin-left
:
0
;
}
.keyword-reply
{
padding
:
14px
;
}
src/main/webapp/static/mweixin/keyword-reply.less
0 → 100644
View file @
c66c003a
@import "../ms-admin/4.7.0/less/app.less";
// 关键字回复
.keyword-reply{
padding:14px;
}
\ No newline at end of file
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