Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing
/
D_Team_Khuloud
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최동원
2020-06-10 22:38:59 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f0bec4c961bcd698c63b21ba102d991780bf67e5
f0bec4c9
1 parent
e3cbf308
.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
front-end/src/components/Fav_list.vue
front-end/src/components/Fav_list.vue
View file @
f0bec4c
...
...
@@ -514,12 +514,12 @@ export default {
try {
const cData = {
id: this.$store.state.id,
cur: this.
$store.state.cur
,
cur: this.
curfName.location
,
name: this.curfName.folder_name,
};
console.log(cData);
const response = await delFavorite(cData);
this.$store.commit('set
Folder
', response.data.folders);
this.$store.commit('set
favFolderList
', response.data.folders);
} catch (error) {
console.log('에러');
}
...
...
@@ -542,12 +542,12 @@ export default {
try {
const fData = {
id: this.$store.state.id,
cur: this.
$store.state.cur
,
cur: this.
cfilename.location
,
name: this.cfilename.file_name,
};
console.log(fData);
const response = await delFavoriteFile(fData);
this.$store.commit('set
File
', response.data.files);
this.$store.commit('set
favFileList
', response.data.files);
} catch (error) {
console.log('에러');
}
...
...
Please
register
or
login
to post a comment