Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
T
taote
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
李达
taote
Commits
8e838b48
提交
8e838b48
authored
7月 14, 2021
作者:
Junlz
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
合并分支
上级
8c71ccdf
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
24 个修改的文件
包含
37 行增加
和
3190 行删除
+37
-3190
Material.php
application/common/model/Material.php
+34
-0
database.php
application/database.php
+3
-3
819c837d54a6ed09abc77a8560a66f.php
runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php
+0
-4
78ef4a9130f39208ff10858ddd8377.php
runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php
+0
-4
176390aa3b638b41482ff4af7c56d151.php
runtime/temp/176390aa3b638b41482ff4af7c56d151.php
+0
-160
1a10cc733573d763b2969b4c63c02806.php
runtime/temp/1a10cc733573d763b2969b4c63c02806.php
+0
-91
1c53b67f1b56eda968abbf5ed8ee75d9.php
runtime/temp/1c53b67f1b56eda968abbf5ed8ee75d9.php
+0
-199
28bff229245939beaea9a601308c9dcd.php
runtime/temp/28bff229245939beaea9a601308c9dcd.php
+0
-199
299d25f0a9e02637430f86524c6a3685.php
runtime/temp/299d25f0a9e02637430f86524c6a3685.php
+0
-107
2b90b7babd0ccd1ca7775229e177cf21.php
runtime/temp/2b90b7babd0ccd1ca7775229e177cf21.php
+0
-165
2c1c66e1b601981f2e6f2ca9af0ac849.php
runtime/temp/2c1c66e1b601981f2e6f2ca9af0ac849.php
+0
-473
2dadceb7a9d507129610fb679b38502d.php
runtime/temp/2dadceb7a9d507129610fb679b38502d.php
+0
-99
3d880564ea6fc5e7fab6288d0a364f46.php
runtime/temp/3d880564ea6fc5e7fab6288d0a364f46.php
+0
-64
733c4c8cd29323f45721aff143784f1e.php
runtime/temp/733c4c8cd29323f45721aff143784f1e.php
+0
-92
75591be34f6e1b1ae7f392231d2e989c.php
runtime/temp/75591be34f6e1b1ae7f392231d2e989c.php
+0
-99
7e9c1d93ab88d38f31c3a61f81ff9e63.php
runtime/temp/7e9c1d93ab88d38f31c3a61f81ff9e63.php
+0
-91
7eeba7bd6e719b8e83bd4a82fdda89ee.php
runtime/temp/7eeba7bd6e719b8e83bd4a82fdda89ee.php
+0
-109
8469331f17b49c272d26bab82d6128a9.php
runtime/temp/8469331f17b49c272d26bab82d6128a9.php
+0
-99
a8df5ccbf9c64e051fd3c93f4c6743e1.php
runtime/temp/a8df5ccbf9c64e051fd3c93f4c6743e1.php
+0
-105
b1e4b39f7ee4cbbeaa8fd7a38e9e6379.php
runtime/temp/b1e4b39f7ee4cbbeaa8fd7a38e9e6379.php
+0
-384
cc5041726595a2dde7c8eef8c085aef9.php
runtime/temp/cc5041726595a2dde7c8eef8c085aef9.php
+0
-317
e9bceb0e07a83535b28e2e6bb7e16daa.php
runtime/temp/e9bceb0e07a83535b28e2e6bb7e16daa.php
+0
-103
f161df45c209e12ce260a9f410047f5f.php
runtime/temp/f161df45c209e12ce260a9f410047f5f.php
+0
-106
f7d07a9d2cbdbcbf5b848ff2d686d943.php
runtime/temp/f7d07a9d2cbdbcbf5b848ff2d686d943.php
+0
-117
没有找到文件。
application/common/model/Material.php
0 → 100644
浏览文件 @
8e838b48
<?php
namespace
app\common\model
;
use
think\Model
;
class
Material
extends
Model
{
// 表名
protected
$name
=
'material'
;
// 自动写入时间戳字段
protected
$autoWriteTimestamp
=
'int'
;
// 定义时间戳字段名
protected
$createTime
=
'createtime'
;
protected
$updateTime
=
'updatetime'
;
// 追加属性
protected
$append
=
[
];
public
static
function
material
(
$popularize_id
,
$nickname
)
{
$list
=
self
::
field
(
"name,image_url"
)
->
where
(
'is_del'
,
0
)
->
select
();
foreach
(
$list
as
$k
=>
$v
)
{
$v
[
"qrcode"
]
=
"http://"
.
$_SERVER
[
"HTTP_HOST"
]
.
"/uploads/qrcode/"
.
$popularize_id
.
".png"
;
$v
[
"name"
]
=
$nickname
;
}
return
$list
;
}
}
application/database.php
浏览文件 @
8e838b48
...
...
@@ -18,11 +18,11 @@ return [
// 服务器地址
'hostname'
=>
Env
::
get
(
'database.hostname'
,
'127.0.0.1'
),
// 数据库名
'database'
=>
Env
::
get
(
'database.database'
,
'
taote
'
),
'database'
=>
Env
::
get
(
'database.database'
,
'
yinong
'
),
// 用户名
'username'
=>
Env
::
get
(
'database.username'
,
'
taote
'
),
'username'
=>
Env
::
get
(
'database.username'
,
'
root
'
),
// 密码
'password'
=>
Env
::
get
(
'database.password'
,
'
R6azbxHLxhyFDBMA
'
),
'password'
=>
Env
::
get
(
'database.password'
,
'
root
'
),
// 端口
'hostport'
=>
Env
::
get
(
'database.hostport'
,
''
),
// 连接dsn
...
...
runtime/cache/4e/819c837d54a6ed09abc77a8560a66f.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
//000000000000
exit
();
?>
a:0:{}
\ No newline at end of file
runtime/cache/cb/78ef4a9130f39208ff10858ddd8377.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
//000000000000
exit
();
?>
a:18:{i:0;a:16:{s:2:"id";i:1;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:9:"dashboard";s:5:"title";s:9:"Dashboard";s:4:"icon";s:15:"fa fa-dashboard";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:14:"Dashboard tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:143;s:6:"status";s:6:"normal";}i:1;a:16:{s:2:"id";i:2;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:7:"general";s:5:"title";s:7:"General";s:4:"icon";s:10:"fa fa-cogs";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:137;s:6:"status";s:6:"normal";}i:2;a:16:{s:2:"id";i:3;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:8:"category";s:5:"title";s:8:"Category";s:4:"icon";s:10:"fa fa-leaf";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:13:"Category tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:119;s:6:"status";s:6:"normal";}i:3;a:16:{s:2:"id";i:9;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:10:"auth/admin";s:5:"title";s:5:"Admin";s:4:"icon";s:10:"fa fa-user";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:10:"Admin tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:118;s:6:"status";s:6:"normal";}i:4;a:16:{s:2:"id";i:10;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:13:"auth/adminlog";s:5:"title";s:9:"Admin log";s:4:"icon";s:14:"fa fa-list-alt";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:14:"Admin log tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:113;s:6:"status";s:6:"normal";}i:5;a:16:{s:2:"id";i:11;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:10:"auth/group";s:5:"title";s:5:"Group";s:4:"icon";s:11:"fa fa-group";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:10:"Group tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:109;s:6:"status";s:6:"normal";}i:6;a:16:{s:2:"id";i:12;s:4:"type";s:4:"file";s:3:"pid";i:5;s:4:"name";s:9:"auth/rule";s:5:"title";s:4:"Rule";s:4:"icon";s:10:"fa fa-bars";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:9:"Rule tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:104;s:6:"status";s:6:"normal";}i:7;a:16:{s:2:"id";i:5;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:4:"auth";s:5:"title";s:4:"Auth";s:4:"icon";s:11:"fa fa-group";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:99;s:6:"status";s:6:"normal";}i:8;a:16:{s:2:"id";i:6;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:14:"general/config";s:5:"title";s:6:"Config";s:4:"icon";s:9:"fa fa-cog";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:11:"Config tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:60;s:6:"status";s:6:"normal";}i:9;a:16:{s:2:"id";i:7;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:18:"general/attachment";s:5:"title";s:10:"Attachment";s:4:"icon";s:18:"fa fa-file-image-o";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:15:"Attachment tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:53;s:6:"status";s:6:"normal";}i:10;a:16:{s:2:"id";i:8;s:4:"type";s:4:"file";s:3:"pid";i:2;s:4:"name";s:15:"general/profile";s:5:"title";s:7:"Profile";s:4:"icon";s:10:"fa fa-user";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:34;s:6:"status";s:6:"normal";}i:11;a:16:{s:2:"id";i:4;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:5:"addon";s:5:"title";s:5:"Addon";s:4:"icon";s:12:"fa fa-rocket";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:10:"Addon tips";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:12;a:16:{s:2:"id";i:66;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:4:"user";s:5:"title";s:4:"User";s:4:"icon";s:10:"fa fa-list";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:13;a:16:{s:2:"id";i:67;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:9:"user/user";s:5:"title";s:4:"User";s:4:"icon";s:10:"fa fa-user";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:14;a:16:{s:2:"id";i:73;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:10:"user/group";s:5:"title";s:10:"User group";s:4:"icon";s:11:"fa fa-users";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:15;a:16:{s:2:"id";i:79;s:4:"type";s:4:"file";s:3:"pid";i:66;s:4:"name";s:9:"user/rule";s:5:"title";s:9:"User rule";s:4:"icon";s:14:"fa fa-circle-o";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";N;s:6:"extend";s:0:"";s:10:"createtime";i:1491635035;s:10:"updatetime";i:1491635035;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:16;a:16:{s:2:"id";i:92;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:14:"import/log/add";s:5:"title";s:12:"导入数据";s:4:"icon";s:14:"fa fa-circle-o";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";s:6:"dialog";s:6:"extend";s:0:"";s:10:"createtime";i:1625906435;s:10:"updatetime";i:1625909822;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}i:17;a:16:{s:2:"id";i:93;s:4:"type";s:4:"file";s:3:"pid";i:0;s:4:"name";s:8:"material";s:5:"title";s:12:"物料管理";s:4:"icon";s:14:"fa fa-circle-o";s:3:"url";s:0:"";s:9:"condition";s:0:"";s:6:"remark";s:0:"";s:6:"ismenu";i:1;s:8:"menutype";s:7:"addtabs";s:6:"extend";s:0:"";s:10:"createtime";i:1626157560;s:10:"updatetime";i:1626159654;s:5:"weigh";i:0;s:6:"status";s:6:"normal";}}
\ No newline at end of file
runtime/temp/176390aa3b638b41482ff4af7c56d151.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:69:"E:\php\yinongshe\public/../application/admin\view\import\log\add.html";i:1625905280;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<form
id=
"add-form"
class=
"form-horizontal"
role=
"form"
data-toggle=
"validator"
method=
"POST"
action=
""
>
<div
class=
"form-group"
style=
"display: none;"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Table'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
id=
"selectable"
>
<?php
echo
Form
::
select
(
'row[table]'
,
$tableList
,
$table
,
[]);
?>
<span
id=
"helpBlock"
class=
"help-block"
>
可导入表请到该插件配置里设置
</span>
</div>
</div>
<input
class=
"form-control"
name=
"row[update]"
type=
"hidden"
value=
"
<?php
echo
$update
;
?>
"
>
<input
class=
"form-control"
name=
"row[to]"
type=
"hidden"
value=
"
<?php
echo
$to
;
?>
"
>
<div
class=
"hidden"
>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'NewTable'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-newtable"
class=
"form-control"
name=
"row[newtable]"
placeholder=
"不新建則留空,不需要前缀"
type=
"text"
>
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Row'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-row"
class=
"form-control"
name=
"row[row]"
type=
"number"
value=
2
>
<span
id=
"helpBlock"
class=
"help-block"
>
该行的上一行,为匹配行
</span>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Head_type'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
id=
"selecthead_type"
>
<?php
echo
Form
::
select
(
'row[head_type]'
,
[
'comment'
=>
'注释'
,
'name'
=>
'字段名'
],
'comment'
,
[
'data-rule'
=>
'required'
]);
?>
<span
id=
"helpBlock"
class=
"help-block"
></span>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'path'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
Form
::
upload
(
'row[path]'
,
''
,
[
'data-rule'
=>
'required'
]);
?>
</div>
</div>
<input
id=
"step"
type=
"hidden"
name=
"row[step]"
type=
"number"
value=
0
>
<div
class=
"form-group layer-footer"
>
<label
class=
"control-label col-xs-12 col-sm-2"
></label>
<div
class=
"col-xs-12 col-sm-8"
>
<div
class=
"hidden"
><button
type=
"submit"
id=
"submit"
class=
"btn btn-success btn-embossed"
>
<?php
echo
__
(
'预览'
);
?>
</button></div>
<button
id=
"import"
class=
"btn btn-success"
style=
"display:none"
>
<?php
echo
__
(
'开始导入'
);
?>
</button>
</div>
</div>
</form>
<div
class=
"panel-heading"
style=
"padding:10px 0"
>
<ul
class=
"nav nav-tabs"
>
<li
class=
"active"
><a
href=
"#one"
data-value=
""
data-toggle=
"tab"
>
<?php
echo
__
(
'匹配结果'
);
?>
</a></li>
<li
class=
""
><a
href=
"#two"
data-value=
""
data-toggle=
"tab"
>
<?php
echo
__
(
'数据预览'
);
?>
</a></li>
</ul>
</div>
<div
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<table
id=
"tableField"
class=
"table table-striped table-bordered table-hover table-nowrap"
width=
"100%"
>
</table>
</div>
</div>
<div
class=
"tab-pane fade"
id=
"two"
>
<div
class=
"widget-body no-padding"
>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover table-nowrap"
width=
"100%"
>
</table>
</div>
</div>
</div>
<style>
select
.input-sm
{
height
:
28px
;
line-height
:
15px
;
}
.popover-content
{
padding
:
9px
29px
;
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/1a10cc733573d763b2969b4c63c02806.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:74:"E:\php\yinongshe\public/../application/admin\view\auth\adminlog\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,delete'
);
?>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-detail=
"
<?php
echo
$auth
->
check
(
'auth/adminlog/index'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'auth/adminlog/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/1c53b67f1b56eda968abbf5ed8ee75d9.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
差异被折叠。
点击展开。
runtime/temp/28bff229245939beaea9a601308c9dcd.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:5:{s:68:"E:\php\yinongshe\public/../application/admin\view\auth\rule\add.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\auth\rule\tpl.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<form
id=
"add-form"
class=
"form-horizontal form-ajax"
role=
"form"
data-toggle=
"validator"
method=
"POST"
action=
""
>
<?php
echo
token
();
?>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Ismenu'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_radios
(
'row[ismenu]'
,
[
'1'
=>
__
(
'Yes'
),
'0'
=>
__
(
'No'
)]);
?>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Parent'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_select
(
'row[pid]'
,
$ruledata
,
null
,
[
'class'
=>
'form-control'
,
'required'
=>
''
]);
?>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"name"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Name'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
type=
"text"
class=
"form-control"
id=
"name"
name=
"row[name]"
data-placeholder-node=
"
<?php
echo
__
(
'Node tips'
);
?>
"
data-placeholder-menu=
"
<?php
echo
__
(
'Menu tips'
);
?>
"
value=
""
data-rule=
"required"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Title'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
type=
"text"
class=
"form-control"
id=
"title"
name=
"row[title]"
value=
""
data-rule=
"required"
/>
</div>
</div>
<div
class=
"form-group"
data-type=
"menu"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Url'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
type=
"text"
class=
"form-control"
id=
"url"
name=
"row[url]"
value=
""
data-rule=
""
placeholder=
"
<?php
echo
__
(
'Url tips'
);
?>
"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"icon"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Icon'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<div
class=
"input-group input-groupp-md"
>
<input
type=
"text"
class=
"form-control"
id=
"icon"
name=
"row[icon]"
value=
"fa fa-circle-o"
/>
<a
href=
"javascript:;"
class=
"btn-search-icon input-group-addon"
>
<?php
echo
__
(
'Search icon'
);
?>
</a>
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"weigh"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Weigh'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
type=
"text"
class=
"form-control"
id=
"weigh"
name=
"row[weigh]"
value=
"0"
data-rule=
"required"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"remark"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Condition'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
class=
"form-control"
id=
"condition"
name=
"row[condition]"
></textarea>
</div>
</div>
<div
class=
"form-group"
data-type=
"menu"
>
<label
for=
"remark"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Menutype'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_radios
(
'row[menutype]'
,
$menutypeList
);
?>
</div>
</div>
<div
class=
"form-group"
data-type=
"menu"
>
<label
for=
"remark"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Extend'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
class=
"form-control"
id=
"extend"
name=
"row[extend]"
></textarea>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"remark"
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Remark'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<textarea
class=
"form-control"
id=
"remark"
name=
"row[remark]"
></textarea>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Status'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_radios
(
'row[status]'
,
[
'normal'
=>
__
(
'Normal'
),
'hidden'
=>
__
(
'Hidden'
)]);
?>
</div>
</div>
<div
class=
"form-group hidden layer-footer"
>
<div
class=
"col-xs-2"
></div>
<div
class=
"col-xs-12 col-sm-8"
>
<button
type=
"submit"
class=
"btn btn-success btn-embossed disabled"
>
<?php
echo
__
(
'OK'
);
?>
</button>
<button
type=
"reset"
class=
"btn btn-default btn-embossed"
>
<?php
echo
__
(
'Reset'
);
?>
</button>
</div>
</div>
</form>
<style>
#chooseicon
{
margin
:
10px
;
}
#chooseicon
ul
{
margin
:
5px
0
0
0
;
}
#chooseicon
ul
li
{
width
:
41px
;
height
:
42px
;
line-height
:
42px
;
border
:
1px
solid
#efefef
;
padding
:
1px
;
margin
:
1px
;
text-align
:
center
;
font-size
:
18px
;
}
#chooseicon
ul
li
:hover
{
border
:
1px
solid
#2c3e50
;
cursor
:
pointer
;
}
</style>
<script
id=
"chooseicontpl"
type=
"text/html"
>
<
div
id
=
"chooseicon"
>
<
div
>
<
form
onsubmit
=
"return false;"
>
<
div
class
=
"input-group input-groupp-md"
>
<
div
class
=
"input-group-addon"
>
<?php
echo
__
(
'Search icon'
);
?>
<
/div
>
<
input
class
=
"js-icon-search form-control"
type
=
"text"
placeholder
=
""
>
<
/div
>
<
/form
>
<
/div
>
<
div
>
<
ul
class
=
"list-inline"
>
<%
for
(
var
i
=
0
;
i
<
iconlist
.
length
;
i
++
){
%>
<
li
data
-
font
=
"<%=iconlist[i]%>"
data
-
toggle
=
"tooltip"
title
=
"<%=iconlist[i]%>"
>
<
i
class
=
"fa fa-<%=iconlist[i]%>"
><
/i
>
<
/li
>
<%
}
%>
<
/ul
>
<
/div
>
<
/div
>
</script>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/299d25f0a9e02637430f86524c6a3685.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:69:"E:\php\yinongshe\public/../application/admin\view\category\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<div
class=
"panel-heading"
>
<?php
echo
build_heading
(
null
,
FALSE
);
?>
<ul
class=
"nav nav-tabs"
>
<li
class=
"active"
><a
href=
"#all"
data-toggle=
"tab"
>
<?php
echo
__
(
'All'
);
?>
</a></li>
<?php
if
(
is_array
(
$typeList
)
||
$typeList
instanceof
\think\Collection
||
$typeList
instanceof
\think\Paginator
)
:
if
(
count
(
$typeList
)
==
0
)
:
echo
""
;
else
:
foreach
(
$typeList
as
$key
=>
$vo
)
:
?>
<li><a
href=
"#
<?php
echo
$key
;
?>
"
data-toggle=
"tab"
>
<?php
echo
$vo
;
?>
</a></li>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</ul>
</div>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,add,edit,del'
);
?>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'category/multi'
)
?
''
:
'hide'
;
?>
"
>
<a
class=
"btn btn-primary btn-more dropdown-toggle btn-disabled disabled"
data-toggle=
"dropdown"
><i
class=
"fa fa-cog"
></i>
<?php
echo
__
(
'More'
);
?>
</a>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'category/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'category/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/2b90b7babd0ccd1ca7775229e177cf21.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:3:{s:66:"E:\php\yinongshe\public/../application/admin\view\index\login.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
<style
type=
"text/css"
>
body
{
color
:
#999
;
background-color
:
#f1f4fd
;
background-size
:
cover
;
}
a
{
color
:
#444
;
}
.login-screen
{
max-width
:
430px
;
padding
:
0
;
margin
:
100px
auto
0
auto
;
}
.login-screen
.well
{
border-radius
:
3px
;
-webkit-box-shadow
:
0
0
30px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
0
0
30px
rgba
(
0
,
0
,
0
,
0.1
);
background
:
rgba
(
255
,
255
,
255
,
1
);
border
:
none
;
overflow
:
hidden
;
padding
:
0
;
}
@media
(
max-width
:
767px
)
{
.login-screen
{
padding
:
0
20px
;
}
}
.profile-img-card
{
width
:
100px
;
height
:
100px
;
display
:
block
;
-moz-border-radius
:
50%
;
-webkit-border-radius
:
50%
;
border-radius
:
50%
;
margin
:
-93px
auto
30px
;
border
:
5px
solid
#fff
;
}
.profile-name-card
{
text-align
:
center
;
}
.login-head
{
background
:
#899fe1
;
}
.login-form
{
padding
:
40px
30px
;
position
:
relative
;
z-index
:
99
;
}
#login-form
{
margin-top
:
20px
;
}
#login-form
.input-group
{
margin-bottom
:
15px
;
}
#login-form
.form-control
{
font-size
:
13px
;
}
</style>
<!--@formatter:off-->
<?php
if
(
$background
)
:
?>
<style
type=
"text/css"
>
body
{
background-image
:
url
(
'
<?php
echo
$background
;
?>
'
);
}
</style>
<?php
endif
;
?>
<!--@formatter:on-->
</head>
<body>
<div
class=
"container"
>
<div
class=
"login-wrapper"
>
<div
class=
"login-screen"
>
<div
class=
"well"
>
<div
class=
"login-head"
>
<img
src=
"/assets/img/login-head.png"
style=
"width:100%;"
/>
</div>
<div
class=
"login-form"
>
<img
id=
"profile-img"
class=
"profile-img-card"
src=
"/assets/img/avatar.png"
/>
<p
id=
"profile-name"
class=
"profile-name-card"
></p>
<form
action=
""
method=
"post"
id=
"login-form"
>
<div
id=
"errtips"
class=
"hide"
></div>
<?php
echo
token
();
?>
<div
class=
"input-group"
>
<div
class=
"input-group-addon"
><span
class=
"glyphicon glyphicon-user"
aria-hidden=
"true"
></span></div>
<input
type=
"text"
class=
"form-control"
id=
"pd-form-username"
placeholder=
"
<?php
echo
__
(
'Username'
);
?>
"
name=
"username"
autocomplete=
"off"
value=
""
data-rule=
"
<?php
echo
__
(
'Username'
);
?>
:required;username"
/>
</div>
<div
class=
"input-group"
>
<div
class=
"input-group-addon"
><span
class=
"glyphicon glyphicon-lock"
aria-hidden=
"true"
></span></div>
<input
type=
"password"
class=
"form-control"
id=
"pd-form-password"
placeholder=
"
<?php
echo
__
(
'Password'
);
?>
"
name=
"password"
autocomplete=
"off"
value=
""
data-rule=
"
<?php
echo
__
(
'Password'
);
?>
:required;password"
/>
</div>
<?php
if
(
\think\Config
::
get
(
'fastadmin.login_captcha'
))
:
?>
<div
class=
"input-group"
>
<div
class=
"input-group-addon"
><span
class=
"glyphicon glyphicon-option-horizontal"
aria-hidden=
"true"
></span></div>
<input
type=
"text"
name=
"captcha"
class=
"form-control"
placeholder=
"
<?php
echo
__
(
'Captcha'
);
?>
"
data-rule=
"
<?php
echo
__
(
'Captcha'
);
?>
:required;length(4)"
autocomplete=
"off"
/>
<span
class=
"input-group-addon"
style=
"padding:0;border:none;cursor:pointer;"
>
<img
src=
"
<?php
echo
rtrim
(
'/'
,
'/'
);
?>
/index.php?s=/captcha"
width=
"100"
height=
"30"
onclick=
"this.src = '
<?php
echo
rtrim
(
'/'
,
'/'
);
?>
/index.php?s=/captcha&r=' + Math.random();"
/>
</span>
</div>
<?php
endif
;
?>
<div
class=
"form-group checkbox"
>
<label
class=
"inline"
for=
"keeplogin"
>
<input
type=
"checkbox"
name=
"keeplogin"
id=
"keeplogin"
value=
"1"
/>
<?php
echo
__
(
'Keep login'
);
?>
</label>
</div>
<div
class=
"form-group"
>
<button
type=
"submit"
class=
"btn btn-success btn-lg btn-block"
style=
"background:#708eea;"
>
<?php
echo
__
(
'Sign in'
);
?>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/2c1c66e1b601981f2e6f2ca9af0ac849.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
差异被折叠。
点击展开。
runtime/temp/2dadceb7a9d507129610fb679b38502d.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:70:"E:\php\yinongshe\public/../application/admin\view\user\user\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,edit,del'
);
?>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'user/user/multi'
)
?
''
:
'hide'
;
?>
"
>
<a
class=
"btn btn-primary btn-more dropdown-toggle btn-disabled disabled"
data-toggle=
"dropdown"
><i
class=
"fa fa-cog"
></i>
<?php
echo
__
(
'More'
);
?>
</a>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover table-nowrap"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'user/user/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'user/user/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/3d880564ea6fc5e7fab6288d0a364f46.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:1:{s:72:"E:\php\yinongshe\public/../application/common\view\tpl\dispatch_jump.tpl";i:1617358420;}*/
?>
<!DOCTYPE html>
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<title>
<?php
echo
__
(
'Warning'
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<style
type=
"text/css"
>
*
{
box-sizing
:
border-box
;
margin
:
0
;
padding
:
0
;
font-family
:
Lantinghei
SC
,
Open
Sans
,
Arial
,
Hiragino
Sans
GB
,
Microsoft
YaHei
,
"微软雅黑"
,
STHeiti
,
WenQuanYi
Micro
Hei
,
SimSun
,
sans-serif
;
-webkit-font-smoothing
:
antialiased
}
body
{
padding
:
70px
50px
;
background
:
#edf1f4
;
font-weight
:
400
;
font-size
:
1pc
;
-webkit-text-size-adjust
:
none
;
color
:
#333
}
a
{
outline
:
0
;
color
:
#3498db
;
text-decoration
:
none
;
cursor
:
pointer
}
.system-message
{
margin
:
20px
auto
;
padding
:
50px
0px
;
background
:
#fff
;
box-shadow
:
0
0
30px
hsla
(
0
,
0%
,
39%
,
.06
);
text-align
:
center
;
width
:
100%
;
border-radius
:
2px
;}
.system-message
h1
{
margin
:
0
;
margin-bottom
:
9pt
;
color
:
#444
;
font-weight
:
400
;
font-size
:
30px
}
.system-message
.jump
,
.system-message
.image
{
margin
:
20px
0
;
padding
:
0
;
padding
:
10px
0
;
font-weight
:
400
}
.system-message
.jump
{
font-size
:
14px
}
.system-message
.jump
a
{
color
:
#333
}
.system-message
p
{
font-size
:
9pt
;
line-height
:
20px
}
.system-message
.btn
{
display
:
inline-block
;
margin-right
:
10px
;
width
:
138px
;
height
:
2pc
;
border
:
1px
solid
#44a0e8
;
border-radius
:
30px
;
color
:
#44a0e8
;
text-align
:
center
;
font-size
:
1pc
;
line-height
:
2pc
;
margin-bottom
:
5px
;}
.success
.btn
{
border-color
:
#69bf4e
;
color
:
#69bf4e
}
.error
.btn
{
border-color
:
#ff8992
;
color
:
#ff8992
}
.info
.btn
{
border-color
:
#3498db
;
color
:
#3498db
}
.copyright
p
{
width
:
100%
;
color
:
#919191
;
text-align
:
center
;
font-size
:
10px
}
.system-message
.btn-grey
{
border-color
:
#bbb
;
color
:
#bbb
}
.clearfix
:after
{
clear
:
both
;
display
:
block
;
visibility
:
hidden
;
height
:
0
;
content
:
"."
}
@media
(
max-width
:
768px
){
body
{
padding
:
20px
;}}
@media
(
max-width
:
480px
){
.system-message
h1
{
font-size
:
30px
;}}
</style>
</head>
<body>
<?php
$codeText
=
$code
==
1
?
'success'
:
(
$code
==
0
?
'error'
:
'info'
);
?>
<div
class=
"system-message
<?php
echo
$codeText
;
?>
"
>
<div
class=
"image"
>
<img
src=
"/assets/img/
<?php
echo
$codeText
;
?>
.svg"
alt=
""
width=
"120"
/>
</div>
<h1>
<?php
echo
$msg
;
?>
</h1>
<?php
if
(
$url
)
:
?>
<p
class=
"jump"
>
<?php
echo
__
(
'This page will be re-directed in %s seconds'
,
'<span id="wait">'
.
$wait
.
'</span>'
);
?>
</p>
<?php
endif
;
?>
<p
class=
"clearfix"
>
<a
href=
"/"
class=
"btn btn-grey"
>
<?php
echo
__
(
'Go back'
);
?>
</a>
<?php
if
(
$url
)
:
?>
<a
href=
"
<?php
echo
$url
;
?>
"
class=
"btn btn-primary"
>
<?php
echo
__
(
'Jump now'
);
?>
</a>
<?php
endif
;
?>
</p>
</div>
<?php
if
(
$url
)
:
?>
<script
type=
"text/javascript"
>
(
function
()
{
var
wait
=
document
.
getElementById
(
'wait'
);
var
interval
=
setInterval
(
function
()
{
var
time
=
--
wait
.
innerHTML
;
if
(
time
<=
0
)
{
location
.
href
=
"
<?php
echo
$url
;
?>
"
;
clearInterval
(
interval
);
}
},
1000
);
})();
</script>
<?php
endif
;
?>
</body>
</html>
runtime/temp/733c4c8cd29323f45721aff143784f1e.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:71:"E:\php\yinongshe\public/../application/admin\view\auth\group\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,add,delete'
);
?>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'auth/group/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'auth/group/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/75591be34f6e1b1ae7f392231d2e989c.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:70:"E:\php\yinongshe\public/../application/admin\view\user\rule\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,add,edit,del'
);
?>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'user/rule/multi'
)
?
''
:
'hide'
;
?>
"
>
<a
class=
"btn btn-primary btn-more dropdown-toggle btn-disabled disabled"
data-toggle=
"dropdown"
><i
class=
"fa fa-cog"
></i>
<?php
echo
__
(
'More'
);
?>
</a>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'user/rule/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'user/rule/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/7e9c1d93ab88d38f31c3a61f81ff9e63.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:71:"E:\php\yinongshe\public/../application/admin\view\auth\admin\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,add,delete'
);
?>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'auth/admin/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'auth/admin/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/7eeba7bd6e719b8e83bd4a82fdda89ee.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:70:"E:\php\yinongshe\public/../application/admin\view\auth\group\edit.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<form
id=
"edit-form"
class=
"form-horizontal form-ajax"
role=
"form"
method=
"POST"
action=
""
>
<?php
echo
token
();
?>
<input
type=
"hidden"
name=
"row[rules]"
value=
""
/>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Parent'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_select
(
'row[pid]'
,
$groupdata
,
$row
[
'pid'
],
[
'class'
=>
'form-control selectpicker'
,
'data-rule'
=>
'required'
,
'data-id'
=>
$row
[
'id'
],
'data-pid'
=>
$row
[
'pid'
]]);
?>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Name'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
type=
"text"
class=
"form-control"
id=
"name"
name=
"row[name]"
value=
"
<?php
echo
htmlentities
(
$row
[
'name'
]);
?>
"
data-rule=
"required"
/>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Permission'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<span
class=
"text-muted"
><input
type=
"checkbox"
name=
""
id=
"checkall"
/>
<label
for=
"checkall"
><small>
<?php
echo
__
(
'Check all'
);
?>
</small></label></span>
<span
class=
"text-muted"
><input
type=
"checkbox"
name=
""
id=
"expandall"
/>
<label
for=
"expandall"
><small>
<?php
echo
__
(
'Expand all'
);
?>
</small></label></span>
<div
id=
"treeview"
></div>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Status'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<?php
echo
build_radios
(
'row[status]'
,
[
'normal'
=>
__
(
'Normal'
),
'hidden'
=>
__
(
'Hidden'
)],
$row
[
'status'
]);
?>
</div>
</div>
<div
class=
"form-group hidden layer-footer"
>
<label
class=
"control-label col-xs-12 col-sm-2 col-xs-2"
></label>
<div
class=
"col-xs-12 col-sm-8"
>
<button
type=
"submit"
class=
"btn btn-success btn-embossed disabled"
>
<?php
echo
__
(
'OK'
);
?>
</button>
<button
type=
"reset"
class=
"btn btn-default btn-embossed"
>
<?php
echo
__
(
'Reset'
);
?>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/8469331f17b49c272d26bab82d6128a9.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:71:"E:\php\yinongshe\public/../application/admin\view\user\group\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<?php
echo
build_toolbar
(
'refresh,add,edit,del'
);
?>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'user/group/multi'
)
?
''
:
'hide'
;
?>
"
>
<a
class=
"btn btn-primary btn-more dropdown-toggle btn-disabled disabled"
data-toggle=
"dropdown"
><i
class=
"fa fa-cog"
></i>
<?php
echo
__
(
'More'
);
?>
</a>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'user/group/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'user/group/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/a8df5ccbf9c64e051fd3c93f4c6743e1.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:68:"E:\php\yinongshe\public/../application/admin\view\material\edit.html";i:1626169425;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<form
id=
"edit-form"
class=
"form-horizontal"
role=
"form"
data-toggle=
"validator"
method=
"POST"
action=
""
>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Name'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-name"
class=
"form-control"
name=
"row[name]"
type=
"text"
value=
"
<?php
echo
htmlentities
(
$row
[
'name'
]);
?>
"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Image_url'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-image_url"
class=
"form-control"
name=
"row[image_url]"
type=
"text"
value=
"
<?php
echo
htmlentities
(
$row
[
'image_url'
]);
?>
"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Create_time'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-create_time"
class=
"form-control datetimepicker"
data-date-format=
"YYYY-MM-DD HH:mm:ss"
data-use-current=
"true"
name=
"row[create_time]"
type=
"text"
value=
"
<?php
echo
$row
[
'create_time'
]
?
datetime
(
$row
[
'create_time'
])
:
''
;
?>
"
>
</div>
</div>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Is_del'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-is_del"
class=
"form-control"
name=
"row[is_del]"
type=
"number"
value=
"
<?php
echo
htmlentities
(
$row
[
'is_del'
]);
?>
"
>
</div>
</div>
<div
class=
"form-group layer-footer"
>
<label
class=
"control-label col-xs-12 col-sm-2"
></label>
<div
class=
"col-xs-12 col-sm-8"
>
<button
type=
"submit"
class=
"btn btn-success btn-embossed disabled"
>
<?php
echo
__
(
'OK'
);
?>
</button>
<button
type=
"reset"
class=
"btn btn-default btn-embossed"
>
<?php
echo
__
(
'Reset'
);
?>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/b1e4b39f7ee4cbbeaa8fd7a38e9e6379.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
差异被折叠。
点击展开。
runtime/temp/cc5041726595a2dde7c8eef8c085aef9.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
差异被折叠。
点击展开。
runtime/temp/e9bceb0e07a83535b28e2e6bb7e16daa.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:69:"E:\php\yinongshe\public/../application/admin\view\material\index.html";i:1626172381;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<a
href=
"javascript:;"
class=
"btn btn-primary btn-refresh"
title=
"
<?php
echo
__
(
'Refresh'
);
?>
"
><i
class=
"fa fa-refresh"
></i>
</a>
<a
href=
"javascript:;"
class=
"btn btn-success btn-add
<?php
echo
$auth
->
check
(
'material/add'
)
?
''
:
'hide'
;
?>
"
title=
"
<?php
echo
__
(
'Add'
);
?>
"
><i
class=
"fa fa-plus"
></i>
<?php
echo
__
(
'Add'
);
?>
</a>
<a
href=
"javascript:;"
class=
"btn btn-danger btn-del btn-disabled disabled
<?php
echo
$auth
->
check
(
'material/del'
)
?
''
:
'hide'
;
?>
"
title=
"
<?php
echo
__
(
'Delete'
);
?>
"
><i
class=
"fa fa-trash"
></i>
<?php
echo
__
(
'Delete'
);
?>
</a>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'material/multi'
)
?
''
:
'hide'
;
?>
"
>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
</div>
<table
id=
"table"
class=
"table table-striped table-bordered table-hover table-nowrap"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'material/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'material/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/f161df45c209e12ce260a9f410047f5f.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:70:"E:\php\yinongshe\public/../application/admin\view\auth\rule\index.html";i:1617358420;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<style>
.bootstrap-table
tr
td
.text-muted
{
color
:
#888
;}
</style>
<div
class=
"panel panel-default panel-intro"
>
<?php
echo
build_heading
();
?>
<div
class=
"panel-body"
>
<div
id=
"myTabContent"
class=
"tab-content"
>
<div
class=
"tab-pane fade active in"
id=
"one"
>
<div
class=
"widget-body no-padding"
>
<div
id=
"toolbar"
class=
"toolbar"
>
<a
href=
"javascript:;"
class=
"btn btn-primary btn-refresh"
title=
"
<?php
echo
__
(
'Refresh'
);
?>
"
data-force-refresh=
"false"
><i
class=
"fa fa-refresh"
></i>
</a>
<a
href=
"javascript:;"
class=
"btn btn-success btn-add
<?php
echo
$auth
->
check
(
'auth/rule/add'
)
?
''
:
'hide'
;
?>
"
title=
"
<?php
echo
__
(
'Add'
);
?>
"
><i
class=
"fa fa-plus"
></i>
<?php
echo
__
(
'Add'
);
?>
</a>
<a
href=
"javascript:;"
class=
"btn btn-success btn-edit btn-disabled disabled
<?php
echo
$auth
->
check
(
'auth/rule/edit'
)
?
''
:
'hide'
;
?>
"
title=
"
<?php
echo
__
(
'Edit'
);
?>
"
><i
class=
"fa fa-pencil"
></i>
<?php
echo
__
(
'Edit'
);
?>
</a>
<a
href=
"javascript:;"
class=
"btn btn-danger btn-del btn-disabled disabled
<?php
echo
$auth
->
check
(
'auth/rule/del'
)
?
''
:
'hide'
;
?>
"
title=
"
<?php
echo
__
(
'Delete'
);
?>
"
><i
class=
"fa fa-trash"
></i>
<?php
echo
__
(
'Delete'
);
?>
</a>
<div
class=
"dropdown btn-group
<?php
echo
$auth
->
check
(
'auth/rule/multi'
)
?
''
:
'hide'
;
?>
"
>
<a
class=
"btn btn-primary btn-more dropdown-toggle btn-disabled disabled"
data-toggle=
"dropdown"
><i
class=
"fa fa-cog"
></i>
<?php
echo
__
(
'More'
);
?>
</a>
<ul
class=
"dropdown-menu text-left"
role=
"menu"
>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=normal"
><i
class=
"fa fa-eye"
></i>
<?php
echo
__
(
'Set to normal'
);
?>
</a></li>
<li><a
class=
"btn btn-link btn-multi btn-disabled disabled"
href=
"javascript:;"
data-params=
"status=hidden"
><i
class=
"fa fa-eye-slash"
></i>
<?php
echo
__
(
'Set to hidden'
);
?>
</a></li>
</ul>
</div>
<a
href=
"javascript:;"
class=
"btn btn-danger btn-toggle-all"
><i
class=
"fa fa-plus"
></i>
<?php
echo
__
(
'Toggle all'
);
?>
</a>
</div>
<table
id=
"table"
class=
"table table-bordered table-hover"
data-operate-edit=
"
<?php
echo
$auth
->
check
(
'auth/rule/edit'
);
?>
"
data-operate-del=
"
<?php
echo
$auth
->
check
(
'auth/rule/del'
);
?>
"
width=
"100%"
>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
runtime/temp/f7d07a9d2cbdbcbf5b848ff2d686d943.php
deleted
100644 → 0
浏览文件 @
8c71ccdf
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:4:{s:67:"E:\php\yinongshe\public/../application/admin\view\material\add.html";i:1626170740;s:59:"E:\php\yinongshe\application\admin\view\layout\default.html";i:1617358420;s:56:"E:\php\yinongshe\application\admin\view\common\meta.html";i:1617358420;s:58:"E:\php\yinongshe\application\admin\view\common\script.html";i:1617358420;}*/
?>
<!DOCTYPE html>
<html
lang=
"
<?php
echo
$config
[
'language'
];
?>
"
>
<head>
<meta
charset=
"utf-8"
>
<title>
<?php
echo
(
isset
(
$title
)
&&
(
$title
!==
''
)
?
$title
:
''
);
?>
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, user-scalable=no"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"referrer"
content=
"never"
>
<meta
name=
"robots"
content=
"noindex, nofollow"
>
<link
rel=
"shortcut icon"
href=
"/assets/img/favicon.ico"
/>
<!-- Loading Bootstrap -->
<link
href=
"/assets/css/backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
if
(
\think\Config
::
get
(
'fastadmin.adminskin'
))
:
?>
<link
href=
"/assets/css/skins/
<?php
echo
\think\Config
::
get
(
'fastadmin.adminskin'
);
?>
.css?v=
<?php
echo
\think\Config
::
get
(
'site.version'
);
?>
"
rel=
"stylesheet"
>
<?php
endif
;
?>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="/assets/js/html5shiv.js"></script>
<script src="/assets/js/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
>
var
require
=
{
config
:
<?php
echo
json_encode
(
$config
);
?>
};
</script>
</head>
<body
class=
"inside-header inside-aside
<?php
echo
defined
(
'IS_DIALOG'
)
&&
IS_DIALOG
?
'is-dialog'
:
''
;
?>
"
>
<div
id=
"main"
role=
"main"
>
<div
class=
"tab-content tab-addtabs"
>
<div
id=
"content"
>
<div
class=
"row"
>
<div
class=
"col-xs-12 col-sm-12 col-md-12 col-lg-12"
>
<section
class=
"content-header hide"
>
<h1>
<?php
echo
__
(
'Dashboard'
);
?>
<small>
<?php
echo
__
(
'Control panel'
);
?>
</small>
</h1>
</section>
<?php
if
(
!
IS_DIALOG
&&
!
\think\Config
::
get
(
'fastadmin.multiplenav'
)
&&
\think\Config
::
get
(
'fastadmin.breadcrumb'
))
:
?>
<!-- RIBBON -->
<div
id=
"ribbon"
>
<ol
class=
"breadcrumb pull-left"
>
<?php
if
(
$auth
->
check
(
'dashboard'
))
:
?>
<li><a
href=
"dashboard"
class=
"addtabsit"
><i
class=
"fa fa-dashboard"
></i>
<?php
echo
__
(
'Dashboard'
);
?>
</a></li>
<?php
endif
;
?>
</ol>
<ol
class=
"breadcrumb pull-right"
>
<?php
foreach
(
$breadcrumb
as
$vo
)
:
?>
<li><a
href=
"javascript:;"
data-url=
"
<?php
echo
$vo
[
'url'
];
?>
"
>
<?php
echo
$vo
[
'title'
];
?>
</a></li>
<?php
endforeach
;
?>
</ol>
</div>
<!-- END RIBBON -->
<?php
endif
;
?>
<div
class=
"content"
>
<form
id=
"add-form"
class=
"form-horizontal"
role=
"form"
data-toggle=
"validator"
method=
"POST"
action=
""
>
<div
class=
"form-group"
>
<label
class=
"control-label col-xs-12 col-sm-2"
>
<?php
echo
__
(
'Name'
);
?>
:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<input
id=
"c-name"
class=
"form-control"
name=
"row[name]"
type=
"text"
>
</div>
</div>
<!-- <div class="form-group">-->
<!-- <label class="control-label col-xs-12 col-sm-2">
<?php
echo
__
(
'Image_url'
);
?>
:</label>-->
<!-- <div class="col-xs-12 col-sm-8">-->
<!-- <input id="c-image_url" class="form-control" name="row[image_url]" type="text">-->
<!-- </div>-->
<!-- </div>-->
<div
class=
"form-group"
>
<label
for=
"c-avatar"
class=
"control-label col-xs-12 col-sm-2"
>
物料上传:
</label>
<div
class=
"col-xs-12 col-sm-8"
>
<div
class=
"input-group"
>
<input
id=
"c-avatar"
data-rule=
""
class=
"form-control"
size=
"50"
name=
"row[image_url]"
type=
"text"
value=
""
>
<div
class=
"input-group-addon no-border no-padding"
>
<span><button
type=
"button"
id=
"plupload-avatar"
class=
"btn btn-danger plupload"
data-input-id=
"c-avatar"
data-mimetype=
"image/gif,image/jpeg,image/png,image/jpg,image/bmp"
data-multiple=
"false"
data-preview-id=
"p-avatar"
><i
class=
"fa fa-upload"
></i>
上传
</button></span>
<span><button
type=
"button"
id=
"fachoose-avatar"
class=
"btn btn-primary fachoose"
data-input-id=
"c-avatar"
data-mimetype=
"image/*"
data-multiple=
"false"
><i
class=
"fa fa-list"
></i>
选择
</button></span>
</div>
<span
class=
"msg-box n-right"
for=
"c-avatar"
></span>
</div>
<ul
class=
"row list-inline plupload-preview"
id=
"p-avatar"
></ul>
</div>
</div>
<input
id=
"c-create_time"
data-date-format=
"YYYY-MM-DD HH:mm:ss"
data-use-current=
"true"
name=
"row[create_time]"
type=
"hidden"
value=
"
<?php
echo
date
(
'Y-m-d H:i:s'
);
?>
"
>
<input
id=
"c-is_del"
name=
"row[is_del]"
type=
"hidden"
value=
"0"
>
<!-- <div class="form-group">-->
<!-- <label class="control-label col-xs-12 col-sm-2">
<?php
echo
__
(
'Is_del'
);
?>
:</label>-->
<!-- <div class="col-xs-12 col-sm-8">-->
<!-- <input id="c-is_del" class="form-control" name="row[is_del]" type="number" value="0">-->
<!-- </div>-->
<!-- </div>-->
<div
class=
"form-group layer-footer"
>
<label
class=
"control-label col-xs-12 col-sm-2"
></label>
<div
class=
"col-xs-12 col-sm-8"
>
<button
type=
"submit"
class=
"btn btn-success btn-embossed disabled"
>
<?php
echo
__
(
'OK'
);
?>
</button>
<button
type=
"reset"
class=
"btn btn-default btn-embossed"
>
<?php
echo
__
(
'Reset'
);
?>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script
src=
"/assets/js/require
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js"
data-main=
"/assets/js/require-backend
<?php
echo
\think\Config
::
get
(
'app_debug'
)
?
''
:
'.min'
;
?>
.js?v=
<?php
echo
htmlentities
(
$site
[
'version'
]);
?>
"
></script>
</body>
</html>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论