This commit is contained in:
shizhong
2024-03-11 23:49:08 +08:00
parent 06ff8d095b
commit f1c2a6ef37
4 changed files with 2 additions and 13 deletions

View File

@ -112,13 +112,3 @@ export const getAuditContractCount = async () => {
export const getRemindContractCount = async () => {
return await request.get({ url: '/crm/contract/remind-count' })
}
// 获得待审核合同数量
export const getAuditContractCount = async () => {
return await request.get({ url: '/crm/contract/audit-count' })
}
// 获得即将到期(提醒)的合同数量
export const getRemindContractCount = async () => {
return await request.get({ url: '/crm/contract/remind-count' })
}

View File

@ -215,7 +215,6 @@ const getTenantId = async () => {
if (loginData.tenantEnable === 'true') {
const res = await LoginApi.getTenantIdByNameApi(loginData.loginForm.tenantName)
authUtil.setTenantId(res)
authUtil.setTenantName(loginData.loginForm.tenantName)
}
}
// 记住我

View File

@ -206,7 +206,7 @@ const handleClose = async (id: number) => {
// 关闭的二次确认
await message.confirm('确认关闭该砍价活动吗?')
// 发起关闭
await BargainActivityApi.closeSeckillActivity(id)
await BargainActivityApi.closeBargainActivity(id)
message.success('关闭成功')
// 刷新列表
await getList()