dictionary.js
381 Bytes
import request from '@/utils/request'
// 上传状态
/**
*/
export function getUploadStatus() {
return request({
url: "/manager-server/dicEntries/getConsStatus",
method: "get",
});
}
// 国家字典
/**
*/
export function getcountryData() {
return request({
url: "/manager-server/dicEntries/getCountryAll",
method: "get",
});
}