Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
SooonerHotel
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
吴贤德
SooonerHotel
Commits
761ab6ff
Commit
761ab6ff
authored
5 years ago
by
wangjiangze
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新优化
parent
8b972d97
No related merge requests found
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
475 additions
and
261 deletions
+475
-261
PushLogAction.class.php
SooonerHotel/App/Lib/Action/Log/PushLogAction.class.php
+2
-2
index.html
SooonerHotel/App/Tpl/Hotel/zh-cn/Front/index.html
+3
-11
index.html
SooonerHotel/App/Tpl/Hotel/zh-cn/Hotel/index.html
+2
-10
index.html
SooonerHotel/App/Tpl/Hotel/zh-cn/Region/index.html
+13
-10
index.html
SooonerHotel/App/Tpl/Inject/zh-cn/Inject/index.html
+2
-10
lists.html
SooonerHotel/App/Tpl/Inject/zh-cn/Inject/lists.html
+1
-2
index.html
SooonerHotel/App/Tpl/Inject/zh-cn/InjectLog/index.html
+1
-2
index.html
SooonerHotel/App/Tpl/Log/zh-cn/PlayLog/index.html
+1
-2
index.html
SooonerHotel/App/Tpl/Log/zh-cn/PushLog/index.html
+1
-2
index.html
SooonerHotel/App/Tpl/Media/zh-cn/Cloud/index.html
+2
-3
index.html
SooonerHotel/App/Tpl/Media/zh-cn/Hotel/index.html
+1
-2
index.html
SooonerHotel/App/Tpl/Media/zh-cn/Playlist/index.html
+2
-10
index.html
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrl/index.html
+2
-10
lists.html
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrl/lists.html
+1
-2
index.html
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrlLog/index.html
+1
-2
index.html
SooonerHotel/App/Tpl/Sp/zh-cn/Conf/index.html
+2
-10
index.html
SooonerHotel/App/Tpl/Sp/zh-cn/Sp/index.html
+2
-10
index.html
SooonerHotel/App/Tpl/Sp/zh-cn/Type/index.html
+2
-10
index.html
SooonerHotel/App/Tpl/System/zh-cn/CenterConfig/index.html
+2
-9
rolelist.html
SooonerHotel/App/Tpl/System/zh-cn/Role/rolelist.html
+2
-10
userlist.html
SooonerHotel/App/Tpl/System/zh-cn/User/userlist.html
+2
-10
index.html
SooonerHotel/App/Tpl/zh-cn/Index/index.html
+0
-120
index_20190905bak.html
SooonerHotel/App/Tpl/zh-cn/Index/index_20190905bak.html
+0
-0
style_frame.css
SooonerHotel/Public/css/style_frame.css
+1
-1
font-awesome-4.7.0.zip
SooonerHotel/Public/font-awesome-4.7.0.zip
+0
-0
custom-styles.css
SooonerHotel/Public/newVsdn/css/custom-styles.css
+425
-0
style_frame.css
SooonerHotel/Public/newVsdn/css/style_frame.css
+2
-1
glyphicons-halflings-regular.ttf
...tel/Public/newVsdn/fonts/glyphicons-halflings-regular.ttf
+0
-0
No files found.
SooonerHotel/App/Lib/Action/Log/PushLogAction.class.php
View file @
761ab6ff
...
@@ -17,10 +17,10 @@ class PushLogAction extends CommonAction{
...
@@ -17,10 +17,10 @@ class PushLogAction extends CommonAction{
$hotelModel
=
D
(
"Hotel"
);
$hotelModel
=
D
(
"Hotel"
);
if
(
$userInfo
[
'sp_ids'
]
&&
$userInfo
[
'grade'
]
>=
3
){
if
(
$userInfo
[
'sp_ids'
]
&&
$userInfo
[
'grade'
]
>=
3
){
$sp_lists
=
$spModel
->
field
(
"id,`name`"
)
->
where
(
"`status`=0 and id in("
.
$userInfo
[
'sp_ids'
]
.
")"
)
->
select
();
$sp_lists
=
$spModel
->
field
(
"id,`name`"
)
->
where
(
"`status`=0 and id in("
.
$userInfo
[
'sp_ids'
]
.
")"
)
->
select
();
$hotel_lists
=
$hotelModel
->
field
(
"id,`name`,sp_id"
)
->
where
(
"`status`=0 and sp_id in("
.
$userInfo
[
'sp_ids'
]
.
")"
)
->
select
();
//
$hotel_lists = $hotelModel->field("id,`name`,sp_id")->where("`status`=0 and sp_id in(".$userInfo['sp_ids'].")")->select();
}
else
{
}
else
{
$sp_lists
=
$spModel
->
field
(
"id,`name`"
)
->
where
(
"`status`=0"
)
->
select
();
$sp_lists
=
$spModel
->
field
(
"id,`name`"
)
->
where
(
"`status`=0"
)
->
select
();
$hotel_lists
=
$hotelModel
->
field
(
"id,`name`,sp_id"
)
->
where
(
"`status`=0"
)
->
select
();
//
$hotel_lists = $hotelModel->field("id,`name`,sp_id")->where("`status`=0")->select();
}
}
$this
->
sp_lists
=
$sp_lists
;
$this
->
sp_lists
=
$sp_lists
;
$this
->
display
();
$this
->
display
();
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Hotel/zh-cn/Front/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
分前端管理
</title>
<title>
分前端管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,11 +12,11 @@
...
@@ -13,11 +12,11 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
<div
class=
"search
Hotel
clearfix"
>
<div
class=
"search
Box
clearfix"
>
<div
class=
"layui-tab-content"
>
<div
class=
"layui-tab-content"
>
<div
class=
"layui-tab-item layui-show"
>
<div
class=
"layui-tab-item layui-show"
>
<div
class=
"hyperchanne clearfix"
>
<div
class=
"hyperchanne clearfix"
>
...
@@ -39,16 +38,9 @@
...
@@ -39,16 +38,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"分前端名称/分前端标识"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"分前端名称/分前端标识"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Hotel
','
Front
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Hotel
','
Front
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Hotel/zh-cn/Hotel/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
酒店管理
</title>
<title>
酒店管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -41,16 +40,9 @@
...
@@ -41,16 +40,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"酒店名称/合作方酒店标识"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"酒店名称/合作方酒店标识"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Hotel
','
Hotel
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Hotel
','
Hotel
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Hotel/zh-cn/Region/index.html
View file @
761ab6ff
...
@@ -2,8 +2,7 @@
...
@@ -2,8 +2,7 @@
<html>
<html>
<head>
<head>
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<title>
监区管理
</title>
<title>
酒店区域管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -12,18 +11,22 @@
...
@@ -12,18 +11,22 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDrag.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDrag.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
src=
"__PUBLIC__/js/common/functions.js"
type=
"text/javascript"
></script>
<script
src=
"__PUBLIC__/js/common/functions.js"
type=
"text/javascript"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
<div
class=
"searchBox clearfix"
>
<div
class=
"searchBox clearfix"
>
<div
class=
""
>
<div
class=
"layui-tab-content"
>
<ul
class=
"operationBox"
>
<div
class=
"layui-tab-item layui-show"
>
<li
class=
"add"
{
:buttonAuth
('
Hotel
','
Region
','
add
')}
>
<div
class=
"hyperchanne clearfix"
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
<form
name=
"searchform"
method=
"post"
action=
""
id =
"searchform"
>
</li>
<input
type=
"hidden"
name=
"op"
value=
"getjson"
>
</ul>
</div>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Hotel
','
Region
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</div>
<!--hyperchanne end-->
</div>
</div>
</div>
</div>
<!--搜索和按钮 结束-->
<!--搜索和按钮 结束-->
<table
id=
"tg"
<table
id=
"tg"
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Inject/zh-cn/Inject/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
媒资注入管理
</title>
<title>
媒资注入管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -27,16 +26,9 @@
...
@@ -27,16 +26,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"任务名称"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"任务名称"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Inject
','
Inject
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Inject
','
Inject
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Inject/zh-cn/Inject/lists.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
媒资注入列表
</title>
<title>
媒资注入列表
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body
style=
"padding:20px"
>
<body
style=
"padding:20px"
>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Inject/zh-cn/InjectLog/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
媒资注入日志
</title>
<title>
媒资注入日志
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Log/zh-cn/PlayLog/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
播放日志管理
</title>
<title>
播放日志管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -14,7 +13,7 @@
...
@@ -14,7 +13,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/DatePicker.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/DatePicker.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Log/zh-cn/PushLog/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
推送日志管理
</title>
<title>
推送日志管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Media/zh-cn/Cloud/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
分前端管理
</title>
<title>
分前端管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -96,7 +95,7 @@ onRowContextMenu : onRowContextMenu
...
@@ -96,7 +95,7 @@ onRowContextMenu : onRowContextMenu
<th
data-options=
"field:'score',width:10"
>
评分
</th>
<th
data-options=
"field:'score',width:10"
>
评分
</th>
<!--<th data-options="field:'addtime',width:25" sortable="true">创建时间</th>-->
<!--<th data-options="field:'addtime',width:25" sortable="true">创建时间</th>-->
<th
data-options=
"field:'updatetime',width:25"
sortable=
"true"
>
更新时间
</th>
<th
data-options=
"field:'updatetime',width:25"
sortable=
"true"
>
更新时间
</th>
<
!--<th data-options="field:'status'" sortable="true" align="center">状态</th>--
>
<
th
data-options=
"field:'status'"
sortable=
"true"
align=
"center"
>
状态
</th
>
<th
field=
"action"
align=
"center"
formatter=
"InputAction"
>
操作
</th>
<th
field=
"action"
align=
"center"
formatter=
"InputAction"
>
操作
</th>
</tr>
</tr>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Media/zh-cn/Hotel/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
酒店片库
</title>
<title>
酒店片库
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Media/zh-cn/Playlist/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
播单管理
</title>
<title>
播单管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -33,16 +32,9 @@
...
@@ -33,16 +32,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"播单名称"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"播单名称"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Media
','
Playlist
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Media
','
Playlist
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrl/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
播控管理
</title>
<title>
播控管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -27,16 +26,9 @@
...
@@ -27,16 +26,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"播控名称"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"播控名称"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
PlayCtrl
','
PlayCtrl
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
PlayCtrl
','
PlayCtrl
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrl/lists.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
播控列表
</title>
<title>
播控列表
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body
style=
"padding:20px"
>
<body
style=
"padding:20px"
>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Playctrl/zh-cn/PlayCtrlLog/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
播控日志管理
</title>
<title>
播控日志管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Sp/zh-cn/Conf/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
合作方配置管理
</title>
<title>
合作方配置管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -33,16 +32,9 @@
...
@@ -33,16 +32,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"配置名称/配置类型code"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"配置名称/配置类型code"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Sp
','
Conf
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Sp
','
Conf
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Sp/zh-cn/Sp/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
合作方管理
</title>
<title>
合作方管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -27,16 +26,9 @@
...
@@ -27,16 +26,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"合作方名称/合作方代码"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"合作方名称/合作方代码"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Sp
','
Sp
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Sp
','
Sp
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/Sp/zh-cn/Type/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
合作方类型管理
</title>
<title>
合作方类型管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -27,16 +26,9 @@
...
@@ -27,16 +26,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"配置类型/配置类型代码"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"配置类型/配置类型代码"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
Sp
','
Type
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
{
:buttonAuth
('
Sp
','
Type
','
add
')}
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/System/zh-cn/CenterConfig/index.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
中心配置管理
</title>
<title>
中心配置管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -27,15 +26,9 @@
...
@@ -27,15 +26,9 @@
<input
class=
"input"
type=
"text"
placeholder=
"配置名称/配置键"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
placeholder=
"配置名称/配置键"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
System
','
CenterConfig
','
add
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/System/zh-cn/Role/rolelist.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
角色管理
</title>
<title>
角色管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -12,7 +11,7 @@
...
@@ -12,7 +11,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDrag.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDrag.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -31,16 +30,9 @@
...
@@ -31,16 +30,9 @@
<input
class=
"input"
type=
"text"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
system
','
role
','
addrole
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/System/zh-cn/User/userlist.html
View file @
761ab6ff
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
<head>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
用户管理
</title>
<title>
用户管理
</title>
<link
href=
"__PUBLIC__/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/default/easyui.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"__PUBLIC__/js/jquery-easyui-1.3.4/themes/icon.css"
>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/jquery.min.js"
></script>
...
@@ -13,7 +12,7 @@
...
@@ -13,7 +12,7 @@
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/newVsdn/js/zDialog/zDialog.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/functions.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<script
type=
"text/javascript"
src=
"__PUBLIC__/js/common/md5.js"
></script>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css"
rel=
"stylesheet"
type=
"text/css"
/>
<link
href=
"__PUBLIC__/newVsdn/css/style_frame.css
?v=20190829
"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
</head>
<body>
<body>
<!--搜索和按钮 开始 -->
<!--搜索和按钮 开始 -->
...
@@ -32,16 +31,9 @@
...
@@ -32,16 +31,9 @@
<input
class=
"input"
type=
"text"
name=
"searchValue"
>
<input
class=
"input"
type=
"text"
name=
"searchValue"
>
</div>
</div>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
id=
"submit_search"
name=
""
type=
"button"
value=
"查询"
class=
"btn_go_s btn_orange"
/>
<input
onclick=
"add()"
type=
"button"
value=
"+ 新增"
{
:buttonAuth
('
system
','
user
','
adduser
')}
class=
"btn_go_s btn_add"
/>
</form>
</form>
</div>
<!--hyperchanne end-->
</div>
<!--hyperchanne end-->
<div
class=
""
>
<ul
class=
"operationBox"
>
<li
class=
"add"
>
<a
href=
"javascript:;"
onclick=
"add()"
class=
"on"
><span></span>
新增
</a>
</li>
</ul>
</div>
<!--mainBox end-->
</div>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/zh-cn/Index/index.html
View file @
761ab6ff
...
@@ -162,120 +162,6 @@
...
@@ -162,120 +162,6 @@
</ul>
</ul>
<div
class=
"layui-tab-content"
>
<div
class=
"layui-tab-content"
>
<div
class=
"layui-tab-item layui-show"
>
<div
class=
"layui-tab-item layui-show"
>
<!--<div class="index-model">-->
<!--<div class="index-model-title"><a href="javascript:;" onclick="openMenu('<span class=manage-dispatching-1></span>订购关系同步日志','/Business/OrdersLog/lists')">订购信息</a>-->
<!--<a href="javascript:;" onclick="helpShow(this,0)" class="title-help">-->
<!--<i class="fa fa-info-circle"></i>-->
<!--</a>-->
<!--</div>-->
<!--<div class="index-model-inner">-->
<!--<ul>-->
<!--<li>-->
<!--订购失败(最近5条):{$order_err}-->
<!--</li>-->
<!--<li>-->
<!--1001:cpid不存在-->
<!--</li>-->
<!--<li>-->
<!--2002:更新订购关系失败(updateRedisOrder异常)-->
<!--</li>-->
<!--<li>-->
<!--3001:Json解析失败-->
<!--</li>-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<!--<div class="index-model">-->
<!--<div class="index-model-title"><a href="javascript:;" onclick="openMenu('<span class=manage-dispatching-1></span>GSLB服务器管理','/Device/GslbService/lists')">设备自动同步配置状态检测</a> <a href="javascript:;" onclick="helpShow(this,1)" class="title-help"><i class="fa fa-info-circle"></i></a></div>-->
<!--<div class="index-model-inner">-->
<!--<ul>-->
<!--<volist name="gslb" id="vo">-->
<!--<li>-->
<!--<div style="width: 65%;display: inline-block">设备:{$vo.name}</div>-->
<!--<div style="width:35%;display: inline-block">-->
<!--<if condition="$vo['result'] eq 1 "> <span style="color: green">状态:正常</span>-->
<!--<else /> <span style="color: red">状态:超时,未同步</span>-->
<!--</if>-->
<!--</div>-->
<!--</li>-->
<!--</volist>-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<div
class=
"index-model-device"
>
<div
class=
"index-model-title"
><a
href=
"javascript:;"
onclick=
"openMenu('<span class=manage-dispatching-1></span>设备监控','/Monitor/device/lists')"
>
设备监控
</a><a
href=
"javascript:;"
class=
"title-help"
><i
class=
"fa fa-info-circle"
></i></a></div>
<div
class=
"index-model-inner"
>
<div
class=
"monitor-body"
id=
"monitor-body"
>
<ul
id=
"ul"
>
<volist
name=
"list"
id=
"vo"
>
<?php switch($vo['result']){
case 0:
$st = 'zheng';
$msg = '正常';
break;
case 1:
$st = 'timeout';
$msg = '超时未报';
break;
case 2:
$st = 'avg';
$msg = '超负载';
break;
case 3:
$st = 'sertime';
$msg = '服务超时未报';
break;
}?>
<a
href=
"javascript:;"
onclick=
"show(<?php echo $vo['id']?>)"
>
<li>
<span
class=
"inner <?php echo $st;?>"
><img
src=
"__PUBLIC__/newVsdn/images/<?php echo $st;?>.png"
><span>
<?php echo $msg;?>
</span></span>
<span
class=
"footer <?php echo $st;?>_foot"
>
{$vo.name}
</span>
</li>
</a>
<div
class=
"infodiv"
id=
"info<?php echo $vo['id']?>"
style=
"display: none"
>
<div
class=
"info_title"
>
{$vo.name}
<a
href=
"javascript:;"
onclick=
" $('.infodiv').hide();"
></a></div>
<div
class=
"info_content"
>
<div
class=
"info_header"
><div
class=
"info_flag"
></div>
设备信息
</div>
<div
class=
"info-inner"
>
<ul
>
<li><span
>
设备类型:
</span>
<?php if($vo['type'] == 0){echo "SCS";}else{echo "SAS";}?>
</li>
<li><span
>
key:
</span>
{$vo.key}
</li>
<li><span
>
内存负载:
</span>
{$vo.mem}
</li>
<li><span
>
avg1:
</span>
{$vo.avg1}
</li>
<li>
<span
>
cpu负载:
</span>
{$vo.cpu}
</li>
<li><span
>
avg5:
</span>
{$vo.avg5}
</li>
<li><span
>
网卡(id)上行:
</span>
{$vo.n_up}
</li>
<li><span
>
avg15:
</span>
{$vo.avg15}
</li>
<li><span
>
网卡(id)下行:
</span>
{$vo.n_down}
</li>
<li><span
>
上次上报时间:
</span>
{$vo.t}
</li>
</ul>
</div>
<div
class=
"info_header"
><div
class=
"info_flag"
></div>
服务监测
</div>
<div
class=
"info-inner"
>
<ul
>
<?php foreach($vo['ser'] as $ser){?>
<li><span
>
服务名称:
</span>
<?php echo $ser['name'];?>
</li>
<li><span
>
上次上报时间:
</span>
<?php echo $ser['ser_t'];?>
</li>
<?php }?>
</ul>
</div>
<div
class=
"info_header"
><div
class=
"info_flag"
></div>
单个cpu负载
</div>
<div
class=
"info-inner"
>
<ul
class=
"cpu"
>
<?php $i=1; foreach($vo['c'] as $cpu){ ?>
<li>
<?php echo $i."==".$cpu;?>
</li>
<?php $i++;}?>
</ul>
</div>
</div>
</div>
</volist>
</ul>
</div>
</div>
</div>
<div
class=
"index-model-device"
>
<div
class=
"index-model-device"
>
<div
class=
"index-model-title"
><a
href=
"javascript:;"
onclick=
"openMenu('<span class=manage-dispatching-1></span>日志管理','/system/log/loglist')"
>
操作日志
</a><a
href=
"javascript:;"
class=
"title-help"
><i
class=
"fa fa-info-circle"
></i></a></div>
<div
class=
"index-model-title"
><a
href=
"javascript:;"
onclick=
"openMenu('<span class=manage-dispatching-1></span>日志管理','/system/log/loglist')"
>
操作日志
</a><a
href=
"javascript:;"
class=
"title-help"
><i
class=
"fa fa-info-circle"
></i></a></div>
<div
class=
"index-model-inner"
>
<div
class=
"index-model-inner"
>
...
@@ -312,10 +198,7 @@
...
@@ -312,10 +198,7 @@
}
}
})
})
});
});
</script>
</script>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -350,7 +233,6 @@
...
@@ -350,7 +233,6 @@
<input
name=
""
type=
"reset"
class=
"btn"
value=
"取消"
onclick=
"$('#dlg').dialog('close');"
/>
<input
name=
""
type=
"reset"
class=
"btn"
value=
"取消"
onclick=
"$('#dlg').dialog('close');"
/>
</div>
</div>
</div>
</div>
</form>
</form>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
function
submitForm
(){
function
submitForm
(){
...
@@ -379,8 +261,6 @@
...
@@ -379,8 +261,6 @@
}
}
</script>
</script>
</div>
</div>
</body>
</body>
</html>
</html>
<script>
<script>
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/App/Tpl/zh-cn/Index/index_20190905bak.html
0 → 100644
View file @
761ab6ff
This diff is collapsed.
Click to expand it.
SooonerHotel/Public/css/style_frame.css
View file @
761ab6ff
...
@@ -63,7 +63,7 @@ a img{ border:0;}
...
@@ -63,7 +63,7 @@ a img{ border:0;}
select
,
input
[
type
=
"text"
],
input
[
type
=
"password"
],
textarea
{
font-family
:
'Microsoft YaHei'
,
Helvetica
,
Arial
,
sans-serif
;
color
:
#444
;}
select
,
input
[
type
=
"text"
],
input
[
type
=
"password"
],
textarea
{
font-family
:
'Microsoft YaHei'
,
Helvetica
,
Arial
,
sans-serif
;
color
:
#444
;}
/*查询*/
/*查询*/
.searchBox
{
padding
:
10px
;
overflow
:
hidden
;
min-width
:
810px
;}
/*.searchBox{ padding:10px; overflow:hidden; min-width:810px;}*/
.searchBox
.btn_box
{
float
:
left
;}
.searchBox
.btn_box
{
float
:
left
;}
.searchBox
.btn_box
input
[
type
=
"button"
],
.searchBox
.btn_go
input
[
type
=
"button"
]
{
font-size
:
14px
;
text-align
:
center
;
font-family
:
'Microsoft YaHei'
;}
.searchBox
.btn_box
input
[
type
=
"button"
],
.searchBox
.btn_go
input
[
type
=
"button"
]
{
font-size
:
14px
;
text-align
:
center
;
font-family
:
'Microsoft YaHei'
;}
.searchBox
.btn_box
input
[
type
=
"button"
]
{
border
:
0
;
background
:
#46ADD9
;
height
:
25px
;
padding
:
0
15px
2px
;
*
padding
:
0
5px
4px
;
color
:
#FFF
;}
.searchBox
.btn_box
input
[
type
=
"button"
]
{
border
:
0
;
background
:
#46ADD9
;
height
:
25px
;
padding
:
0
15px
2px
;
*
padding
:
0
5px
4px
;
color
:
#FFF
;}
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/Public/font-awesome-4.7.0.zip
deleted
100755 → 0
View file @
8b972d97
File deleted
This diff is collapsed.
Click to expand it.
SooonerHotel/Public/newVsdn/css/custom-styles.css
0 → 100644
View file @
761ab6ff
/*----------------------------------------------
COMMON STYLES
------------------------------------------------*/
body
{
font-family
:
'Open Sans'
,
sans-serif
;
}
#wrapper
{
width
:
100%
;
background
:
#09192A
;
}
#page-wrapper
{
padding
:
15px
15px
;
min-height
:
600px
;
background
:
#E5EBF2
;
}
#page-inner
{
width
:
100%
;
margin
:
10px
20px
10px
0px
;
background-color
:
transparent
;
padding
:
10px
;
min-height
:
1200px
;
}
.text-center
{
text-align
:
center
;
}
.no-boder
{
border
:
1px
solid
#f3f3f3
;
}
h1
,
.h1
,
h2
,
.h2
,
h3
,
.h3
{
margin-top
:
7px
;
margin-bottom
:
-5px
;
}
h2
{
color
:
#000
;
}
h4
{
padding-top
:
10px
;
}
.square-btn-adjust
{
border
:
0px
solid
transparent
;
-webkit-border-radius
:
0px
;
-moz-border-radius
:
0px
;
border-radius
:
0px
;
}
p
{
font-size
:
16px
;
line-height
:
25px
;
padding-top
:
20px
;
}
/*----------------------------------------------
DASHBOARD STYLES
------------------------------------------------*/
.page-header
{
padding-bottom
:
9px
;
margin
:
10px
0
45px
;
border-bottom
:
1px
solid
#C7D1DD
;
}
.panel-back
{
background-color
:
#fff
;
}
.panel-default
>
.panel-heading
{
color
:
#000
;
background-color
:
#FFFFFF
;
border-color
:
#ddd
;
font-weight
:
bold
;
}
.jumbotron
,
.well
{
background
:
#fff
;
}
.noti-box
{
min-height
:
100px
;
padding
:
20px
;
}
.noti-box
.icon-box
{
display
:
block
;
float
:
left
;
margin
:
0
15px
10px
0
;
width
:
70px
;
height
:
70px
;
line-height
:
75px
;
vertical-align
:
middle
;
text-align
:
center
;
font-size
:
40px
;
}
.text-box
p
{
margin
:
0
0
3px
;
}
.main-text
{
font-size
:
25px
;
font-weight
:
600
;
}
.set-icon
{
-webkit-border-radius
:
50px
;
-moz-border-radius
:
50px
;
border-radius
:
50px
;
}
.bg-color-green
{
background-color
:
#fff
;
color
:
#5cb85c
;
}
.bg-color-blue
{
background-color
:
#fff
;
color
:
#4CB1CF
}
.bg-color-red
{
background-color
:
#fff
;
color
:
#F0433D
;
}
.bg-color-brown
{
background-color
:
#fff
;
color
:
#f0ad4e
;
}
.back-footer-green
{
background-color
:
#5cb85c
;
color
:
#fff
;
border-top
:
0px
solid
#fff
;
}
.back-footer-red
{
background-color
:
#F0433D
;
color
:
#fff
;
border-top
:
0px
solid
#fff
;
}
.back-footer-blue
{
background-color
:
#4CB1CF
;
color
:
#fff
;
border-top
:
0px
solid
#fff
;
}
.back-footer-brown
{
background-color
:
#f0ad4e
;
color
:
#fff
;
border-top
:
0px
solid
#fff
;
}
.icon-box-right
{
display
:
block
;
float
:
right
;
margin
:
0
15px
10px
0
;
width
:
70px
;
height
:
70px
;
line-height
:
75px
;
vertical-align
:
middle
;
text-align
:
center
;
font-size
:
40px
;
}
.main-temp-back
{
background
:
#8702A8
;
color
:
#FFFFFF
;
font-size
:
16px
;
font-weight
:
300
;
text-align
:
center
;
}
.main-temp-back
.text-temp
{
font-size
:
40px
;
}
.back-dash
{
padding
:
20px
;
font-size
:
20px
;
font-weight
:
500
;
-webkit-border-radius
:
0px
;
-moz-border-radius
:
0px
;
border-radius
:
0px
;
background-color
:
#2EA7EB
;
color
:
#fff
;
}
.back-dash
p
{
padding-top
:
16px
;
font-size
:
13px
;
color
:
#fff
;
line-height
:
25px
;
text-align
:
justify
;
}
.color-bottom-txt
{
color
:
#000
;
font-size
:
16px
;
line-height
:
30px
;
}
/*CHAT PANEL*/
.chat-panel
.panel-body
{
height
:
450px
;
overflow-y
:
scroll
;
}
.chat-box
{
margin
:
0
;
padding
:
0
;
list-style
:
none
;
}
.chat-box
li
{
margin-bottom
:
15px
;
padding-bottom
:
5px
;
border-bottom
:
1px
dotted
#808080
;
}
.chat-box
li
.left
.chat-body
{
margin-left
:
90px
;
}
.chat-box
li
.chat-body
p
{
margin
:
0
;
color
:
#8d8888
;
}
.chat-img
>
img
{
margin-left
:
20px
;
}
footer
p
{
font-size
:
14px
;
}
/*----------------------------------------------
MENU STYLES
------------------------------------------------*/
.user-image
{
margin
:
25px
auto
;
-webkit-border-radius
:
10px
;
-moz-border-radius
:
10px
;
border-radius
:
10px
;
max-height
:
170px
;
max-width
:
170px
;
}
.top-navbar
{
margin
:
0px
;
}
.top-navbar
.navbar-brand
{
color
:
#fff
;
width
:
260px
;
text-align
:
left
;
height
:
60px
;
font-size
:
30px
;
font-weight
:
700
;
text-transform
:
uppercase
;
line-height
:
30px
;
}
.top-navbar
.nav
>
li
{
position
:
relative
;
display
:
inline-block
;
}
.top-navbar
.nav
>
li
>
a
{
position
:
relative
;
display
:
block
;
padding
:
19px
15px
;
color
:
#77C0FD
;
}
.top-navbar
.nav
>
li
>
a
:hover
,
.top-navbar
.nav
>
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#225081
;
color
:
#fff
;
}
.top-navbar
.dropdown-menu
{
min-width
:
230px
;
border-radius
:
0
0
4px
4px
;
}
.top-navbar
.dropdown-menu
>
li
>
a
:hover
,
.top-navbar
.dropdown-menu
>
li
>
a
:focus
{
color
:
#225081
;
background
:
none
;
}
.dropdown-tasks
{
width
:
255px
;
}
.dropdown-tasks
.progress
{
height
:
8px
;
margin-bottom
:
8px
;
overflow
:
hidden
;
background-color
:
#f5f5f5
;
border-radius
:
0px
;
}
.dropdown-tasks
>
li
>
a
{
padding
:
0px
15px
;
}
.dropdown-tasks
p
{
font-size
:
13px
;
line-height
:
21px
;
padding-top
:
4px
;
}
.active-menu
{
background-color
:
#225081
!important
;
}
.arrow
{
float
:
right
;
}
.fa.arrow
:before
{
content
:
"\f104"
;
}
.active
>
a
>
.fa.arrow
:before
{
content
:
"\f107"
;
}
.nav-second-level
li
,
.nav-third-level
li
{
border-bottom
:
none
!important
;
}
.nav-second-level
li
a
{
padding-left
:
37px
;
}
.nav-third-level
li
a
{
padding-left
:
55px
;
}
.sidebar-collapse
,
.sidebar-collapse
.nav
{
background
:
none
;
}
.sidebar-collapse
.nav
{
padding
:
0
;
}
.sidebar-collapse
.nav
>
li
>
a
{
color
:
#fff
;
background
:
transparent
;
text-shadow
:
none
;
}
.sidebar-collapse
>
.nav
>
li
>
a
{
padding
:
15px
10px
;
}
.sidebar-collapse
>
.nav
>
li
{
border-bottom
:
1px
solid
rgba
(
107
,
108
,
109
,
0.19
);
}
ul
.nav.nav-second-level.collapse.in
{
background
:
#172D44
;
}
.sidebar-collapse
.nav
>
li
>
a
:hover
,
.sidebar-collapse
.nav
>
li
>
a
:focus
{
outline
:
0
;
}
.navbar-side
{
border
:
none
;
background-color
:
transparent
;
}
.top-navbar
{
background
:
#09192A
;
border-bottom
:
none
;
}
.top-navbar
.nav
>
li
>
a
>
i
{
margin-right
:
2px
;
}
.top-navbar
.navbar-brand
:hover
{
color
:
#fff
;
}
.dropdown-user
li
{
margin
:
8px
0
;
}
.navbar-default
{
border
:
0px
solid
black
;
}
.navbar-header
{
background
:
#09192A
;
}
.navbar-default
.navbar-toggle
:hover
,
.navbar-default
.navbar-toggle
:focus
{
background-color
:
#B40101
;
}
.navbar-default
.navbar-toggle
{
border-color
:
#fff
;
}
.navbar-default
.navbar-toggle
.icon-bar
{
background-color
:
#FFF
;
}
.nav
>
li
>
a
>
i
{
margin-right
:
10px
;
}
/*----------------------------------------------
UI ELEMENTS STYLES
------------------------------------------------*/
.btn-circle
{
width
:
50px
;
height
:
50px
;
padding
:
6px
0
;
-webkit-border-radius
:
25px
;
-moz-border-radius
:
25px
;
border-radius
:
25px
;
text-align
:
center
;
font-size
:
12px
;
line-height
:
1.428571429
;
}
/*----------------------------------------------
MEDIA QUERIES
------------------------------------------------*/
@media
(
min-width
:
768px
)
{
#page-wrapper
{
margin
:
0
0
0
260px
;
padding
:
15px
30px
;
min-height
:
1200px
;
}
.navbar-side
{
z-index
:
1
;
position
:
absolute
;
width
:
260px
;
}
.navbar
{
border-radius
:
0px
;
}
}
@media
(
max-width
:
480px
)
{
.page-header
small
{
display
:
block
;
padding-top
:
14px
;
font-size
:
19px
;
}
}
This diff is collapsed.
Click to expand it.
SooonerHotel/Public/newVsdn/css/style_frame.css
View file @
761ab6ff
...
@@ -70,6 +70,7 @@ a img{ border:0;}
...
@@ -70,6 +70,7 @@ a img{ border:0;}
.inputBox
.inputList
a
:hover
{
background
:
#ff5a3a
;
color
:
#fff
;}
.inputBox
.inputList
a
:hover
{
background
:
#ff5a3a
;
color
:
#fff
;}
.inputBox
.more
{
background
:
url(../images/head-up.png)
no-repeat
70%
;
width
:
12px
;
height
:
7px
;
top
:
12px
;
right
:
5px
;
position
:
absolute
;}
.inputBox
.more
{
background
:
url(../images/head-up.png)
no-repeat
70%
;
width
:
12px
;
height
:
7px
;
top
:
12px
;
right
:
5px
;
position
:
absolute
;}
.btn_orange
{
text-align
:
center
;
font-size
:
14px
;
border-radius
:
3px
;
margin
:
0
5px
;
background
:
#ff5a3a
;
color
:
#FFF
;
width
:
66px
;
height
:
30px
;
line-height
:
28px
;
padding
:
0
5px
;
*
padding
:
0
2px
;
border
:
none
;
cursor
:
pointer
;}
.btn_orange
{
text-align
:
center
;
font-size
:
14px
;
border-radius
:
3px
;
margin
:
0
5px
;
background
:
#ff5a3a
;
color
:
#FFF
;
width
:
66px
;
height
:
30px
;
line-height
:
28px
;
padding
:
0
5px
;
*
padding
:
0
2px
;
border
:
none
;
cursor
:
pointer
;}
.btn_add
{
float
:
left
;
text-align
:
center
;
font-size
:
14px
;
border-radius
:
3px
;
margin
:
0
5px
;
background
:
#ff5a3a
;
color
:
#FFF
;
width
:
66px
;
height
:
30px
;
line-height
:
28px
;
padding
:
0
5px
;
*
padding
:
0
2px
;
border
:
none
;
cursor
:
pointer
;}
.mainBox
{
margin-top
:
15px
;}
.mainBox
{
margin-top
:
15px
;}
.mainBox
table
{
width
:
100%
;
border-collapse
:
collapse
;
border-left
:
1px
solid
#d8d8d8
;
border-top
:
1px
solid
#d8d8d8
;
border-bottom
:
1px
solid
#d8d8d8
;
background
:
#ffffff
;}
.mainBox
table
{
width
:
100%
;
border-collapse
:
collapse
;
border-left
:
1px
solid
#d8d8d8
;
border-top
:
1px
solid
#d8d8d8
;
border-bottom
:
1px
solid
#d8d8d8
;
background
:
#ffffff
;}
...
@@ -176,7 +177,7 @@ a img{ border:0;}
...
@@ -176,7 +177,7 @@ a img{ border:0;}
}
}
.searchBox
{
.searchBox
{
padding-left
:
0
;
/* padding-left: 0;*/
}
}
.addbtn
{
.addbtn
{
background-color
:
#ff5a3a
;
background-color
:
#ff5a3a
;
...
...
This diff is collapsed.
Click to expand it.
SooonerHotel/Public/newVsdn/fonts/glyphicons-halflings-regular.ttf
0 → 100644
View file @
761ab6ff
File added
This diff is collapsed.
Click to expand it.
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