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.
31 lines
559 B
31 lines
559 B
import http from '../common/axios.js'
|
|
|
|
//获取搜索记录
|
|
function search_record(data) {
|
|
let url = '/dnseyeapi/Search/record'
|
|
return http.get(url,data).then(res => {
|
|
return res;
|
|
})
|
|
}
|
|
|
|
//获取搜索记录
|
|
function delete_record(data) {
|
|
let url = '/dnseyeapi/Search/deleterecord'
|
|
return http.get(url,data).then(res => {
|
|
return res;
|
|
})
|
|
}
|
|
|
|
//搜索
|
|
function ferret_about(data) {
|
|
let url = '/dnseyeapi/Search/ferretabout'
|
|
return http.post(url,data).then(res => {
|
|
return res;
|
|
})
|
|
}
|
|
|
|
export default {
|
|
search_record,
|
|
delete_record,
|
|
ferret_about
|
|
}
|
|
|