login user
This commit is contained in:
@@ -223,7 +223,7 @@ const newDomain = () => {
|
||||
|
||||
|
||||
const activeDomain = (id:number) => {
|
||||
api.put(`http://127.0.0.1:8000/api/activedomain/1/`+ id).then(() =>{
|
||||
api.put(`http://127.0.0.1:8000/api/activedomain/`+ id).then(() =>{
|
||||
getDomain();
|
||||
})
|
||||
};
|
||||
@@ -248,16 +248,16 @@ const closeDg = (val:string) => {
|
||||
{
|
||||
dodmainids.push(domains[key].id);
|
||||
}
|
||||
api.post(`http://127.0.0.1:8000/api/domain/1`, dodmainids).then(() =>{getDomain();});
|
||||
api.post(`http://127.0.0.1:8000/api/domain`, dodmainids).then(() =>{getDomain();});
|
||||
}
|
||||
|
||||
};
|
||||
const getDomain = () => {
|
||||
api.get(`http://127.0.0.1:8000/api/activedomain/1`).then(res => {
|
||||
api.get(`http://127.0.0.1:8000/api/activedomain`).then(res => {
|
||||
activedomainid.value = res.data.id;
|
||||
authStore.changedomain(res.data.name);
|
||||
});
|
||||
api.get(`http://127.0.0.1:8000/api/domain/1`).then(res => {
|
||||
api.get(`http://127.0.0.1:8000/api/domain`).then(res => {
|
||||
rows.length = 0;
|
||||
res.data.forEach((item) => {
|
||||
rows.push({ id:item.id,name: item.name, url: item.url, kintoneuser: item.kintoneuser, kintonepwd: item.kintonepwd});
|
||||
|
||||
Reference in New Issue
Block a user