You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import $config from '@/config.js'
|
|
const url_ = $config.url;
|
|
let url_array = {};
|
|
url_array['YO'] = `${url_}/api/yo`;
|
|
const api = (mark) => {
|
|
if (mark === '') return url_;
|
|
return url_array[mark];
|
|
}
|
|
export default api; |