|
@@ -16,7 +16,12 @@ export const getMusicSheetDetail = (sysMusicScoreId: string, type?: string, musi
|
|
|
url += state.tenantAlbumId == '1' ? `?providerType=TENANT` : `?tenantAlbumId=${state.tenantAlbumId}`
|
|
|
}
|
|
|
if (state.systemType === 'web') {
|
|
|
- url = `/musicSheet/cbsDetail/${sysMusicScoreId}?providerType=${state.providerType}`
|
|
|
+ if (state.isWebAudit) {
|
|
|
+ url = `/musicSheet/cbsDetailAuth/${sysMusicScoreId}`
|
|
|
+ } else {
|
|
|
+ url = `/musicSheet/cbsDetail/${sysMusicScoreId}?providerType=${state.providerType}`
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
return request.get(url, { noToken: type === 'open' ? true : false });
|
|
|
};
|