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
9bff2398
Commit
9bff2398
authored
Jun 11, 2019
by
Hsinli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
addd
parent
12f7794a
Pipeline
#8699
passed with stage
in 12 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
collection.js
app/model/realestate/collection.js
+1
-1
new_house.js
app/model/realestate/new_house.js
+1
-1
order.js
app/model/realestate/order.js
+1
-1
search_history.js
app/model/realestate/search_history.js
+1
-1
No files found.
app/model/realestate/collection.js
View file @
9bff2398
...
...
@@ -116,7 +116,7 @@ module.exports = app => {
const
where
=
data
.
where
;
const
params
=
data
.
params
;
try
{
return
res
=
await
Collection
.
update
(
params
,
{
where
:
where
})
return
await
Collection
.
update
(
params
,
{
where
:
where
})
}
catch
(
error
)
{
throw
(
error
);
}
...
...
app/model/realestate/new_house.js
View file @
9bff2398
...
...
@@ -320,7 +320,7 @@ module.exports = app => {
const
where
=
data
.
where
;
const
params
=
data
.
params
;
try
{
return
res
=
await
NewHouse
.
update
(
params
,
{
where
:
where
})
return
await
NewHouse
.
update
(
params
,
{
where
:
where
})
}
catch
(
error
)
{
throw
(
error
);
}
...
...
app/model/realestate/order.js
View file @
9bff2398
...
...
@@ -131,7 +131,7 @@ module.exports = app => {
const
where
=
data
.
where
;
const
params
=
data
.
params
;
try
{
return
res
=
await
Order
.
update
(
params
,
{
where
:
where
})
return
await
Order
.
update
(
params
,
{
where
:
where
})
}
catch
(
error
)
{
throw
(
error
);
}
...
...
app/model/realestate/search_history.js
View file @
9bff2398
...
...
@@ -112,7 +112,7 @@ module.exports = app => {
const
where
=
data
.
where
;
const
params
=
data
.
params
;
try
{
return
res
=
await
SearchHistory
.
update
(
params
,
{
where
:
where
})
return
await
SearchHistory
.
update
(
params
,
{
where
:
where
})
}
catch
(
error
)
{
throw
(
error
);
}
...
...
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