123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- <?php /*a:5:{s:83:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\setting\system_config_tab\sonconfigtab.php";i:1595820902;s:61:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\public\container.php";i:1595820902;s:62:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\public\frame_head.php";i:1595820902;s:57:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\public\style.php";i:1595820902;s:64:"D:\phpstudy_pro\WWW\CRMEB\app\admin\view\public\frame_footer.php";i:1595820902;}*/ ?>
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
-
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <?php if(empty($is_layui) || (($is_layui instanceof \think\Collection || $is_layui instanceof \think\Paginator ) && $is_layui->isEmpty())): ?>
- <link href="/system/frame/css/bootstrap.min.css?v=3.4.0" rel="stylesheet">
- <?php endif; ?>
- <link href="/static/plug/layui/css/layui.css" rel="stylesheet">
- <link href="/system/css/layui-admin.css" rel="stylesheet">
- <link href="/system/frame/css/font-awesome.min.css?v=4.3.0" rel="stylesheet">
- <link href="/system/frame/css/animate.min.css" rel="stylesheet">
- <link href="/system/frame/css/style.min.css?v=3.0.0" rel="stylesheet">
- <script src="/system/frame/js/jquery.min.js"></script>
- <script src="/system/frame/js/bootstrap.min.js"></script>
- <script src="/static/plug/layui/layui.all.js"></script>
- <script>
- $eb = parent._mpApi;
- window.controlle="<?php echo strtolower(trim(preg_replace("/[A-Z]/", "_\\0", app('request')->controller()), "_"));?>";
- window.module="<?php echo app('http')->getName();?>";
- </script>
- <title></title>
-
- <!--<script type="text/javascript" src="/static/plug/basket.js"></script>-->
- <script type="text/javascript" src="/static/plug/requirejs/require.js"></script>
- <?php /* <script type="text/javascript" src="/static/plug/requirejs/require-basket-load.js"></script> */ ?>
- <script>
- var hostname = location.hostname;
- if(location.port) hostname += ':' + location.port;
- requirejs.config({
- map: {
- '*': {
- 'css': '/static/plug/requirejs/require-css.js'
- }
- },
- shim:{
- 'iview':{
- deps:['css!iviewcss']
- },
- 'layer':{
- deps:['css!layercss']
- }
- },
- baseUrl:'//'+hostname+'/',
- paths: {
- 'static':'static',
- 'system':'system',
- 'vue':'static/plug/vue/dist/vue.min',
- 'axios':'static/plug/axios.min',
- 'iview':'static/plug/iview/dist/iview.min',
- 'iviewcss':'static/plug/iview/dist/styles/iview',
- 'lodash':'static/plug/lodash',
- 'layer':'static/plug/layer/layer',
- 'layercss':'static/plug/layer/theme/default/layer',
- 'jquery':'static/plug/jquery/jquery.min',
- 'moment':'static/plug/moment',
- 'sweetalert':'static/plug/sweetalert2/sweetalert2.all.min',
- 'formCreate':'/static/plug/form-create/form-create.min',
- },
- basket: {
- excludes:['system/js/index','system/util/mpVueComponent','system/util/mpVuePackage']
- // excludes:['system/util/mpFormBuilder','system/js/index','system/util/mpVueComponent','system/util/mpVuePackage']
- }
- });
- </script>
- <script type="text/javascript" src="/system/util/mpFrame.js"></script>
-
- </head>
- <body class="gray-bg">
- <div class="wrapper wrapper-content">
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <button type="button" class="btn btn-w-m btn-primary add-filed">配置分类</button>
- <button type="button" class="btn btn-w-m btn-primary add_filed_base">添加配置</button>
- </div>
- <div class="ibox-content">
- <div class="table-responsive">
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <th>编号</th>
- <th>配置名称</th>
- <th>字段变量</th>
- <th>字段类型</th>
- <th>值</th>
- <th>是否显示</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody class="">
- <?php if(is_array($list) || $list instanceof \think\Collection || $list instanceof \think\Paginator): $i = 0; $__LIST__ = $list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
- <tr>
- <td class="text-center">
- <?php echo htmlentities($vo['id']); ?>
- </td>
- <td class="text-center">
- <?php echo htmlentities($vo['info']); ?>
- </td>
- <td class="text-center">
- <?php echo htmlentities($vo['menu_name']); ?>
- </td>
- <td class="text-center">
- <?php echo htmlentities($vo['type']); ?>
- </td>
- <td class="text-center">
- <?php
- if($vo['type'] == 'text' || $vo['type'] == 'textarea' || $vo['type'] == 'radio' || $vo['type'] == 'checkbox'){
- echo $vo['value'];
- }else if($vo['type'] == 'upload'){
- if($vo['upload_type'] == 3){
- if($vo['value']) {
- if(is_array($vo['value'])){
- foreach ($vo['value'] as $v){
- ?>
- <div class="attachment">
- <div class="file-box">
- <div class="file">
- <a href="http://<?php echo $_SERVER['SERVER_NAME'].$v;?>" target="_blank">
- <span class="corner"></span>
- <div class="icon">
- <i class="fa fa-file"></i>
- </div>
- <div class="file-name">
- <?php
- //显示带有文件扩展名的文件名
- echo basename($v);
- ?>
- </div>
- </a>
- </div>
- </div>
- <div class="clearfix"></div>
- </div>
- <?php } }else{ ?>
- <div class="attachment">
- <div class="file-box">
- <div class="file">
- <a href="http://<?php echo $_SERVER['SERVER_NAME'].$vo['value'];?>" target="_blank">
- <span class="corner"></span>
- <div class="icon">
- <i class="fa fa-file"></i>
- </div>
- <div class="file-name">
- <?php
- //显示带有文件扩展名的文件名
- echo basename($vo['value']);
- ?>
- </div>
- </a>
- </div>
- </div>
- <div class="clearfix"></div>
- </div>
- <?php }
- }
- }else{?>
- <div class="attachment">
- <?php
- if(is_array($vo['value'])){
- foreach ($vo['value'] as $v){
- ?>
- <div class="file-box">
- <div class="file">
- <span class="corner"></span>
- <div class="image" style="cursor: pointer">
- <img alt="image" class="img-responsive open_image" data-image="<?php echo htmlentities($v); ?>" src="<?php echo htmlentities($v); ?>">
- </div>
- <div class="file-name">
- <?php
- //显示带有文件扩展名的文件名
- echo basename($v);
- ?>
- </div>
- </div>
- </div>
- <?php
- }
- }else{
- ?>
- <div class="file-box">
- <div class="file">
- <span class="corner"></span>
- <div class="image" style="cursor: pointer">
- <img alt="image" class="img-responsive open_image" data-image="<?php echo htmlentities($vo['value']); ?>" src="<?php echo htmlentities($vo['value']); ?>">
- </div>
- <div class="file-name">
- <?php
- //显示带有文件扩展名的文件名
- echo basename($vo['value']);
- ?>
- </div>
- </div>
- </div>
- <?php
- }
- ?>
- <div class="clearfix"></div>
- </div>
- <?php
- }
- }
- ?>
- </td>
- <td class="text-center">
- <?php if($vo['status'] == 1): ?>
- <i class="fa fa-check text-navy"></i>
- <?php elseif($vo['status'] == 2): ?>
- <i class="fa fa-close text-danger"></i>
- <?php endif; ?>
- </td>
- <td class="text-center">
- <button class="btn btn-info btn-xs" type="button" onclick="$eb.createModalFrame('编辑','<?php echo Url('setting.system_config/edit_config',array('id'=>$vo['id'])); ?>')"><i class="fa fa-edit"></i> 编辑</button>
- <button class="btn btn-danger btn-xs del_config_tab" data-id="<?php echo htmlentities($vo['id']); ?>" type="button" data-url="<?php echo Url('setting.system_config/delete_config',array('id'=>$vo['id'])); ?>" ><i class="fa fa-times"></i> 删除
- </button>
- </td>
- </tr>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- $('.add-filed').on('click',function (e) {
- window.location.replace("<?php echo Url('index'); ?>");
- })
- $('.open_image').on('click',function (e) {
- var image = $(this).data('image');
- $eb.openImage(image);
- })
- $('.del_config_tab').on('click',function(){
- var _this = $(this),url =_this.data('url');
- $eb.$swal('delete',function(){
- $eb.axios.get(url).then(function(res){
- if(res.status == 200 && res.data.code == 200) {
- $eb.$swal('success',res.data.msg);
- _this.parents('tr').remove();
- }else
- return Promise.reject(res.data.msg || '删除失败')
- }).catch(function(err){
- $eb.$swal('error',err);
- });
- })
- });
- $('.add_filed_base').on('click',function (e) {
- $eb.createModalFrame('添加配置字段',"<?php echo Url('setting.systemConfig/create',['tab_id'=>app('request')->param('tab_id'),'type'=>0]); ?>");
- // $eb.swal({
- // title: '请选择数据类型',
- // input: 'radio',
- // inputOptions: ['文本框','多行文本框','单选框','文件上传','多选框'],
- // inputValidator: function(result) {
- // return new Promise(function(resolve, reject) {
- // if (result) {
- // resolve();
- // } else {
- // reject('请选择数据类型');
- // }
- // });
- // }
- // }).then(function(result) {
- // if (result) {
- // $eb.createModalFrame(this.innerText,"<?php echo Url('setting.systemConfig/create',array('tab_id'=>app('request')->param('tab_id'))); ?>?type="+result);
- // }
- // })
- })
- </script>
- </div>
- </body>
- </html>
|