Merge branch '20230505-供应商注册时间风险分析' of http://gitlab.tianti.tg.unicom.local/eshop/fe_service_ebtp_frontend into 20220309-供应商关联关系疑似违规行为

This commit is contained in:
jl-zhoujl2
2023-05-08 10:01:14 +08:00
55 changed files with 2010 additions and 1196 deletions

View File

@ -1,6 +1,5 @@
/*客服系统专用*/
//跨系统post传参
export const bizServiceCustomService = REACT_APP_CUSTOMERSERVICE_USERCENTER + '&client_id=' + REACT_APP_CUSTOMERSERVICE_CLIENT_ID + '&redirect_uri=' + REACT_APP_CUSTOMERSERVICE_REDIRECT + '/redirect?page=home&mall3_token=';//智慧客服
//export const bizServiceCustomService = REACT_APP_CUSTOMERSERVICE_USERCENTER + '&client_id=S00hFPxc&redirect_uri=http://localhost:3000/redirect?page=home&mall3_token=';//智慧客服
export function windowOpenChatUI(inputList:any,pathname:string) {
@ -24,6 +23,7 @@
input.id = 'tempInput_CustomerService'
input.name= 'sceneUrl'
input.value= pathname
input.type="hidden"
tempForm.appendChild(input)
document.body.appendChild(tempForm);
if(tempForm){
@ -54,6 +54,7 @@
input.id = 'tempInput_CustomerService'
input.name= 'sceneUrl'
input.value= pathname
input.type="hidden"
tempForm.appendChild(input)
document.body.appendChild(tempForm);
}

View File

@ -4,13 +4,27 @@ export async function getSupplierList(params: any) {
/*
* http://gysxxk.cn1.utools.club/serviceEshopProviderMdm/findPageProvider
{  
    "pageNum": 1,
    "pageSize": 10
"pageNum": 1,
"pageSize": 10
}
* */
return request('/api/api/core-service-supplierbase/outer/v1.0/serviceEshopProviderMdm/findPageProvider',{
method:'post',
data:{
return request('/api/api/core-service-supplierbase/outer/v1.0/serviceEshopProviderMdm/findPageProvider', {
method: 'post',
data: {
...params
}
})
}
/*获取供应商联系人信息 后端 吉分20230331版本 */
export async function getSupplierUserByUserInfo(params: any) {
/*
*暂无url
* */
return request('/api/core-service-ebtp-userinfo/v1/userinfo/findUserCountListBySupplierCodePage', {
method: 'post',
data: {
...params
}
})
@ -22,9 +36,9 @@ export async function getSupplierUser(params: any) {
/*
*暂无url
* */
return request('/api/api/core-service-supplierbase/outer/v1.0/serviceEshopProviderEmpMdm/findUserCountListBySupplierCodePage',{
method:'post',
data:{
return request('/api/api/core-service-supplierbase/outer/v1.0/serviceEshopProviderEmpMdm/findUserCountListBySupplierCodePage', {
method: 'post',
data: {
...params
}
})