-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029b012
commit e96f8de
Showing
9 changed files
with
398 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import request from "/src/api/request"; | ||
export default { | ||
uploadRougeSeed(data) { | ||
const token = `Bearer ${localStorage.getItem("USER_TOKEN")}` | ||
return request({ | ||
headers:{"test":'11',Authorization:token}, | ||
url: `auth/rouge-seed/upload`, | ||
method: "post", | ||
data:data | ||
}); | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
import request from "/src/api/request"; | ||
|
||
|
||
|
||
export default { | ||
|
||
|
||
//查询所有常驻商店数据 | ||
getPermStore() { | ||
return request({ | ||
|
Oops, something went wrong.