Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wenHuaBu_adminServer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
node_server
wenHuaBu_adminServer
Commits
ebdf38c9
Commit
ebdf38c9
authored
Jul 31, 2025
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
92ec9557
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
homePage.ts
src/biz/member/homePage.ts
+1
-0
errorEnum.ts
src/config/errorEnum.ts
+2
-1
No files found.
src/biz/member/homePage.ts
View file @
ebdf38c9
...
@@ -764,6 +764,7 @@ export async function applyReason({applyStr, userId}) {
...
@@ -764,6 +764,7 @@ export async function applyReason({applyStr, userId}) {
export
async
function
applyReasonMember
({
applyName
,
applySex
,
applyDuties
,
applyPhone
,
applyStr
,
userId
})
{
export
async
function
applyReasonMember
({
applyName
,
applySex
,
applyDuties
,
applyPhone
,
applyStr
,
userId
})
{
let
oldInfo
=
await
findOnce
(
TABLEENUM
.
用户表
,
{
userId
});
let
oldInfo
=
await
findOnce
(
TABLEENUM
.
用户表
,
{
userId
});
if
(
!
oldInfo
||
!
oldInfo
.
userId
)
throw
new
BizError
(
ERRORENUM
.
目标数据不存在
);
if
(
!
oldInfo
||
!
oldInfo
.
userId
)
throw
new
BizError
(
ERRORENUM
.
目标数据不存在
);
if
(
oldInfo
.
memberState
==
MEMBERSTATE
.
异常
)
throw
new
BizError
(
ERRORENUM
.
请先缴费
);
const
Now
=
new
Date
().
valueOf
();
const
Now
=
new
Date
().
valueOf
();
let
applyId
=
generateSystemId
(
TABLEENUM
.
理事变更审批历史表
,
userId
);
let
applyId
=
generateSystemId
(
TABLEENUM
.
理事变更审批历史表
,
userId
);
...
...
src/config/errorEnum.ts
View file @
ebdf38c9
...
@@ -84,7 +84,8 @@ export enum ERRORENUM {
...
@@ -84,7 +84,8 @@ export enum ERRORENUM {
该用户邮箱与输入邮箱不匹配
,
该用户邮箱与输入邮箱不匹配
,
与预览邮箱不一致
,
与预览邮箱不一致
,
不存在该邮箱的账号
,
不存在该邮箱的账号
,
该邮箱已被注册
该邮箱已被注册
,
请先缴费
}
}
export
enum
ERRORCODEENUM
{
export
enum
ERRORCODEENUM
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment