Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
7c9823db
Commit
7c9823db
authored
Mar 23, 2018
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业绩
parent
3c954e64
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
73 additions
and
1519 deletions
+73
-1519
Performance.php
application/api_broker/controller/Performance.php
+8
-3
PerformanceService.php
application/api_broker/service/PerformanceService.php
+27
-5
VerifyService.php
application/api_broker/service/VerifyService.php
+5
-4
GHousesToAgents.php
application/model/GHousesToAgents.php
+6
-1
OBargainModel.php
application/model/OBargainModel.php
+8
-2
OMarchInModel.php
application/model/OMarchInModel.php
+7
-2
OPayLogModel.php
application/model/OPayLogModel.php
+7
-2
OReportModel.php
application/model/OReportModel.php
+5
-2
76d55f84497cbeadfc614c1b1b62fc.php
runtime/cache/36/76d55f84497cbeadfc614c1b1b62fc.php
+0
-5
1d8d98fa883098f34a4d156f8bc495.php
runtime/cache/71/1d8d98fa883098f34a4d156f8bc495.php
+0
-5
8dcd905ff64fb160e2d40d1dfb2c42.php
runtime/cache/8f/8dcd905ff64fb160e2d40d1dfb2c42.php
+0
-5
6c828583c5c6160e8acfee88ba1590.php
runtime/cache/d8/6c828583c5c6160e8acfee88ba1590.php
+0
-5
33335591313e01af610e3d9e5694079b.php
runtime/temp/33335591313e01af610e3d9e5694079b.php
+0
-191
350eeb6ee60af2cda538514c86b1edb5.php
runtime/temp/350eeb6ee60af2cda538514c86b1edb5.php
+0
-46
77061492baacf0aed7a00b61ab3ed71b.php
runtime/temp/77061492baacf0aed7a00b61ab3ed71b.php
+0
-393
9c6cde178f87ca234efa6e7ecbfc7e26.php
runtime/temp/9c6cde178f87ca234efa6e7ecbfc7e26.php
+0
-848
No files found.
application/api_broker/controller/Performance.php
View file @
7c9823db
...
...
@@ -64,13 +64,18 @@ class Performance extends Basic
"agent_id"
=>
1
,
"start_time"
=>
"2018-03-23"
,
"end_time"
=>
"2018-03-23"
,
"is_case"
=>
1
,
//1经纪人 2案场
"is_case"
=>
2
,
//1经纪人 2案场
"house_id"
=>
22
);
if
(
!
isset
(
$params
[
"agent_id"
])
||
!
isset
(
$params
[
"start_time"
])
||
!
isset
(
$params
[
"end_time"
]))
{
return
$this
->
response
(
"101"
,
"请求参数错误"
);
}
$result
=
$this
->
service_
->
personagePerformance
(
$params
[
"agent_id"
],
$params
[
"start_time"
],
$params
[
"end_time"
],
$params
[
"is_case"
]);
$house_id
=
0
;
if
(
isset
(
$params
[
"house_id"
]))
{
$house_id
=
$params
[
"house_id"
];
}
$result
=
$this
->
service_
->
personagePerformance
(
$params
[
"agent_id"
],
$params
[
"start_time"
],
$params
[
"end_time"
],
$params
[
"is_case"
],
$house_id
);
return
$this
->
response
(
"200"
,
"request success"
,
$result
);
}
...
...
application/api_broker/service/PerformanceService.php
View file @
7c9823db
...
...
@@ -136,16 +136,15 @@ class PerformanceService
}
public
function
personagePerformance
(
$agent_id
,
$start_time
,
$end_time
,
$is_case
)
public
function
personagePerformance
(
$agent_id
,
$start_time
,
$end_time
,
$is_case
,
$house_id
)
{
$field
=
"agent_id,sum(look_at_num) as look_at_num,sum(march_in_num) as march_in_num , sum(paylog) as paylog ,
sum(bargain_sum) as bargain_sum"
;
$result
=
[];
if
(
$is_case
==
2
){
//案场
$vService
=
new
VerifyService
();
$house_id_arr
=
$vService
->
getAgentsByAgentId
(
$agent_id
);
}
switch
(
$is_case
){
case
1
:
$now_date
=
date
(
"Y-m-d"
,
time
());
if
(
$start_time
==
$now_date
&&
$end_time
==
$now_date
)
{
$params
[
"agent_id"
]
=
$agent_id
;
...
...
@@ -160,6 +159,29 @@ class PerformanceService
$result
=
$list
[
0
];
}
}
break
;
case
2
:
//案场
if
(
$house_id
>
0
){
// 如果有传楼盘id证明是筛选
$condition
[
"house_ids"
]
=
$house_id
;
}
else
{
$vService
=
new
VerifyService
();
$house_id_arr
=
$vService
->
getCaseHouseIdByAgentId
(
$agent_id
);
$ids
=
""
;
foreach
(
$house_id_arr
as
$item
){
$ids
.=
$item
[
"houses_id"
]
.
","
;
}
$ids
=
rtrim
(
$ids
,
","
);
$condition
[
"house_ids"
]
=
$ids
;
}
$condition
[
'create_time'
]
=
array
(
'between'
,
array
(
$start_time
.
" 00:00:00"
,
$end_time
.
" 23:59:59"
)
);
$result
=
$this
->
nowTimeSum
(
$condition
);
if
(
count
(
$result
)
>
0
){
$result
[
"house_arr"
]
=
$house_id_arr
;
}
break
;
}
if
(
count
(
$result
)
>
0
)
{
return
$result
;
}
else
{
...
...
application/api_broker/service/VerifyService.php
View file @
7c9823db
...
...
@@ -59,11 +59,12 @@ class VerifyService
public
function
getCaseHouseIdByAgentId
(
$agent_id
)
{
$houseToAgentModel
=
new
GHousesToAgents
();
$params
[
"agents_id"
]
=
$agent_id
;
$params
[
"type"
]
=
1
;
//案场权限人
$params
[
"is_del"
]
=
0
;
$params
[
"a.agents_id"
]
=
$agent_id
;
$params
[
"a.type"
]
=
1
;
//案场权限人
$params
[
"a.is_del"
]
=
0
;
$house_arr
=
$houseToAgentModel
->
getHouseByAgentId
(
"a.houses_id,b.internal_title"
,
$params
);
$house_arr
=
$houseToAgentModel
->
getHouseByAgentId
(
"houses_id"
,
$params
);
if
(
count
(
$house_arr
)
>
0
)
{
return
$house_arr
;
}
...
...
application/model/GHousesToAgents.php
View file @
7c9823db
...
...
@@ -145,10 +145,15 @@ class GHousesToAgents extends BaseModel
* @return false|\PDOStatement|string|\think\Collection
*/
public
function
getHouseByAgentId
(
$field
,
$params
){
return
Db
::
name
(
$this
->
table
)
$result
=
Db
::
name
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"g_houses b"
,
"a.houses_id = b.id"
,
"left"
)
->
where
(
$params
)
->
select
();
echo
Db
::
name
(
$this
->
table
)
->
getLastSql
();
return
$result
;
}
/**
...
...
application/model/OBargainModel.php
View file @
7c9823db
...
...
@@ -329,14 +329,20 @@ class OBargainModel extends Model
$field
=
"count(1) as num"
;
if
(
isset
(
$params
[
"agent_id"
])){
$where_
[
"agent_id"
]
=
$params
[
"agent_id"
];
$where_
[
"a
.a
gent_id"
]
=
$params
[
"agent_id"
];
}
if
(
isset
(
$params
[
"create_time"
])){
$where_
[
"create_time"
]
=
$params
[
"create_time"
];
$where_
[
"a.create_time"
]
=
$params
[
"create_time"
];
}
if
(
isset
(
$params
[
"house_ids"
])){
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]);
}
return
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.order_id = b.id"
,
"left"
)
->
where
(
$where_
)
->
select
();
}
...
...
application/model/OMarchInModel.php
View file @
7c9823db
...
...
@@ -100,13 +100,18 @@ class OMarchInModel extends Model
$field
=
"count(1) as num"
;
$where_
=
[];
if
(
isset
(
$params
[
"agent_id"
])){
$where_
[
"reception_id"
]
=
$params
[
"agent_id"
];
$where_
[
"
a.
reception_id"
]
=
$params
[
"agent_id"
];
}
if
(
isset
(
$params
[
"create_time"
])){
$where_
[
"create_time"
]
=
$params
[
"create_time"
];
$where_
[
"a.create_time"
]
=
$params
[
"create_time"
];
}
if
(
isset
(
$params
[
"house_ids"
])){
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]);
}
return
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.order_id = b.id"
,
"left"
)
->
where
(
$where_
)
->
select
();
}
...
...
application/model/OPayLogModel.php
View file @
7c9823db
...
...
@@ -98,13 +98,18 @@ class OPayLogModel extends Model
$field
=
"count(1) as num"
;
$where_
=
[];
if
(
isset
(
$params
[
"agent_id"
])){
$where_
[
"agent_id"
]
=
$params
[
"agent_id"
];
$where_
[
"a
.a
gent_id"
]
=
$params
[
"agent_id"
];
}
if
(
isset
(
$params
[
"create_time"
])){
$where_
[
"create_time"
]
=
$params
[
"create_time"
];
$where_
[
"a.create_time"
]
=
$params
[
"create_time"
];
}
if
(
isset
(
$params
[
"house_ids"
])){
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]);
}
return
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.order_id = b.id"
,
"left"
)
->
where
(
$where_
)
->
select
();
}
...
...
application/model/OReportModel.php
View file @
7c9823db
...
...
@@ -167,12 +167,14 @@ class OReportModel extends Model
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]);
}
$where_
[
"a.status"
]
=
0
;
return
Db
::
table
(
$this
->
table
)
$result
=
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.
order_id = b.
id"
,
"left"
)
->
join
(
"o_order b"
,
"a.
id = b.f_
id"
,
"left"
)
->
where
(
$where_
)
->
select
();
//echo Db::table($this->table)->getLastSql();
return
$result
;
}
}
\ No newline at end of file
runtime/cache/36/76d55f84497cbeadfc614c1b1b62fc.php
deleted
100644 → 0
View file @
3c954e64
<?php
//000000000000
exit
();
?>
s:36:"86a953c0-baf4-11e7-8d16-b9611e223e5e";
\ No newline at end of file
runtime/cache/71/1d8d98fa883098f34a4d156f8bc495.php
deleted
100644 → 0
View file @
3c954e64
<?php
//000000000000
exit
();
?>
i:1517210994;
\ No newline at end of file
runtime/cache/8f/8dcd905ff64fb160e2d40d1dfb2c42.php
deleted
100644 → 0
View file @
3c954e64
<?php
//000000000000
exit
();
?>
i:5184000;
\ No newline at end of file
runtime/cache/d8/6c828583c5c6160e8acfee88ba1590.php
deleted
100644 → 0
View file @
3c954e64
<?php
//000000000000
exit
();
?>
s:130:"YWMtM3qCFgTGEeiq48OmjaoPWwAAAAAAAAAAAAAAAAAAAAGGqVPAuvQR540WuWEeIj5eAgMAAAFhQNKIogBPGgCgBPFRepsGUeewmkWAwIW9ScggRB9YqETjARTSkU5hXg";
\ No newline at end of file
runtime/temp/33335591313e01af610e3d9e5694079b.php
deleted
100644 → 0
View file @
3c954e64
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:5:{s:77:"C:\xampp\htdocs\tl_estate\public/../application/index\view\banner\banner.html";i:1517824281;s:80:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\frame_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\header_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\navigation.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\footer_tpl.html";i:1517824281;}*/
?>
<!DOCTYPE html>
<html
lang=
"en-us"
>
<head>
<link
rel=
"icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<link
rel=
"shortcut icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"apple-mobile-web-app-capable"
content=
"yes"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"/resource/css/public.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"//qidian.gtimg.com/lulu/theme/peak/css/common/ui/Pagination.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-datetimepicker.min.css"
>
<title>
同联商业
</title>
</head>
<body>
<div
class=
"navbar"
style=
"background: #ff9419 !important;"
>
<div
class=
"container-fluid"
>
<a
class=
"brand"
>
<i><img
src=
"/resource/image/houtai_footer_icon1.png"
class=
"houtai_footer_icon1"
></i>
<span
class=
"hidden-phone"
>
同联商业后台管理中心
</span>
</a>
</div>
<div
class=
"dropdown"
>
<button
class=
"btn btn-default dropdown-toggle"
type=
"button"
id=
"dropdownMenu1"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"true"
>
管理员vip
<span
class=
"caret"
></span>
</button>
<ul
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenu1"
>
<li><a
href=
"#"
>
修改密码
</a></li>
<li
role=
"separator"
class=
"divider"
></li>
<li><a
href=
"/index/logout"
>
退出登录
</a></li>
</ul>
</div>
</div>
<div
id=
"wrapper"
>
<nav
class=
"navbar navbar-inverse"
id=
"sidebar-wrapper"
role=
"navigation"
>
<ul
class=
"nav sidebar-nav"
>
<!--便于后期更改使用-->
<!--<li class="sidebar-brand">-->
<!--<a href="#">-->
<!--Bootstrap 3-->
<!--</a>-->
<!--</li>-->
<!--<li class="dropdown">-->
<!--<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Dropdown <span class="caret"></span></a>-->
<!--<ul class="dropdown-menu" role="menu">-->
<!--<li class="dropdown-header">Dropdown heading</li>-->
<!--<li><a href="#">Action</a></li>-->
<!--<li><a href="#">Another action</a></li>-->
<!--<li><a href="#">Something else here</a></li>-->
<!--<li><a href="#">Separated link</a></li>-->
<!--<li><a href="#">One more separated link</a></li>-->
<!--</ul>-->
<!--</li>-->
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/banner.html"
>
首页轮播图
</a>
</li>
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/advertising"
>
首页弹窗
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/users_list.html"
>
用户列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/watch_shop.html"
>
预约看铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/transfer_list.html"
>
委托转铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/version.html"
>
版本号管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/auth.html"
>
角色管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/agent.html"
>
经纪人列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/districtList.html"
>
总监列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/authRuleIndex.html"
>
权限管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseList.html"
>
商铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseEdit.html"
>
新增商铺
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/BusinessDistrict.html"
>
商圈列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/editBusinessDistrict.html"
>
编辑商圈
</a>
</li>
</ul>
</nav>
<!-- 提示成功模态框(Modal) -->
<div
class=
"successModel"
>
<div
class=
"successModel-center"
>
<p>
<!--提交成功!-->
</p>
</div>
</div>
<!--<script>-->
<!--$(document).ready(function(),2000);//2秒后执行该方法-->
<!--});-->
<!--</script>-->
<input
type=
"hidden"
class=
"page-load"
id=
"banner"
/>
<!--导航star-->
<!-- Sidebar -->
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div
id=
"page-content-wrapper"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-10 col-lg-offset-0"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading breadcrumb"
>
<li><a
href=
"#"
>
首页轮播图
</a></li>
<li
class=
"active"
>
新增广告
</li>
<div
class=
"pull-right"
>
<ul
class=
"bread_btn"
>
<li>
<a
href=
"#modal-add-do"
data-toggle=
"modal"
id=
"add_banner"
class=
"btn btn-default"
><i
class=
"icon-plus"
></i>
新增广告
</a>
</li>
</ul>
</div>
</div>
<div
class=
"panel-body"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-striped table-bordered table-hover"
>
<thead>
<tr>
<th>
标题
</th>
<th>
图片
</th>
<th>
链接
</th>
<th>
排序
</th>
<th>
点击
</th>
<th>
修改人
</th>
<th>
操作
</th>
</tr>
</thead>
<tbody
id=
"banner_list"
>
</tbody>
</table>
<!-- /#page-content-wrapper -->
<div
style=
"float:right"
id=
"pagediv"
>
</div>
</div>
</div>
</div>
<input
type=
"hidden"
value=
"0"
id=
"type"
/>
</div>
</div>
</div>
</div>
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=123'
charset=
'utf-8'
></script>
</div>
</body>
</html>
runtime/temp/350eeb6ee60af2cda538514c86b1edb5.php
deleted
100644 → 0
View file @
3c954e64
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:1:{s:75:"C:\xampp\htdocs\tl_estate\public/../application/index\view\login\login.html";i:1517824281;}*/
?>
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"apple-mobile-web-app-capable"
content=
"yes"
>
<title>
同联地产管理后台
</title>
<link
rel=
"stylesheet"
href=
"/resource/css/login.css"
type=
"text/css"
/>
</head>
<body>
<div
class=
"main-container"
>
<div
class=
"main-content"
>
<div
class=
"login-container"
>
<div
class=
"center"
>
<h1>
<i
class=
"ace-icon fa fa-leaf green"
></i>
<span
class=
"red"
>
同联地产
</span>
<span
class=
"white"
id=
"id-text2"
>
管理后台
</span>
</h1>
</div>
<div
class=
"loginbox"
>
<form
action=
"/admin.php/index/loginVerify"
method=
"post"
>
<div
class=
"input-icon"
>
<input
class=
"input-block"
type=
"text"
id=
"username"
name=
"username"
autofocus
placeholder=
"请输入用户名"
maxlength=
"16"
required
>
</div>
<div
class=
"input-icon"
>
<input
class=
"input-block"
type=
"password"
id=
"passwd"
name=
"passwd"
placeholder=
"请输入登录密码"
maxlength=
"16"
required
>
<span
style=
"color: #fff;display: block;text-align: center;font-size: 12px"
>
<?php
echo
$msg
;
?>
</span>
</div>
<div
class=
"center"
style=
"margin-top: 15px"
>
<button
type=
"submit"
style=
"background: #87b1ff;"
>
立即登陆
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<canvas></canvas>
<script
src=
"/resource/lib/js/jquery-2.0.3.min.js"
></script>
<script
src=
"/resource/js/login.js"
></script>
</body>
</html>
\ No newline at end of file
runtime/temp/77061492baacf0aed7a00b61ab3ed71b.php
deleted
100644 → 0
View file @
3c954e64
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:5:{s:80:"C:\xampp\htdocs\tl_estate\public/../application/index\view\houses\houseList.html";i:1517824281;s:80:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\frame_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\header_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\navigation.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\footer_tpl.html";i:1517824281;}*/
?>
<!DOCTYPE html>
<html
lang=
"en-us"
>
<head>
<link
rel=
"icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<link
rel=
"shortcut icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"apple-mobile-web-app-capable"
content=
"yes"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"/resource/css/public.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"//qidian.gtimg.com/lulu/theme/peak/css/common/ui/Pagination.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-datetimepicker.min.css"
>
<title>
同联商业
</title>
</head>
<body>
<div
class=
"navbar"
style=
"background: #ff9419 !important;"
>
<div
class=
"container-fluid"
>
<a
class=
"brand"
>
<i><img
src=
"/resource/image/houtai_footer_icon1.png"
class=
"houtai_footer_icon1"
></i>
<span
class=
"hidden-phone"
>
同联商业后台管理中心
</span>
</a>
</div>
<div
class=
"dropdown"
>
<button
class=
"btn btn-default dropdown-toggle"
type=
"button"
id=
"dropdownMenu1"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"true"
>
管理员vip
<span
class=
"caret"
></span>
</button>
<ul
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenu1"
>
<li><a
href=
"#"
>
修改密码
</a></li>
<li
role=
"separator"
class=
"divider"
></li>
<li><a
href=
"/index/logout"
>
退出登录
</a></li>
</ul>
</div>
</div>
<div
id=
"wrapper"
>
<nav
class=
"navbar navbar-inverse"
id=
"sidebar-wrapper"
role=
"navigation"
>
<ul
class=
"nav sidebar-nav"
>
<!--便于后期更改使用-->
<!--<li class="sidebar-brand">-->
<!--<a href="#">-->
<!--Bootstrap 3-->
<!--</a>-->
<!--</li>-->
<!--<li class="dropdown">-->
<!--<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Dropdown <span class="caret"></span></a>-->
<!--<ul class="dropdown-menu" role="menu">-->
<!--<li class="dropdown-header">Dropdown heading</li>-->
<!--<li><a href="#">Action</a></li>-->
<!--<li><a href="#">Another action</a></li>-->
<!--<li><a href="#">Something else here</a></li>-->
<!--<li><a href="#">Separated link</a></li>-->
<!--<li><a href="#">One more separated link</a></li>-->
<!--</ul>-->
<!--</li>-->
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/banner.html"
>
首页轮播图
</a>
</li>
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/advertising"
>
首页弹窗
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/users_list.html"
>
用户列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/watch_shop.html"
>
预约看铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/transfer_list.html"
>
委托转铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/version.html"
>
版本号管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/auth.html"
>
角色管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/agent.html"
>
经纪人列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/districtList.html"
>
总监列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/authRuleIndex.html"
>
权限管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseList.html"
>
商铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseEdit.html"
>
新增商铺
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/BusinessDistrict.html"
>
商圈列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/editBusinessDistrict.html"
>
编辑商圈
</a>
</li>
</ul>
</nav>
<!-- 提示成功模态框(Modal) -->
<div
class=
"successModel"
>
<div
class=
"successModel-center"
>
<p>
<!--提交成功!-->
</p>
</div>
</div>
<!--<script>-->
<!--$(document).ready(function(),2000);//2秒后执行该方法-->
<!--});-->
<!--</script>-->
<input
type=
"hidden"
class=
"page-load"
id=
"houseList"
/>
<div
id=
"page-content-wrapper"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-10 col-lg-offset-0"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading breadcrumb"
>
<li><a
href=
"#"
>
商铺列表
</a></li>
<li
class=
"active"
>
新增商铺
</li>
<div
class=
"pull-right"
>
<ul
class=
"bread_btn"
>
<li>
<a
href=
"/admin.php/index/houseEdit"
data-toggle=
"modal"
class=
"btn btn-default"
><i
class=
"icon-plus"
></i>
新增商铺
</a>
</li>
</ul>
</div>
</div>
<div
class=
"panel-body"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-striped table-bordered table-hover table-condensed"
>
<thead>
<tr>
<td
colspan=
"9"
>
<form
id=
"form_search"
>
<select
class=
"form-control btn2"
id=
"is_carefully_chosen"
>
<option
value=
""
class=
"successModel"
>
是否显示在首页
</option>
<option
value=
"0"
>
是
</option>
<option
value=
"1"
>
否
</option>
</select>
<select
class=
"form-control btn2"
id=
"is_show"
>
<option
value=
""
class=
"successModel"
>
C端是否显示
</option>
<option
value=
"0"
>
是
</option>
<option
value=
"1"
>
否
</option>
</select>
<select
class=
"form-control btn2"
id=
"shop_type"
>
<option
value=
""
class=
"successModel"
>
商铺类型
</option>
<option
value=
"0"
>
商场
</option>
<option
value=
"1"
>
街铺
</option>
</select>
<select
class=
"form-control btn2"
id=
"leased"
>
<option
value=
""
class=
"successModel"
>
商铺状态
</option>
<option
value=
"0"
>
已租
</option>
<option
value=
"1"
>
待租
</option>
</select>
<select
class=
"form-control btn2"
id=
"rent_price"
>
<option
value=
""
class=
"successModel"
>
月租金
</option>
<option
value=
"2"
>
10000以下
</option>
<option
value=
"1"
>
10000-30000
</option>
<option
value=
"0"
>
30000以上
</option>
</select>
<select
class=
"form-control btn2"
id=
"is_exclusive_type"
>
<option
value=
""
class=
"successModel"
>
是否独家
</option>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
<input
class=
"form-control btn2"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"internal_title"
placeholder=
"商铺名称"
type=
"text"
value=
""
>
<div
class=
"row"
>
</div>
<input
class=
"form-control btn2 ld-Marheight"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"industry_type"
placeholder=
"业态"
type=
"text"
value=
""
>
<input
class=
"form-control btn2 ld-Marheight"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"dish"
placeholder=
"盘方"
type=
"text"
value=
""
>
<input
class=
"form-control btn2 ld-Marheight"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"id"
placeholder=
"店铺编号"
type=
"text"
value=
""
>
<span
class=
"fore-span ld-Marheight"
>
上传时间:
</span>
<input
class=
"form-control btn4 ld-Marheight"
value=
""
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"start_date"
name=
"start_date"
type=
"date"
>
<span
class=
"fore-span ld-Marheight"
>
-
</span>
<input
class=
"form-control btn4 ld-Marheight"
value=
""
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"end_date"
name=
"end_date"
type=
"date"
>
<span
class=
"btn btn-default btn3 ld-Marheight"
id=
"search"
>
搜索
</span>
<span
class=
"btn btn-default btn3 ld-Marheight"
id=
"reset"
>
重置
</span>
</form>
</td>
</tr>
<tr>
<th
class=
"text-center"
>
编号
</th>
<th
class=
"text-center"
>
类型
</th>
<th
class=
"text-center"
>
名称
</th>
<th
class=
"text-center"
>
月租金
</th>
<th
class=
"text-center"
>
C端是否显示
</th>
<th
class=
"text-center"
>
上传时间
</th>
<th
class=
"text-center"
>
状态
</th>
<th
class=
"text-center"
>
盘方
</th>
<th
class=
"text-center"
>
操作
</th>
</tr>
</thead>
<tbody
class=
"text-center"
id=
"business_list"
>
<!--<tr>-->
<!--<td>212</td>-->
<!--<td>商场</td>-->
<!--<td>长兴</td>-->
<!--<td>1000</td>-->
<!--<td>是</td>-->
<!--<td>2018-01-16 17:02:00</td>-->
<!--<td>已租</td>-->
<!--<td>张娜张-->
<!--<a data-toggle="modal" data-id="77" href="#modal-watch" class="btn1 btn-danger add_applies">修改</a>-->
<!--</td>-->
<!--<td>-->
<!--<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="77" onclick="alertFollow(this)">编辑</a>-->
<!--<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="77" onclick="alertFollow(this)">推荐至首页</a>-->
<!--<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="77" onclick="alertFollow(this)">设置案场权限人</a>-->
<!--<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="77" onclick="alertFollow(this)">是否独家</a>-->
<!--<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="77" onclick="alertFollow(this)">操作记录</a>-->
<!--<a data-toggle="modal" data-id="77" href="#modal-watch" class="btn1 btn-danger add_applies" onclick="delete_house(4720)">删除</a>-->
<!--</td>-->
<!--</tr>-->
</table>
</div>
<!-- /#page-content-wrapper -->
<div
class=
"text-right"
id=
"pagediv"
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"modal fade"
id=
"modal-delete"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
>
删除
</h4>
</div>
<div
class=
"modal-body"
>
<div
class=
"modal-body"
id=
"del_msg"
>
确认删除吗?
</div>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-default"
data-dismiss=
"modal"
>
关闭
</button>
<button
type=
"button"
class=
"btn btn-primary"
id=
"confirm_delete"
>
删除
</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<!--设置案场权限人,修改盘方-->
<div
class=
"modal fade"
id=
"modal-anch"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
id=
"myModalLabel"
>
设置案场权限人
</h4>
</div>
<div
class=
"modal-body"
>
<form
id=
"submit_agent"
>
<div
class=
"jian_class"
>
<input
name=
"ues_id"
placeholder=
"请输入"
type=
"tel"
value=
""
class=
"phone_jia"
>
<!--号码匹配名字-->
<ul
class=
"phone_list"
></ul>
</div>
<img
src=
"/resource/image/jia2@2x.png"
class=
"jia"
>
<input
type=
"hidden"
name=
"ues_id"
class=
"houseinfos_id"
>
</form>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-default"
data-dismiss=
"modal"
>
关闭
</button>
<button
type=
"button"
class=
"btn btn-primary submit_follow"
data-dismiss=
"modal"
>
提交
</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<!--操作记录-->
<div
class=
"modal fade"
id=
"modal-record"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
>
操作记录
</h4>
</div>
<div
class=
"modal-body"
>
<table
class=
"table table-striped table-bordered table-hover table-condensed"
>
<thead>
<tr>
<th
class=
"text-center"
>
盘方修改记录
</th>
<th
class=
"text-center"
>
操作人
</th>
<th
class=
"text-center"
>
操作时间
</th>
</tr>
</thead>
<tbody
class=
"text-center"
id=
"caozuo_table"
>
</table>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<!--是否独家-->
<div
class=
"modal fade"
id=
"modal-dujia"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h4
class=
"modal-title"
>
独家合同
</h4>
</div>
<div
class=
"modal-body"
>
<form
class=
"form-horizontal"
>
<div
class=
"form-group"
>
<label
class=
"col-sm-3 control-label"
>
是否独家:
</label>
<select
class=
"form-control btn6"
id=
"sel_dujia"
>
<option
value=
"null"
class=
"successModel"
>
请选择
</option>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
</div>
<div
class=
"form-group"
>
<label
class=
"col-sm-3 control-label"
>
独家合同上传(小于10张):
</label>
<span
id=
"liudan_pic_pre"
></span>
<input
readonly=
"readonly"
type=
"hidden"
name=
"liudan_pic_pre"
class=
"form-control btn6"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default liudan_pic_btn"
id=
"liudan_pic_btn"
type=
"button"
>
选择图片
</button>
</div>
<div
class=
"form-group"
>
<label
class=
"col-sm-3 control-label"
>
独家代理有效期:
</label>
<input
class=
"form-control btn5 "
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"start_date_dujia"
name=
"start_date_dujia"
type=
"date"
>
<span
class=
"fore-span"
>
-
</span>
<input
class=
"form-control btn5 "
value=
""
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"end_date_dujia"
name=
"end_date_dujia"
type=
"date"
>
</div>
<div
class=
"form-group"
>
<label
class=
"col-sm-3 control-label"
>
独家方:
</label>
<input
class=
"form-control btn6"
data-rule-buga=
"false"
data-rule-required=
"true"
name=
"exclusive"
placeholder=
"请输入姓名或手机号码"
type=
"text"
value=
""
id=
"exclusive"
>
</div>
</form>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-default"
data-dismiss=
"modal"
>
关闭
</button>
<button
type=
"button"
class=
"btn btn-primary submit_follow2"
data-dismiss=
"modal"
>
提交
</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=123'
charset=
'utf-8'
></script>
</div>
</body>
</html>
runtime/temp/9c6cde178f87ca234efa6e7ecbfc7e26.php
deleted
100644 → 0
View file @
3c954e64
<?php
if
(
!
defined
(
'THINK_PATH'
))
exit
();
/*a:5:{s:75:"C:\xampp\htdocs\tl_estate\public/../application/index\view\houses\edit.html";i:1517900290;s:80:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\frame_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\header_tpl.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\navigation.html";i:1517824281;s:81:"C:\xampp\htdocs\tl_estate\public/../application/index\view\global\footer_tpl.html";i:1517824281;}*/
?>
<!DOCTYPE html>
<html
lang=
"en-us"
>
<head>
<link
rel=
"icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<link
rel=
"shortcut icon"
href=
"/favicon.ico"
type=
"image/x-icon"
>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"apple-mobile-web-app-capable"
content=
"yes"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"/resource/css/public.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"//qidian.gtimg.com/lulu/theme/peak/css/common/ui/Pagination.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/resource/css/bootstrap-datetimepicker.min.css"
>
<title>
同联商业
</title>
</head>
<body>
<div
class=
"navbar"
style=
"background: #ff9419 !important;"
>
<div
class=
"container-fluid"
>
<a
class=
"brand"
>
<i><img
src=
"/resource/image/houtai_footer_icon1.png"
class=
"houtai_footer_icon1"
></i>
<span
class=
"hidden-phone"
>
同联商业后台管理中心
</span>
</a>
</div>
<div
class=
"dropdown"
>
<button
class=
"btn btn-default dropdown-toggle"
type=
"button"
id=
"dropdownMenu1"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"true"
>
管理员vip
<span
class=
"caret"
></span>
</button>
<ul
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenu1"
>
<li><a
href=
"#"
>
修改密码
</a></li>
<li
role=
"separator"
class=
"divider"
></li>
<li><a
href=
"/index/logout"
>
退出登录
</a></li>
</ul>
</div>
</div>
<div
id=
"wrapper"
>
<nav
class=
"navbar navbar-inverse"
id=
"sidebar-wrapper"
role=
"navigation"
>
<ul
class=
"nav sidebar-nav"
>
<!--便于后期更改使用-->
<!--<li class="sidebar-brand">-->
<!--<a href="#">-->
<!--Bootstrap 3-->
<!--</a>-->
<!--</li>-->
<!--<li class="dropdown">-->
<!--<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Dropdown <span class="caret"></span></a>-->
<!--<ul class="dropdown-menu" role="menu">-->
<!--<li class="dropdown-header">Dropdown heading</li>-->
<!--<li><a href="#">Action</a></li>-->
<!--<li><a href="#">Another action</a></li>-->
<!--<li><a href="#">Something else here</a></li>-->
<!--<li><a href="#">Separated link</a></li>-->
<!--<li><a href="#">One more separated link</a></li>-->
<!--</ul>-->
<!--</li>-->
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/banner.html"
>
首页轮播图
</a>
</li>
<li
role=
"presentation"
class=
"active"
>
<a
href=
"/admin.php/index/advertising"
>
首页弹窗
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/users_list.html"
>
用户列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/watch_shop.html"
>
预约看铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/transfer_list.html"
>
委托转铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/version.html"
>
版本号管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/auth.html"
>
角色管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/agent.html"
>
经纪人列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/districtList.html"
>
总监列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/authRuleIndex.html"
>
权限管理
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseList.html"
>
商铺列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/houseEdit.html"
>
新增商铺
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/BusinessDistrict.html"
>
商圈列表
</a>
</li>
<li
role=
"presentation"
>
<a
href=
"/admin.php/index/editBusinessDistrict.html"
>
编辑商圈
</a>
</li>
</ul>
</nav>
<!-- 提示成功模态框(Modal) -->
<div
class=
"successModel"
>
<div
class=
"successModel-center"
>
<p>
<!--提交成功!-->
</p>
</div>
</div>
<!--<script>-->
<!--$(document).ready(function(),2000);//2秒后执行该方法-->
<!--});-->
<!--</script>-->
<input
type=
"hidden"
class=
"page-load"
id=
"edit"
/>
<!--不会有异步加载时,样式错乱的问题-->
<style
type=
"text/css"
>
.form-group
{
margin
:
10px
;
}
.input-100-width
{
width
:
100px
!important
;
}
.input-360-width
{
width
:
360px
!important
;
}
.textarea-500-width
{
width
:
500px
!important
;
}
.list-group-item
>
.full-width-100
+
.full-width-100
{
padding-top
:
10px
;
}
.list-group-item
>
.full-width-100
>
label
{
width
:
60px
;
}
.list-group-item
>
.full-pic-area
>
label
{
width
:
120px
;
}
.input-add-tel
{
margin-top
:
16px
;
height
:
20px
;
}
.phone-list-container
{
overflow
:
hidden
;
width
:
196px
;
vertical-align
:
top
!important
;
position
:
relative
;
}
.phone-list-container
>
label
{
line-height
:
30px
;
}
.phone-list-container
>
input
{
float
:
left
;
}
.phone-list-container
>
ul
{
width
:
196px
;
list-style
:
none
;
padding-left
:
0
;
float
:
right
;
border
:
1px
solid
#ccc
;
border-top
:
none
;
background-color
:
white
;
}
.phone-list-container
>
ul
>
li
:hover
{
background-color
:
#e0e0e0
;
}
.phone-list-container
>
img
{
position
:
absolute
;
right
:
5px
;
top
:
7px
;
width
:
20px
;
}
.address-relate
{
cursor
:
pointer
;
}
.address-search-head-div
{
height
:
88px
;
overflow
:
hidden
;
padding-left
:
12%
;
}
/*获取百度经纬度样式*/
/*********************************************************百度定位页面iframe引入*************************************/
#position_box
{
height
:
750px
;
background-color
:
#f0f0f0
;
overflow
:
scroll
;
position
:
relative
;
}
div
.address-header-bar
{
overflow
:
hidden
;
float
:
left
;
}
#address_city_title
{
float
:
left
;
width
:
150px
;
line-height
:
60px
;
font-size
:
30px
;
color
:
#333
;
text-align
:
center
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
display
:
none
;
}
.crile
{
float
:
left
;
width
:
570px
;
overflow
:
hidden
;
position
:
relative
;
}
.crile
>
input
{
line-height
:
60px
;
box-sizing
:
border-box
;
padding
:
0
;
border-width
:
1px
;
width
:
100%
;
display
:
block
;
border-radius
:
30px
;
background
:
#f5f5f5
url('/resource/image/search_ic.png')
no-repeat
30px
center
;
background-size
:
28px
;
text-indent
:
60px
;
font-size
:
28px
;
outline
:
none
;
}
.crile
>
input
::-webkit-search-cancel-button
{
-webkit-appearance
:
none
;
}
img
.cancel-pic
{
width
:
28px
;
height
:
28px
;
position
:
absolute
;
right
:
0
;
top
:
0
;
box-sizing
:
content-box
;
padding
:
15px
;
}
#main_ul
{
padding
:
0
30px
;
background-color
:
white
;
font-size
:
30px
;
}
#main_ul
>
ul
{
padding-left
:
0
;
}
#main_ul
>
ul
>
li
{
cursor
:
pointer
;
list-style
:
none
;
}
#main_ul
>
ul
>
li
+
li
{
border-top
:
1px
solid
#e0e0e0
;
}
#main_ul
>
ul
>
li
>
p
:nth-of-type
(
1
)
{
color
:
#333
;
padding
:
20px
0
10px
;
margin
:
0
;
}
#main_ul
>
ul
>
li
>
p
:nth-of-type
(
2
)
{
color
:
#999
;
padding-bottom
:
20px
;
margin
:
0
;
}
.loading_pic
{
font-size
:
20px
;
text-align
:
center
;
width
:
100%
;
position
:
absolute
;
top
:
150px
;
display
:
none
;
}
.loading_pic
>
img
{
width
:
120px
;
display
:
block
;
margin
:
0
auto
;
}
.loading_pic
>
p
{
font-size
:
20px
;
color
:
#333
;
text-align
:
center
;
margin-top
:
10px
;
color
:
rgb
(
51
,
51
,
51
);
}
.no_more
{
font-size
:
30px
;
height
:
50px
;
line-height
:
50px
;
text-align
:
center
;
display
:
none
;
}
/**/
#li_dujia_area
{
display
:
none
;
}
/*上传图片预览区域*/
.img-pre-ul
{
padding-left
:
0
;
overflow
:
hidden
;
/*width: 100%;*/
}
.img-pre-ul
>
li
{
list-style
:
no
;
float
:
left
;
width
:
210px
;
height
:
170px
;
overflow
:
hidden
;
margin-right
:
10px
;
margin-top
:
10px
;
}
.img-pre-ul
>
li
.pdf-pre-li
{
height
:
70px
;
}
.img-pre-ul
>
li
>
img
{
float
:
left
;
width
:
210px
;
height
:
140px
;
object-fit
:
contain
;
cursor
:
pointer
;
}
.img-pre-ul
>
li
>
a
{
float
:
left
;
width
:
210px
;
text-align
:
center
;
line-height
:
30px
;
}
.img-pre-ul
>
li
>
a
.pdf-pre-a
{
line-height
:
20px
;
word-break
:
break-all
;
}
/*图片点击放大预览区域的样式*/
#img_mask_area
{
position
:
fixed
;
left
:
0
;
top
:
0
;
width
:
100%
;
height
:
100%
;
overflow
:
hidden
;
z-index
:
1001
;
background-color
:
rgba
(
0
,
0
,
0
,
.3
);
display
:
none
;
}
#img_mask_area
>
img
{
width
:
900px
;
height
:
700px
;
object-fit
:
contain
;
position
:
absolute
;
left
:
50%
;
top
:
50%
;
margin-left
:
-450px
;
margin-top
:
-350px
;
}
/*整个页面加载图标区域*/
#main_loading_pic
{
position
:
fixed
;
top
:
50%
;
left
:
50%
;
width
:
100px
;
height
:
100px
;
margin-left
:
-50px
;
margin-top
:
-50px
;
overflow
:
hidden
;
display
:
none
;
}
#main_loading_pic
>
img
{
float
:
left
;
width
:
100%
;
height
:
100%
;
}
</style>
<div
id=
"page-content-wrapper"
>
<div
class=
"container"
>
<div
class=
"row"
>
<div
class=
"col-lg-10 col-lg-offset-0"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading"
>
新增商铺
</div>
<div
class=
"panel-body"
>
<form
class=
"form-inline"
>
<ul
class=
"list-group"
>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
"shangpuType"
>
商铺类型
</label>
<select
class=
"form-control"
name=
"shangpuType"
id=
"shangpuType"
data-alert=
"请选择商铺类型"
>
<option
value=
"0"
>
商场
</option>
<option
value=
"1"
>
街铺
</option>
</select>
</div>
<div
class=
"form-group"
>
<label
for=
"show_all"
>
是否给商户公开
</label>
<select
class=
"form-control"
name=
"showCd"
id=
"showCd"
data-alert=
"请选择是否给商户公开"
>
<option
value=
""
>
请选择
</option>
<option
value=
"0"
>
是
</option>
<option
value=
"1"
>
否
</option>
</select>
</div>
<div
class=
"form-group"
>
<label
for=
"exclusiveType"
>
是否独家
</label>
<select
class=
"form-control"
name=
"exclusiveType"
id=
"exclusiveType"
data-alert=
"请选择是否独家"
>
<option
value=
""
>
请选择
</option>
<option
value=
"0"
>
否
</option>
<option
value=
"1"
>
是
</option>
</select>
</div>
</li>
<li
class=
"list-group-item"
id=
"li_acr_phone"
>
<div
class=
"form-group phone-list-container"
style=
"width: 70px;"
>
<label
for=
""
>
案场人电话
</label>
</div>
<div
class=
"form-group phone-list-container"
>
<input
type=
"tel"
class=
"form-control phone_jia"
placeholder=
"请输入"
>
<ul></ul>
</div>
<!--<div class="form-group phone-list-container">
<input type="tel" class="form-control phone_jia" placeholder="请输入">
<ul></ul>
<img src="/resource/image/search_gb.png" class="input-cancel-pic" />
</div>-->
<img
src=
"/resource/image/jia2@2x.png"
data-hideid=
'1'
class=
"input-add-tel"
id=
"acr_tel_jia"
/>
</li>
<li
class=
"list-group-item"
id=
"li_pf_phone"
>
<div
class=
"form-group phone-list-container"
style=
"width: 70px;"
>
<label
for=
""
>
盘方
</label>
</div>
<div
class=
"form-group phone-list-container"
>
<input
type=
"tel"
class=
"form-control phone_jia"
placeholder=
"请输入"
>
<ul></ul>
</div>
<img
src=
"/resource/image/jia2@2x.png"
data-hideid=
'0'
class=
"input-add-tel"
id=
"pf_tel_jia"
/>
</li>
<li
class=
"list-group-item"
id=
"li_acqx_phone"
>
<div
class=
"form-group phone-list-container"
style=
"width: 70px;"
>
<label
for=
""
>
案场权限人
</label>
</div>
<div
class=
"form-group phone-list-container"
>
<input
type=
"tel"
class=
"form-control phone_jia"
placeholder=
"请输入"
>
<ul></ul>
</div>
<img
src=
"/resource/image/jia2@2x.png"
data-hideid=
'0'
class=
"input-add-tel"
id=
"acqx_tel_jia"
/>
</li>
<li
class=
"list-group-item"
>
<label
for=
""
>
业态(可多选)
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"yetai"
id=
""
value=
"餐饮美食"
>
餐饮美食
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"yetai"
id=
""
value=
"百货零售"
>
百货零售
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"yetai"
id=
""
value=
"休闲娱乐"
>
休闲娱乐
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"yetai"
id=
""
value=
"其他"
>
其他
</label>
</li>
<li
class=
"list-group-item"
>
<label
for=
""
>
商铺标签(可多选)
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"临近地铁"
name=
"shangpu_tags[]"
>
临近地铁
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"临街旺铺"
name=
"shangpu_tags[]"
>
临街旺铺
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"无进场费"
name=
"shangpu_tags[]"
>
无进场费
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"办公室配套"
name=
"shangpu_tags[]"
>
办公室配套
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"5A景区游客量大"
name=
"shangpu_tags[]"
>
5A景区游客量大
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"餐饮综合体"
name=
"shangpu_tags[]"
>
餐饮综合体
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"强大案场阵容"
name=
"shangpu_tags[]"
>
强大案场阵容
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"综合市场"
name=
"shangpu_tags[]"
>
综合市场
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"超高佣金"
name=
"shangpu_tags[]"
>
超高佣金
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"居民区十字路口"
name=
"shangpu_tags[]"
>
居民区十字路口
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"写字楼底商"
name=
"shangpu_tags[]"
>
写字楼底商
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"住宅配套"
name=
"shangpu_tags[]"
>
住宅配套
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"沿街一单收佣9.5w"
name=
"shangpu_tags[]"
>
沿街一单收佣9.5w
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"黄兴路1750"
name=
"shangpu_tags[]"
>
黄兴路1750
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"大学门口"
name=
"shangpu_tags[]"
>
大学门口
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"广灵二路"
name=
"shangpu_tags[]"
>
广灵二路
</label>
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
class=
"roomTag"
id=
""
value=
"40831"
name=
"shangpu_tags[]"
>
40831
</label>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
"internalName"
>
房东手机号
</label>
<input
type=
"tel"
class=
"form-control"
placeholder=
"请输入"
name=
"landlordPhone"
id=
"landlordPhone"
data-alert=
"请填写房东手机号!"
>
</div>
<div
class=
"form-group"
>
<label
for=
"internalName"
>
对内商铺名称
</label>
<input
type=
"text"
class=
"form-control"
placeholder=
"请输入"
name=
"internalName"
id=
"internalName"
data-alert=
"请填写对内商铺名称!"
>
</div>
<div
class=
"form-group show-c-part"
>
<label
for=
"foreignName"
>
对商户显示的商铺名称
</label>
<input
type=
"text"
class=
"form-control"
placeholder=
"请输入"
name=
"foreignName"
id=
"foreignName"
data-alert=
"请填写对外商铺名称!"
>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
"group"
>
租金模式
</label>
<select
class=
"form-control"
name=
"zujinType"
id=
"zujinType"
>
<option
value=
"1"
selected=
"selected"
>
月租金
</option>
<option
value=
"2"
>
营业额扣点
</option>
<option
value=
"3"
>
每平方米租金
</option>
</select>
</div>
<div
class=
"form-group"
>
<label
class=
""
for=
"price"
>
月租均价
</label>
<div
class=
"input-group"
>
<div
class=
"input-group-addon"
style=
"display: none;"
>
营业额扣点
</div>
<input
type=
"number"
class=
"form-control input-100-width"
name=
"moonPrice"
id=
"moonPrice"
placeholder=
"请输入"
data-alert=
"请填写月租均价!"
>
<div
class=
"input-group-addon"
>
元/月
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
"management_fee"
>
物业管理费
</label>
<div
class=
"input-group"
>
<input
type=
"number"
class=
"form-control input-100-width"
name=
"wuyePrice"
id=
"wuyePrice"
placeholder=
"请输入"
data-alert=
"请填写物业管理费!"
>
<div
class=
"input-group-addon"
>
元/月
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
进场费
</label>
<div
class=
"input-group"
>
<input
type=
"number"
class=
"form-control input-100-width"
id=
"jinchangPrice"
placeholder=
"请输入"
data-alert=
"请填写进场费!"
>
<div
class=
"input-group-addon"
>
元/月
</div>
</div>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
""
>
剩余铺数
</label>
<input
type=
"number"
class=
"form-control input-100-width"
id=
"roomShengyuNum"
placeholder=
"请输入"
data-alert=
"请填写剩余铺数!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
总铺数
</label>
<input
type=
"number"
class=
"form-control input-100-width"
id=
"roomAllNum"
placeholder=
"请输入"
data-alert=
"请填写总铺数!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
商铺面积
</label>
<div
class=
"input-group"
>
<input
type=
"number"
class=
"form-control input-100-width"
id=
"roomArea1"
placeholder=
"请输入"
data-alert=
"请填写商铺面积!"
>
<div
class=
"input-group-addon shangchang-show-part"
>
至
</div>
<input
type=
"number"
class=
"form-control input-100-width shangchang-show-part"
id=
"roomArea2"
placeholder=
"请输入"
data-alert=
"请填写商铺面积!"
>
<div
class=
"input-group-addon"
>
m²
</div>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
商业面积
</label>
<div
class=
"input-group"
>
<input
type=
"number"
class=
"form-control input-100-width"
id=
"businessArea"
placeholder=
"请输入"
data-alert=
"请填写商业面积!"
>
<div
class=
"input-group-addon"
>
m²
</div>
</div>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
""
>
对内地址
</label>
<button
type=
"button"
class=
"btn btn-primary"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
id=
"position_btn"
>
选择地址定位
</button>
<!--<select class="form-control" id="province_internal" name="province_internal"></select>
<select class="form-control" id="city_internal" name="city_internal"></select>
<select class="form-control" id="disc_internal" name="disc_internal"></select>-->
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"通过地址定位获取"
readonly=
"readonly"
id=
"province_internal"
/>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"通过地址定位获取"
readonly=
"readonly"
id=
"city_internal"
/>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"通过地址定位获取"
readonly=
"readonly"
id=
"disc_internal"
/>
<input
type=
"text"
class=
"form-control"
id=
"address_internal"
placeholder=
"请输入详细地址"
data-alert=
"请填写对内详细地址!"
>
</div>
<div
class=
"form-group"
>
<label
for=
"longitude"
>
经度
</label>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"通过地址定位获取"
readonly=
"readonly"
id=
"longitude"
name=
"longitude"
data-alert=
"请通过地址定位获取经纬度!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
纬度
</label>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"通过地址定位获取"
readonly=
"readonly"
id=
"latitude"
name=
"latitude"
data-alert=
"请通过地址定位获取经纬度!"
>
</div>
</li>
<li
class=
"list-group-item show-c-part"
>
<div
class=
"form-group"
>
<label
for=
""
>
对商户显示的地址
</label>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"与对内地址一致,通过地址定位获取"
readonly=
"readonly"
id=
"province_external"
/>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"与对内地址一致,通过地址定位获取"
readonly=
"readonly"
id=
"city_external"
/>
<input
type=
"text"
class=
"form-control input-100-width address-relate"
data-toggle=
"modal"
data-target=
".bs-example-modal-lg"
title=
"与对内地址一致,通过地址定位获取"
readonly=
"readonly"
id=
"disc_external"
/>
<input
type=
"text"
class=
"form-control"
id=
"address_external"
placeholder=
"请输入详细地址"
data-alert=
"请填写对外详细地址!"
>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100"
>
<label
for=
""
>
交通
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"traffic"
data-alert=
"请填写交通内容!"
></textarea>
</div>
<div
class=
"form-group full-width-100"
>
<label
for=
""
>
已入住
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"hasMoved"
data-alert=
"请填写已入住内容!"
></textarea>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
""
>
营业时间
</label>
<input
type=
"text"
class=
"form-control"
id=
"yingyeTime"
data-alert=
"请填写营业时间!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
开盘时间
</label>
<input
type=
"date"
class=
"form-control"
id=
"kaipanTime"
data-alert=
"请开盘开盘时间!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
开业时间
</label>
<input
type=
"date"
class=
"form-control"
id=
"kaiyeTime"
data-alert=
"请填写开业时间!"
>
</div>
<div
class=
"form-group"
>
<label
for=
""
>
是否有燃气
</label>
<select
class=
"form-control"
id=
"hasGas"
>
<option
value=
"0"
selected=
"selected"
>
有
</option>
<option
value=
"1"
>
没有
</option>
</select>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100"
>
<label
for=
""
>
佣金规则
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"yongjinRule"
data-alert=
"请填写佣金规则!"
></textarea>
</div>
<div
class=
"form-group full-width-100"
>
<label
for=
""
>
对内项目优势
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"internalYoushi"
data-alert=
"请填写对内项目优势!"
></textarea>
</div>
<div
class=
"form-group full-width-100 show-c-part"
>
<label
for=
""
>
对商户显示的项目优势
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"foreignYoushi"
data-alert=
"请填写对外项目优势!"
></textarea>
</div>
<div
class=
"form-group full-width-100"
>
<label
for=
""
>
签约规则
</label>
<textarea
class=
"form-control textarea-500-width"
rows=
"3"
id=
"qianyueRule"
data-alert=
"请填写签约规则!"
></textarea>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100 full-pic-area"
>
<label
for=
""
>
列表页封面图(1张)
</label>
<input
readonly=
"readonly"
type=
"text"
name=
"liebiao_pic_input"
class=
"form-control"
style=
"width: 150px !important;display:none"
id=
"liebiao_pic_input"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default upload-image-btn"
id=
"liebiao_pic_btn"
type=
"button"
data-limittop=
"1"
>
选择图片
</button>
<span
class=
"tip"
></span>
</div>
<ul
class=
"img-pre-ul"
id=
"liebiao_pic_ul"
></ul>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100 full-pic-area"
>
<label
for=
""
>
详情页轮播图(至少6张)
</label>
<input
readonly=
"readonly"
type=
"text"
name=
"xiangqing_pic_input"
class=
"form-control"
style=
"display: none"
id=
"xiangqing_pic_input"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default upload-image-btn"
id=
"xiangqing_pic_btn"
type=
"button"
data-limittop=
"20"
>
选择图片
</button>
<span
class=
"tip"
></span>
</div>
<ul
class=
"img-pre-ul"
id=
"xiangqing_pic_ul"
></ul>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100 full-pic-area"
>
<label
for=
""
>
楼层平面图(选填)
</label>
<input
readonly=
"readonly"
type=
"text"
name=
"louceng_pic_input"
class=
"form-control"
style=
"display: none"
id=
"louceng_pic_input"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default upload-image-btn"
id=
"louceng_pic_btn"
type=
"button"
data-limittop=
"20"
>
选择图片
</button>
<span
class=
"tip"
></span>
</div>
<ul
class=
"img-pre-ul"
id=
"louceng_pic_ul"
></ul>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group full-width-100 full-pic-area"
>
<label
for=
""
>
附件上传(pdf格式,选填,1个)
</label>
<input
readonly=
"readonly"
type=
"text"
name=
"fujian_pre"
class=
"form-control"
style=
"display: none"
id=
"fujian_pre"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default upload-image-btn"
id=
"fujian_btn"
type=
"button"
data-limittop=
"1"
data-spfile=
"pdf"
>
选择文件
</button>
<span
class=
"tip"
></span>
</div>
<ul
class=
"img-pre-ul"
id=
"fujian_ul"
></ul>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
>
<label
for=
""
>
微楼书(选填)
</label>
<div
class=
"input-group"
>
<input
type=
"text"
class=
"form-control input-360-width"
id=
"weilouLink"
placeholder=
"请填入微楼书网页链接"
data-alert=
"请填写微楼书链接!"
>
<div
class=
"input-group-addon"
>
如(https://www.tonglianjituan.com)
</div>
</div>
</div>
</li>
<li
class=
"list-group-item"
>
<div
class=
"form-group"
style=
"width: 100%;"
>
<label
for=
""
style=
"width: 100%;"
>
大讲堂(选填)
</label>
<div
class=
"input-group"
style=
"width: 100%;"
id=
"dajiangtang"
>
<?php
create_editor
(
'describe'
);
?>
</div>
</div>
</li>
<li
class=
"list-group-item li_dujia_area"
>
<div
class=
"form-group"
>
<label
for=
""
>
独家代理有效期
</label>
<div
class=
"input-group"
>
<input
type=
"date"
class=
"form-control"
id=
"exclusiveDate1"
data-alert=
"请填写独家代理有效期开始时间!"
placeholder=
"请输入"
>
<div
class=
"input-group-addon"
>
至
</div>
<input
type=
"date"
class=
"form-control"
id=
"exclusiveDate2"
data-alert=
"请填写独家代理有效期结束时间!"
placeholder=
"请输入"
>
</div>
</div>
<div
class=
"form-group phone-list-container"
style=
"width: 45px;margin-right: 0;"
>
<label
for=
""
>
独家方
</label>
</div>
<div
class=
"form-group phone-list-container"
>
<input
type=
"tel"
class=
"form-control phone_jia"
id=
"exclusiveTel"
data-alert=
"请填写独家方!"
placeholder=
"请输入"
>
<ul></ul>
</div>
</li>
<li
class=
"list-group-item li_dujia_area"
>
<div
class=
"form-group full-width-100 full-pic-area"
>
<label
for=
""
>
独家合同上传
</label>
<input
readonly=
"readonly"
type=
"text"
name=
"dujia_pic_input"
class=
"form-control"
style=
"display: none"
id=
"dujia_pic_input"
placeholder=
"请选择图片"
>
<button
class=
"btn btn-default upload-image-btn"
id=
"dujia_pic_btn"
type=
"button"
data-limittop=
"20"
>
选择图片
</button>
<span
class=
"tip"
></span>
</div>
<ul
class=
"img-pre-ul"
id=
"dujia_pic_ul"
></ul>
</li>
<li
class=
"list-group-item"
style=
"text-align: center;"
><button
type=
"submit"
class=
"btn btn-primary"
id=
"saveBtn"
>
保存
</button></li>
</ul>
</form>
</div>
</div>
</div>
</div>
</div>
<!--百度定位的弹出框更改-->
<div
class=
"modal fade bs-example-modal-lg"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myLargeModalLabel"
>
<div
class=
"modal-dialog modal-lg"
role=
"document"
>
<div
class=
"modal-content"
style=
"width: 780px;"
>
<div
class=
"modal-header address-search-head-div"
>
<div
class=
"address-header-bar"
>
<div
id=
"address_city_title"
>
上海市
</div>
<div
class=
"crile"
>
<input
class=
"main-input"
id=
"search_input"
type=
"search"
placeholder=
"请输入地址"
/>
<img
src=
"/resource/image/search_gb.png"
class=
"cancel-pic"
/>
</div>
</div>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-label=
"Close"
style=
"font-size: 42px;"
><span
aria-hidden=
"true"
>
×
</span></button>
</div>
<div
class=
"modal-body"
style=
"height: 780px;"
>
<div
id=
"position_box"
>
<div
id=
"main_ul"
>
<ul></ul>
</div>
<div
id=
"loading_pic"
class=
"loading_pic"
>
<img
src=
"/resource/image/jz2.gif"
/>
<p>
正在加载...
</p>
</div>
<div
id=
"no_more"
class=
"no_more"
>
没有更多了
</div>
</div>
</div>
</div>
</div>
</div>
<script
type=
"text/javascript"
src=
"https://api.map.baidu.com/api?v=2.0&ak=RTimRTxtj23AYTCkSsPvNDuQkGpR2fPX"
></script>
<!--图片点击查看大图-->
<div
id=
"img_mask_area"
title=
"点击任意位置可关闭"
>
<img
/>
</div>
<!--整夜页面的加载图标区域-->
<div
id=
"main_loading_pic"
>
<img
src=
"/resource/image/jz2.gif"
/>
</div>
</div>
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=123'
charset=
'utf-8'
></script>
</div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment