ui ประวัติการศึกษา

This commit is contained in:
Kittapath 2023-03-16 00:35:08 +07:00
parent 792f30d606
commit 0157bf51b9
46 changed files with 1500 additions and 1642 deletions

34
src/api/index.ts Normal file
View file

@ -0,0 +1,34 @@
/**config api */
import { ref } from "vue";
const env = ref<string>(process.env.NODE_ENV || "development");
// if (process.env.VUE_APP_TEST) {
// env = "test";
// }
const config = ref<any>({
development: {
API_URI: "https://localhost:7006/api/v1",
// API_URI: "https://wsh.frappet.com",
MEET_URI: "meet.frappet.com",
},
test: {
API_URI: "http://localhost:5010/api/v1",
MEET_URI: "meet.frappet.com",
},
production: {
// API_URI: "https://localhost:5010",
API_URI: `${window.location.protocol}//api-${window.location.host}/api/v1`,
MEET_URI: "meet.frappet.com",
},
});
const API_URI = ref<string>(config.value[env.value].API_URI);
const MEET_URI = ref<string>(config.value[env.value].MEET_URI);
export default {
env: env.value,
config: config.value,
API_URI: API_URI.value,
MEET_URI: MEET_URI.value,
};

View file

@ -0,0 +1,7 @@
import env from '../index'
const dashbord = `${env.API_URI}/dashbord/`
export default {
countDashbordSubHistory: (type: number) => `${dashbord}${type}`,
countDashbordHistory: `${dashbord}`
}