682 lines
27 KiB
PHP
682 lines
27 KiB
PHP
<?php if (!defined("RUNTIME")) exit(); /*a:5:{s:66:"C:\lewis\phpstudy_pro\WWW\foxcms\app\admin\view\contact\index.html";i:1732932220;s:59:"C:\lewis\phpstudy_pro\WWW\foxcms\app\admin\view\foxcms.html";i:1732932220;s:56:"C:\lewis\phpstudy_pro\WWW\foxcms\app\admin\view\css.html";i:1732932220;s:64:"C:\lewis\phpstudy_pro\WWW\foxcms\app\admin\view\footed-copy.html";i:1732932220;s:59:"C:\lewis\phpstudy_pro\WWW\foxcms\app\admin\view\script.html";i:1732932220;}*/ ?>
|
||
<!DOCTYPE html>
|
||
<html lang="cn">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title><?php echo xn_cfg('base.sys_name'); ?></title>
|
||
<link rel="stylesheet" href="<?php echo htmlentities($staticPath); ?>css/foxui-1.32.min.css" />
|
||
<link rel="stylesheet" href="<?php echo htmlentities($staticPath); ?>css/common.min.css" />
|
||
<link rel="stylesheet" href="<?php echo htmlentities($staticPath); ?>css/admin_common.css" />
|
||
|
||
|
||
|
||
</head>
|
||
<body>
|
||
<div class="foxcms-container basic-set-page-container apply-page-container">
|
||
<div class="foxcms-header">
|
||
<div class="foxcms-logo">
|
||
<img style="width: 100px;" src="/static/images/foxcms_logo.svg">
|
||
</div>
|
||
<div class="foxcms-modal">
|
||
<?php if($clickName): ?>
|
||
<p><?php echo htmlentities($clickName); ?></p>
|
||
<?php else: ?>
|
||
<button class="foxui-text" onclick="window.history.go(-1)">
|
||
<i class="foxui-icon-fanhui-o"></i>
|
||
<span>返回</span>
|
||
</button>
|
||
<?php endif; ?>
|
||
</div>
|
||
<div class="foxcms-bar">
|
||
<div class="foxcms-bar-left">
|
||
<ul class="foxui-breadcrumb">
|
||
<?php if(is_array($breadcrumb) || $breadcrumb instanceof \think\Collection || $breadcrumb instanceof \think\Paginator): if( count($breadcrumb)==0 ) : echo "" ;else: foreach($breadcrumb as $key=>$vo): ?>
|
||
<li class="foxui-breadcrumb-item">
|
||
<a href="<?php echo htmlentities($vo['url']); ?>"><?php echo htmlentities($vo['title']); ?></a>
|
||
</li>
|
||
<?php endforeach; endif; else: echo "" ;endif; ?>
|
||
</ul>
|
||
</div>
|
||
<div class="foxcms-bar-right">
|
||
|
||
<div class="foxui-dropdown lang-select">
|
||
<?php if(sizeof($otherLangs) > 0): ?>
|
||
<button class="foxui-dropdown-handle foxui-dropdown-icon lang-btn" data-trigger="hover" data-lang="<?php echo htmlentities($curlang['lang']); ?>"><?php echo htmlentities($curlang['name']); ?></button>
|
||
<div class="foxui-dropdown-menu">
|
||
<ul class="foxui-dropdown-slide">
|
||
<?php foreach($otherLangs as $key=>$vo): ?>
|
||
<li class="foxui-dropdown-item" data-id="<?php echo htmlentities($vo['id']); ?>" data-lang="<?php echo htmlentities($vo['lang']); ?>" onclick="langHandover(this)"><?php echo htmlentities($vo['name']); ?></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</div>
|
||
<?php else: ?>
|
||
<button class="foxui-dropdown-handle foxui-dropdown-icon lang-btn display-none" data-trigger="hover" data-lang="<?php echo htmlentities($curlang['lang']); ?>"><?php echo htmlentities($curlang['name']); ?></button>
|
||
<?php endif; ?>
|
||
</div>
|
||
|
||
<div class="item icon index">
|
||
<i class="foxui-icon-shouye-o"></i>
|
||
</div>
|
||
<div class="item role">
|
||
<div class="foxui-dropdown">
|
||
<button class="foxui-text foxui-dropdown-handle foxui-dropdown-icon" data-trigger="hover" id="barService">
|
||
<i class="foxui-icon-kefu-o"></i>
|
||
</button>
|
||
</div>
|
||
<div class="foxui-dropdown dropdown">
|
||
<button class="foxui-text foxui-dropdown-handle foxui-dropdown-icon" data-trigger="hover"><?php echo session("admin_auth.nickname"); ?></button>
|
||
<div class="foxui-dropdown-menu">
|
||
<ul class="foxui-dropdown-slide">
|
||
<li class="foxui-dropdown-item" data-id="1">个人中心</li>
|
||
<li class="foxui-dropdown-item" data-id="2">修改密码</li>
|
||
<li class="foxui-dropdown-item" data-id="3">更新缓存</li>
|
||
<li class="foxui-divided" data-id="4"></li>
|
||
<li class="foxui-dropdown-item" data-id="5">退出系统</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="item icon logout">
|
||
<a onclick="logout()"><i class="foxui-icon-tuichu-o"></i></a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="foxcms-main">
|
||
<div class="foxcms-nav">
|
||
<ul>
|
||
<?php if(is_array($menu) || $menu instanceof \think\Collection || $menu instanceof \think\Paginator): if( count($menu)==0 ) : echo "" ;else: foreach($menu as $key=>$vo): ?>
|
||
<li>
|
||
<a class="<?php if($pid == $vo['id']): ?>active<?php endif; ?>" href="<?php echo htmlentities($vo['name']); ?>">
|
||
<i class="foxui-<?php echo htmlentities($vo['icon']); ?>"></i>
|
||
<span><?php echo htmlentities($vo['title']); ?></span>
|
||
</a>
|
||
</li>
|
||
<?php endforeach; endif; else: echo "" ;endif; ?>
|
||
</ul>
|
||
</div>
|
||
<?php if(sizeof($chileMenus) > 0): ?>
|
||
<div class="foxcms-menu-nav" style="<?php echo htmlentities($fox_menu); ?>">
|
||
<div class="foxcms-menu-nav-inner" id="foxMenuFrame">
|
||
|
||
<ul class="foxui-menu foxui-type-vertical">
|
||
<?php if(is_array($chileMenus) || $chileMenus instanceof \think\Collection || $chileMenus instanceof \think\Paginator): if( count($chileMenus)==0 ) : echo "" ;else: foreach($chileMenus as $key=>$cm): if(empty($cm['_data']) != true): ?>
|
||
<li class="foxui-menu-submenu">
|
||
<div class="foxui-menu-handle foxui-menu-icon is-active">
|
||
<span><?php echo htmlentities($cm['title']); ?></span>
|
||
</div>
|
||
<div class="foxui-menu-menu" style="display: block">
|
||
<ul class="foxui-menu-slide">
|
||
<?php if(is_array($cm['_data']) || $cm['_data'] instanceof \think\Collection || $cm['_data'] instanceof \think\Paginator): if( count($cm['_data'])==0 ) : echo "" ;else: foreach($cm['_data'] as $key=>$ccm): if(empty($ccm['_data']) != true): ?>
|
||
<li class="foxui-menu-submenu">
|
||
<div class="foxui-menu-handle foxui-menu-icon is-active">
|
||
<span><?php echo htmlentities($ccm['title']); ?></span>
|
||
</div>
|
||
<div class="foxui-menu-menu" style="display: block">
|
||
<ul class="foxui-menu-slide">
|
||
<?php if(is_array($ccm['_data']) || $ccm['_data'] instanceof \think\Collection || $ccm['_data'] instanceof \think\Paginator): if( count($ccm['_data'])==0 ) : echo "" ;else: foreach($ccm['_data'] as $key=>$cccm): if($clickId == $cccm['id']): ?>
|
||
<li class="foxui-menu-item is-active"><?php echo htmlentities($cccm['title']); ?></li>
|
||
<?php else: ?>
|
||
<li class="foxui-menu-item">
|
||
<a href="<?php echo htmlentities($cccm['name']); ?>?columnId=<?php echo htmlentities($cccm['id']); ?>"><?php echo htmlentities($cccm['title']); ?></a>
|
||
</li>
|
||
<?php endif; ?>
|
||
<?php endforeach; endif; else: echo "" ;endif; ?>
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
<?php else: ?>
|
||
<li class="foxui-menu-item <?php if($clickId == $ccm['id']): ?>is-active<?php endif; ?>">
|
||
<a href="<?php echo htmlentities($ccm['name']); ?>?columnId=<?php echo htmlentities($ccm['id']); ?>"><?php echo htmlentities($ccm['title']); ?></a>
|
||
</li>
|
||
<?php endif; ?>
|
||
<?php endforeach; endif; else: echo "" ;endif; ?>
|
||
</ul>
|
||
</div>
|
||
</li>
|
||
<?php else: ?>
|
||
<li class="foxui-menu-item <?php if($clickId == $cm['id']): ?>is-active<?php endif; ?>">
|
||
<a href="<?php echo htmlentities($cm['name']); ?>?columnId=<?php echo htmlentities($cm['id']); ?>"><?php echo htmlentities($cm['title']); ?></a>
|
||
</li>
|
||
<?php endif; ?>
|
||
<?php endforeach; endif; else: echo "" ;endif; ?>
|
||
</ul>
|
||
</div>
|
||
<div class="foxcms-menu-nav-fold">
|
||
<i class="foxui-icon-zuizuo"></i>
|
||
</div>
|
||
</div>
|
||
<?php endif; ?>
|
||
<div class="foxcms-article foxui-scroll-container has-content-footer">
|
||
<div class="foxcms-content">
|
||
|
||
|
||
<div class="foxcms-content-inner">
|
||
<input name="bcid" value="<?php echo htmlentities($bcid); ?>" type="hidden" />
|
||
<input name="id" value="<?php echo htmlentities($contact['id']); ?>" type="hidden" />
|
||
<!-- page content -->
|
||
<div class="contact-way-content">
|
||
<div class="section section-panel">
|
||
<div class="section-title">联系方式</div>
|
||
<div class="section-main">
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label class="foxui-required">百度地图AK:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入百度地图应用AK" required value="<?php echo htmlentities($contact['map_ak']); ?>" name="map_ak" />
|
||
</div>
|
||
</div>
|
||
<p class="input-box-info">
|
||
<span>注册百度地图帐号并访问百度开放平台,申请应用类别为浏览器端的AK</span>
|
||
<a href="https://lbsyun.baidu.com/apiconsole/key/create#/home" target="_blank" class="foxui-link foxui-link-primary">立即申请</a>
|
||
<span class="example" id="AKExample" style="margin-left: -12px;"><i class="foxui-icon-wenti-o"></i>示例</span>
|
||
</p>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['map_ak_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>公司名称:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<div class="foxui-input-suffix">
|
||
<input class="foxui-size-small" maxlength="15" placeholder="请输入您的企业名称" value="<?php echo htmlentities($contact['company']); ?>" name="company" />
|
||
<i class="foxui-suffix-icon foxui-suffix-count">0/15</i>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['company_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>公司电话:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入公司电话" required value="<?php echo htmlentities($contact['company_tel']); ?>" name="company_tel" onkeyup="this.value=this.value.replace(/[^0-9-]/g,'');"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['company_tel_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>电子邮箱:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入电子邮箱" required value="<?php echo htmlentities($contact['email']); ?>" name="email"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['email_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>联系人:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入联系人" required value="<?php echo htmlentities($contact['linkman']); ?>" name="linkman"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['linkman_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>手机号码:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入您的手机号码" required value="<?php echo htmlentities($contact['phone']); ?>" onkeyup="this.value=this.value.replace(/[^0-9]/g,'');" name="phone"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['phone_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>QQ:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入QQ号码" required value="<?php echo htmlentities($contact['qq']); ?>" name="qq"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['qq_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>客服链接:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="第三方微客服链接地址,如:百度商桥" required value="<?php echo htmlentities($contact['customer_url']); ?>" name="customer_url"/>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['customer_url_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group foxui-align-items-start">
|
||
<div class="input-label">
|
||
<label>二维码1:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<div class="foxui-images">
|
||
<div class="foxui-images-card qr_code1">
|
||
<ul class="foxui-images-list">
|
||
<?php if($contact['qr_code1'] != ""): ?>
|
||
<li class="foxui-images-item foxui-animate-fadeInDown">
|
||
<div class="content">
|
||
<img src="<?php echo htmlentities($contact['qr_code1']); ?>" />
|
||
<span class="replace">替换</span>
|
||
<i class="foxui-icon-cuowu-f delete"></i>
|
||
</div>
|
||
</li>
|
||
<?php endif; ?>
|
||
<div class="foxui-images-handle">
|
||
<div class="foxui-images-handle-inner">
|
||
<i class="foxui-icon-jiahao-o"></i>
|
||
<span class="text">添加图片</span>
|
||
</div>
|
||
</div>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p class="input-box-info">
|
||
尺寸比例建议为 1:1 的正方形图片,避免造成错位或变形
|
||
</p>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['qr_code1_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group foxui-align-items-start">
|
||
<div class="input-label">
|
||
<label>二维码2:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<div class="foxui-images">
|
||
<div class="foxui-images-card qr_code2">
|
||
<ul class="foxui-images-list">
|
||
<?php if($contact['qr_code2'] != ""): ?>
|
||
<li class="foxui-images-item foxui-animate-fadeInDown">
|
||
<div class="content">
|
||
<img src="<?php echo htmlentities($contact['qr_code2']); ?>" />
|
||
<span class="replace">替换</span>
|
||
<i class="foxui-icon-cuowu-f delete"></i>
|
||
</div>
|
||
</li>
|
||
<?php endif; ?>
|
||
<div class="foxui-images-handle">
|
||
<div class="foxui-images-handle-inner">
|
||
<i class="foxui-icon-jiahao-o"></i>
|
||
<span class="text">添加图片</span>
|
||
</div>
|
||
</div>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p class="input-box-info">
|
||
尺寸比例建议为 1:1 的正方形图片,避免造成错位或变形
|
||
</p>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['qr_code2_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>联系地址:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<input class="foxui-size-small" placeholder="请输入联系地址" required value="<?php echo htmlentities($contact['contact_address']); ?>" name="contact_address" />
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['contact_address_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
<div class="section-main-item">
|
||
<div class="foxui-input-group">
|
||
<div class="input-label">
|
||
<label>地理位置:</label>
|
||
</div>
|
||
<div class="input-box">
|
||
<div class="foxui-input-append">
|
||
<input class="foxui-size-small" id="positionInput" placeholder="经度、纬度" required value="<?php echo htmlentities($contact['geolocation']); ?>" name="geolocation"/>
|
||
<div class="foxui-append-inner foxui-input-button foxui-solid" id="positionBtn">搜索</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="call-field">
|
||
<span class="foxui-tag foxui-light-info"><?php echo htmlentities($contact['geolocation_call']); ?></span>
|
||
</div>
|
||
</div>
|
||
|
||
<!--动态标签start-->
|
||
<div class="field">
|
||
<?php echo variateFieldTag("contact", $id); ?>
|
||
</div>
|
||
<!--动态标签end-->
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="foxcms-content-copy">
|
||
<p>
|
||
<span>Copyright © 2021-<?php echo isset($nowtime) ? htmlentities($nowtime) : '现在'; ?></span>
|
||
<strong>FOXCMS</strong>
|
||
<span>版权所有</span>
|
||
</p>
|
||
</div>
|
||
<div class="foxcms-content-footer">
|
||
<button class="is-long foxui-size-small foxui-solid-primary" id="save">保存</button>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/jquery-3.6.0.min.js"></script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/tinymce/tinymce.min.js"></script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/echarts.min.js"></script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/foxui-1.32.min.js"></script>
|
||
<script>
|
||
//全局上传文件端口
|
||
var UPLOAD_FILE_URL = "<?php echo url('upload_files/upload'); ?>";
|
||
//图片粘贴下载
|
||
var UPIMG_URL = "<?php echo url('upload_files/upimg'); ?>";
|
||
var SERVER_URL = "/";
|
||
//配置的后台路径
|
||
var ADMIN_PATH = "/" + "<?php echo config('adminconfig.admin_path'); ?>";
|
||
//静态文件路径
|
||
var STATIC_PATH ="<?php echo config('adminconfig.static_path'); ?>";
|
||
//退出地址
|
||
var LOGOUT_PATH = "<?php echo logout_url(); ?>";
|
||
//栏目模型地址
|
||
var GETCOLUMMODELS_PATH = "<?php echo getColumModels_url(); ?>";
|
||
//个人中心
|
||
var ADMINEDIT_PATH = "<?php echo adminEdit_url(); ?>";
|
||
//更新缓存
|
||
var LOGINCLEARCACHE_PATH = "<?php echo loginClearCache_url(); ?>";
|
||
//修改密码
|
||
var ADMINUPDATEPASSWORD_PATH = "<?php echo adminUpdatePassword_url(); ?>";
|
||
//循环生成静态html
|
||
var SEOALLSITE_PATH = "<?php echo seoAllSite_url(); ?>";
|
||
//单独静态生成
|
||
var SEOADDDATABUILDDETAIL_PATH = "<?php echo seoAddDataBuildDetail_url(); ?>";
|
||
//单独静态栏目生成
|
||
var SINGLEALLSITE_PATH = "<?php echo singleAllSite_url(); ?>";
|
||
//删除幻灯片
|
||
var SLIDEDELETE_PATH = "<?php echo slideDelete_url(); ?>";
|
||
//编辑幻灯片
|
||
var SLIDEEDIT_PATH = "<?php echo slideEdit_url(); ?>";
|
||
//后台首页地址
|
||
var HOME_PATH = "<?php echo url('Index/index'); ?>";
|
||
//切换语言
|
||
var HANDOVER_LANG_PATH = "<?php echo url('handoverLang'); ?>";
|
||
</script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/rich_text.js"></script>
|
||
<script>
|
||
|
||
foxui.imagesManager.init({
|
||
paginationOption: {
|
||
type: 'solid',
|
||
size: 'small',
|
||
pageSize: 10,
|
||
pageNum: 7,
|
||
pageSizeList: [10, 20, 30, 50],
|
||
isShowJump: true,
|
||
isShowTotal: true,
|
||
isShowSize: true
|
||
},
|
||
url: "<?php echo url('PicManager/picManager'); ?>",
|
||
});
|
||
|
||
foxui.videoManager.init({
|
||
paginationOption: {
|
||
type: 'solid',
|
||
size: 'small',
|
||
pageSize: 10,
|
||
pageNum: 7,
|
||
pageSizeList: [10, 20, 30, 50],
|
||
isShowJump: true,
|
||
isShowTotal: true,
|
||
isShowSize: true,
|
||
},
|
||
url: "<?php echo url('VideoManager/videoManager'); ?>",
|
||
});
|
||
</script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/common.js"></script>
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/admin_common.js"></script>
|
||
|
||
<script>
|
||
foxui.confirmtip({
|
||
el: '#AKExample',
|
||
content: `<img src="/static/images/baiduak.jpg"/>`,
|
||
trigger: 'hover',
|
||
placement:['top','center']
|
||
});
|
||
</script>
|
||
|
||
<script src="<?php echo htmlentities($staticPath); ?>js/bmap.js"></script>
|
||
|
||
<script>
|
||
// 搜索地理位置
|
||
$('#positionBtn').click(function () {
|
||
foxui.dialog({
|
||
title: '请选择地理位置',
|
||
content: _positionHtml(),
|
||
confirmText: '确定',
|
||
cancelText: '取消',
|
||
width: '50%',
|
||
buttonSize: 'small',
|
||
buttonAlign: 'center',
|
||
longButton: true,
|
||
confirm: function (callback) {
|
||
const curPoint = bmap.getData();
|
||
if (curPoint.lng && curPoint.lat) {
|
||
$('#positionInput').val(curPoint.lng + ',' + curPoint.lat);
|
||
callback();
|
||
} else {
|
||
foxui.message({
|
||
text: '请选搜索地图或移动地图坐标点!',
|
||
type: 'danger',
|
||
});
|
||
}
|
||
},
|
||
});
|
||
let geolocation = $('input[name="geolocation"]').val();
|
||
let lng = "109.2306360207705";
|
||
let lat = "27.80021027339264";
|
||
if(geolocation != null){
|
||
let geolocationArr = geolocation.split(",");
|
||
if(geolocationArr.length == 2){
|
||
lng = geolocationArr[0];
|
||
lat = geolocationArr[1];
|
||
}
|
||
}
|
||
bmap.drawMap({ lng: lng, lat: lat, zoom: 15 });
|
||
});
|
||
</script>
|
||
|
||
<script>
|
||
|
||
// 百度地图初始化
|
||
let init_map_ak = $('input[name="map_ak"]').val();
|
||
bmap.init(init_map_ak);
|
||
|
||
// 百度地图弹框 html
|
||
function _positionHtml() {
|
||
return [
|
||
'<div style="padding:0 20px">',
|
||
'<div class="foxui-input-append">',
|
||
'<input class="foxui-size-small" id="keywordInput" placeholder="请输入地址" required value="" />',
|
||
'<div class="foxui-append-inner foxui-input-button foxui-solid" id="keywordBtn">搜索</div>',
|
||
'</div>',
|
||
'<div id="mapForPosition" style="height: 440px;border: #dcdfe6 solid 1px;margin-top: 20px;"></div>',
|
||
'</div>',
|
||
].join('');
|
||
}
|
||
|
||
// 点击弹框搜索按钮(通过地址查询经纬度)
|
||
$(document).on('click', '#keywordBtn', function () {
|
||
_searchPositionByMap();
|
||
});
|
||
|
||
// 按下回车查询经纬度
|
||
$(document).on('keydown', '#keywordInput', function (event) {
|
||
if (event.keyCode == '13') {
|
||
_searchPositionByMap();
|
||
}
|
||
});
|
||
|
||
// 通过地址查询经纬度
|
||
function _searchPositionByMap() {
|
||
var keyword = $('#keywordInput').val();
|
||
if (keyword) {
|
||
bmap.searchPosition(keyword);
|
||
} else {
|
||
foxui.message({
|
||
text: '请先输入地址!',
|
||
type: 'danger',
|
||
});
|
||
}
|
||
}
|
||
|
||
</script>
|
||
|
||
<script>
|
||
|
||
|
||
//面包屑
|
||
let bcid = $("input[name='bcid']").val();
|
||
let datas = {
|
||
"bcid": bcid
|
||
};
|
||
|
||
|
||
//保存
|
||
$('#save').click(function() {
|
||
|
||
//地图AK
|
||
let map_ak = $('input[name="map_ak"]').val();
|
||
|
||
if(map_ak == '' || map_ak == undefined || map_ak == "null" || map_ak == null) {
|
||
foxui.message({
|
||
text:"百度地图ak不能为空",
|
||
type:"warning"
|
||
});
|
||
return;
|
||
}
|
||
|
||
//公司名称
|
||
let company = $('input[name="company"]').val();
|
||
//公司电话
|
||
let company_tel = $('input[name="company_tel"]').val();
|
||
//电子邮箱
|
||
let email = $('input[name="email"]').val();
|
||
//联系人
|
||
let linkman = $('input[name="linkman"]').val();
|
||
//手机号码
|
||
let phone = $('input[name="phone"]').val();
|
||
//qq
|
||
let qq = $('input[name="qq"]').val();
|
||
//客服链接
|
||
let customer_url = $('input[name="customer_url"]').val();
|
||
//二维码1
|
||
let qr_code1 = $('.qr_code1 img').attr('src');
|
||
//二维码2
|
||
let qr_code2 = $('.qr_code2 img').attr('src');
|
||
//联系地址
|
||
let contact_address = $('input[name="contact_address"]').val();
|
||
//地理位置
|
||
let geolocation = $('input[name="geolocation"]').val();
|
||
let id = $('input[name="id"]').val();
|
||
|
||
let datas = {
|
||
'map_ak': map_ak,
|
||
"company": company,
|
||
"company_tel": company_tel,
|
||
"email": email,
|
||
"linkman": linkman,
|
||
"phone": phone,
|
||
"qq": qq,
|
||
"customer_url": customer_url,
|
||
"qr_code1": qr_code1||"",
|
||
"qr_code2": qr_code2||"",
|
||
"contact_address": contact_address,
|
||
"geolocation": geolocation,
|
||
"id": id
|
||
};
|
||
|
||
//拉取会员属性
|
||
let feildUrl = "<?php echo url('Variate/getField'); ?>?group=contact";
|
||
let saveData = getField($(".field"), feildUrl);
|
||
let curData = Object.assign(datas, saveData);
|
||
foxui.dialog({
|
||
title: '保存',
|
||
content: '您确定要保存吗',
|
||
cancelText: '取消',
|
||
confirmText: '保存',
|
||
confirm: function(callback) {
|
||
ajaxR('<?php echo url("Contact/save"); ?>', 'post', curData, {}, function (res) {
|
||
if (res.code == 1) {
|
||
foxui.message({
|
||
type:'success',
|
||
text:res.msg
|
||
})
|
||
setTimeout('myrefresh()', 1000); //指定10秒刷新一次
|
||
} else {
|
||
foxui.message({
|
||
type:'warning',
|
||
text:res.msg
|
||
})
|
||
}
|
||
}, function (res) {
|
||
foxui.message({
|
||
type:'warning',
|
||
text:res.msg
|
||
})
|
||
})
|
||
callback();
|
||
},
|
||
cancel: function() {
|
||
foxui.message({
|
||
type: 'warning',
|
||
text: '取消操作'
|
||
})
|
||
},
|
||
});
|
||
|
||
})
|
||
</script>
|
||
|
||
|
||
</html>
|