You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
13 lines
352 B
3 years ago
|
/*
|
||
|
* @Author: ch
|
||
|
* @Date: 2022-04-13 14:30:33
|
||
|
* @LastEditors: ch
|
||
|
* @LastEditTime: 2022-04-13 14:31:55
|
||
|
* @Description: file content
|
||
|
*/
|
||
|
|
||
|
import {ToAsyncAwait, MsbRequestTk} from '@/common/utils';
|
||
|
|
||
|
const BASE_URL = '/oss/oss';
|
||
|
export const ApiPostGetOssConfig = (data) =>
|
||
|
ToAsyncAwait(MsbRequestTk.post(`${BASE_URL}/generateOssSignature`, data));
|