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.
22 lines
388 B
22 lines
388 B
import http from '../common/axios.js'
|
|
//通用接口
|
|
export default {
|
|
//获取地区属性结构列表
|
|
getAreaTree(data={}) {
|
|
let url = '/area/getAreaTree'
|
|
return http.get(url,data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//获取字典数据
|
|
getDictionary(data) {
|
|
let url = `/member/dictionary/type/${data}`
|
|
return http.get(url,data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
|
|
|
|
}
|