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
a9c1d2f3
Commit
a9c1d2f3
authored
Dec 14, 2017
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
banner
parent
55da5a14
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
14 deletions
+26
-14
Shop.php
application/api/controller/Shop.php
+7
-3
TradeLog.php
application/api/controller/TradeLog.php
+4
-0
Index.php
application/index/controller/Index.php
+0
-10
banner.php
application/index/controller/banner.php
+14
-0
HouseInfos.php
application/model/HouseInfos.php
+1
-1
No files found.
application/api/controller/Shop.php
View file @
a9c1d2f3
...
...
@@ -142,8 +142,8 @@ class Shop extends Basic
public
function
getShopDetail
()
{
$params
=
$this
->
params
;
$field
=
"id,management_fee,title,address,city,
disc,disccircles,sales,yetai,room_area2,shangpu_type,is_test
,
room_num_left
,shangpu_tags,carefully_chosen,price,dish,file_path"
;
$field
=
"id,management_fee,title,address,city,
room_area,room_area2,business_area,disc,disccircles,sales,slotting_fee,transfer_fee
,
yetai,room_area2,shangpu_type,is_test,room_num_left,room_num_total
,shangpu_tags,carefully_chosen,price,dish,file_path"
;
$conditions
=
[];
if
(
empty
(
$params
[
'id'
]))
{
...
...
@@ -154,7 +154,11 @@ class Shop extends Basic
$conditions
[
'show_all'
]
=
array
(
'eq'
,
0
);
//只显示公开楼盘
$result
=
$this
->
db
->
getHouseDetail
(
$field
,
$conditions
);
if
(
$result
[
0
][
'room_num_left'
]
==
0
)
{
$result
[
"api_path"
]
=
IMG_PATH
;
$param
[
"house_id"
]
=
$params
[
'id'
];
$result
[
"images"
]
=
$this
->
dbImg
->
getHouseImages
(
$param
,
15
);
if
(
$result
[
'room_num_left'
]
==
0
)
{
return
$this
->
response
(
"101"
,
'此楼盘已下架'
);
}
return
$this
->
response
(
"200"
,
'request success'
,
$result
);
...
...
application/api/controller/TradeLog.php
View file @
a9c1d2f3
...
...
@@ -29,6 +29,10 @@ class TradeLog extends Basic
$this
->
evaluateMode
=
new
Evaluate
();
}
/**
* 获取交易记录
* @return \think\Response
*/
public
function
getTradeList
()
{
$params
=
$this
->
params
;
...
...
application/index/controller/Index.php
deleted
100644 → 0
View file @
55da5a14
<?php
namespace
app\index\controller
;
class
Index
{
public
function
index
()
{
return
'<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:)</h1><p> ThinkPHP V5<br/><span style="font-size:30px">十年磨一剑 - 为API开发设计的高性能框架</span></p><span style="font-size:22px;">[ V5.0 版本由 <a href="http://www.qiniu.com" target="qiniu">七牛云</a> 独家赞助发布 ]</span></div><script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script><script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script><thinkad id="ad_bd568ce7058a1091"></thinkad>'
;
}
}
application/index/controller/banner.php
0 → 100644
View file @
a9c1d2f3
<?php
namespace
app\index\controller
;
/**
* Created by PhpStorm.
* User : zw
* Date : 2017/12/14
* Time : 15:12
* Intro:
*/
class
banner
{
}
\ No newline at end of file
application/model/HouseInfos.php
View file @
a9c1d2f3
...
...
@@ -69,7 +69,7 @@ class HouseInfos extends Model
return
$data
=
$this
->
dbHouseInfo
->
field
(
$field
)
->
where
(
$params
)
->
select
(
);
->
find
(
$params
[
"id"
]
);
}
...
...
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