Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
5
51business
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
方斌
51business
Commits
541c0b71
Commit
541c0b71
authored
Jun 13, 2019
by
李尚科
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
house v2 tool fix
parent
9497cb78
Pipeline
#8911
passed with stage
in 7 seconds
Changes
4
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
176 additions
and
2 deletions
+176
-2
tool.js
app/controller/house/v2/tool.js
+0
-0
house_price_city.js
app/model/block/house_price_city.js
+78
-0
house_supply_demand.js
app/model/block/house_supply_demand.js
+93
-0
house.js
app/router/house.js
+5
-2
No files found.
app/controller/house/v2/tool.js
View file @
541c0b71
This diff is collapsed.
Click to expand it.
app/model/block/house_price_city.js
0 → 100644
View file @
541c0b71
'use strict'
;
module
.
exports
=
app
=>
{
const
{
STRING
,
INTEGER
}
=
app
.
Sequelize
;
const
HousePriceCity
=
app
.
blockModel
.
define
(
'house_price_city'
,
{
id
:
{
type
:
INTEGER
,
allowNull
:
false
,
primaryKey
:
true
,
autoIncrement
:
true
,
},
price
:
INTEGER
,
},
{
timestamps
:
false
,
tableName
:
'house_price_city'
,
freezeTableName
:
true
,
});
HousePriceCity
.
one
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HousePriceCity
.
findOne
({
attributes
:
attributes
,
where
:
where
,
});
}
HousePriceCity
.
all
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HousePriceCity
.
findAll
({
attributes
:
attributes
,
where
:
where
,
});
}
HousePriceCity
.
list
=
async
(
data
=
{})
=>
{
const
limit
=
data
.
limit
?
data
.
limit
:
10
;
const
page
=
data
.
page
?
data
.
page
:
1
;
const
order
=
data
.
order
?
data
.
order
:
[];
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
const
condition
=
{
offset
:
(
page
-
1
)
*
limit
,
limit
,
where
:
where
,
order
:
order
,
attributes
:
attributes
,
};
const
{
count
,
rows
}
=
await
HousePriceCity
.
findAndCountAll
(
condition
);
return
{
page
,
count
,
rows
};
}
HousePriceCity
.
add
=
async
(
data
)
=>
{
try
{
//返回promise对象实力 instance
const
res
=
await
HousePriceCity
.
create
(
data
);
//从promise 实例中中获得需要的id号,id 必须是自增长,而且必须主键,否则返回null
return
res
.
id
;
}
catch
(
error
)
{
ctx
.
status
=
500
;
throw
(
error
);
}
}
HousePriceCity
.
edit
=
async
(
data
)
=>
{
const
where
=
data
.
where
;
const
params
=
data
.
params
;
HousePriceCity
.
update
(
params
,
{
where
:
where
}).
catch
(
e
=>
res
.
json
({
status
:
500
,
error
:
e
}));
}
return
HousePriceCity
;
};
app/model/block/house_supply_demand.js
0 → 100644
View file @
541c0b71
'use strict'
;
module
.
exports
=
app
=>
{
const
{
INTEGER
,
TEXT
}
=
app
.
Sequelize
;
const
HouseSupplyDemand
=
app
.
blockModel
.
define
(
'house_supply_demand'
,
{
id
:
{
type
:
INTEGER
,
allowNull
:
false
,
primaryKey
:
true
,
autoIncrement
:
true
,
},
supply_demand_json
:
{
type
:
TEXT
,
allowNull
:
true
,
field
:
'supply_demand_json'
,
get
()
{
const
supply_demand_json
=
this
.
getDataValue
(
'supply_demand_json'
);
if
(
supply_demand_json
)
{
try
{
return
JSON
.
parse
(
supply_demand_json
);
}
catch
(
error
)
{
return
[];
}
}
return
[];
},
},
},
{
timestamps
:
false
,
tableName
:
'house_supply_demand'
,
freezeTableName
:
true
,
});
HouseSupplyDemand
.
one
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HouseSupplyDemand
.
findOne
({
attributes
:
attributes
,
where
:
where
,
});
}
HouseSupplyDemand
.
all
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HouseSupplyDemand
.
findAll
({
attributes
:
attributes
,
where
:
where
,
});
}
HouseSupplyDemand
.
list
=
async
(
data
=
{})
=>
{
const
limit
=
data
.
limit
?
data
.
limit
:
10
;
const
page
=
data
.
page
?
data
.
page
:
1
;
const
order
=
data
.
order
?
data
.
order
:
[];
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
const
condition
=
{
offset
:
(
page
-
1
)
*
limit
,
limit
,
where
:
where
,
order
:
order
,
attributes
:
attributes
,
};
const
{
count
,
rows
}
=
await
HouseSupplyDemand
.
findAndCountAll
(
condition
);
return
{
page
,
count
,
rows
};
}
HouseSupplyDemand
.
add
=
async
(
data
)
=>
{
try
{
//返回promise对象实力 instance
const
res
=
await
HouseSupplyDemand
.
create
(
data
);
//从promise 实例中中获得需要的id号,id 必须是自增长,而且必须主键,否则返回null
return
res
.
id
;
}
catch
(
error
)
{
ctx
.
status
=
500
;
throw
(
error
);
}
}
HouseSupplyDemand
.
edit
=
async
(
data
)
=>
{
const
where
=
data
.
where
;
const
params
=
data
.
params
;
HouseSupplyDemand
.
update
(
params
,
{
where
:
where
}).
catch
(
e
=>
res
.
json
({
status
:
500
,
error
:
e
}));
}
return
HouseSupplyDemand
;
};
app/router/house.js
View file @
541c0b71
...
...
@@ -48,13 +48,16 @@ module.exports = app => {
//房产v2
router
.
get
(
'/v2/tool/:house_style/:area_code/:level'
,
'house.
tool.getMapPoint'
);
//购房计划地图点位
router
.
get
(
'/v2/tool/:house_style/:area_code/:level'
,
'house.
v2.tool.getMapPoint'
);
//购房计划地图点位(存钱罐地图)(房价地图)
router
.
post
(
'/v2/tool/plan'
,
'house.tool.generateBuyHousePlan'
);
//生成购房计划
router
.
get
(
'/v2/tool/:type/:area_code'
,
'house.
tool.getHousePriceFeature'
);
//房价指数 房价涨跌 购房资格、贷款额度问答
router
.
get
(
'/v2/tool/:type/:area_code'
,
'house.
v2.tool.getHousePriceFeature'
);
//房价走势图 房价涨跌图 购房资格图、贷款额度问答、供需趋势图
router
.
post
(
'/v2/tool/calculate_price'
,
'house.tool.calculateHousePrice'
);
//房产估价
router
.
get
(
'/v2/tool/qfang_area_list'
,
'house.tool.getQFangAreaList'
);
//房产估价模糊匹配到的小区列表
router
.
get
(
'/v2/tool/map_houses'
,
'house.tool.getMapHouses'
);
//房产估价模糊匹配到的小区列表
router
.
get
(
'/v2/tool/house_price_feature_city'
,
'house.v2.tool.getHousePriceFeatureCity'
);
//房产估价模糊匹配到的小区列表
router
.
get
(
'/v2/tool/house_price_city'
,
'house.v2.tool.getHousePriceCity'
);
//房产估价模糊匹配到的小区列表
//租房列表
router
.
get
(
'/v2/rental_house/home'
,
'house.v2.rentalHouse.home'
);
//租房首页信息
...
...
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