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.
16 lines
427 B
16 lines
427 B
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)
|
|
}
|
|
|