This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from Jzow/master
Fix bug in multi-attribute selection product info
- Loading branch information
Showing
2 changed files
with
42 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {defHttp} from '/@/utils/http/axios'; | ||
import { ErrorMessageMode } from '/#/axios'; | ||
import {BaseDataResp} from "@/api/model/baseModel"; | ||
|
||
enum Api { | ||
getBarCode = '/product/getBarCode', | ||
} | ||
|
||
export function getBarCode() { | ||
return defHttp.get<BaseDataResp<number>>( | ||
{ | ||
url: Api.getBarCode, | ||
} | ||
); | ||
} |
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