You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
427 B
17 lines
427 B
5 years ago
|
var fly = require('../utils/request.js')
|
||
|
module.exports = {
|
||
|
submitConflict: submitConflict,
|
||
|
getHistory:getHistory,
|
||
|
getHistoryById:getHistoryById
|
||
|
}
|
||
|
|
||
|
function submitConflict(param) {
|
||
|
return fly.post('work/property/conflict/submit', param)
|
||
|
}
|
||
|
function getHistory(param) {
|
||
|
return fly.get('work/property/conflict/listHistory', param)
|
||
|
}
|
||
|
function getHistoryById(id) {
|
||
|
return fly.get('work/property/conflict/getById/'+id)
|
||
|
}
|