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
49e4b283
Commit
49e4b283
authored
Mar 19, 2024
by
lixinming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://123.207.147.179:8888/node_server/wenHuaBu_adminServer
parents
8c0ae52f
47fad734
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
homePage.ts
src/biz/member/homePage.ts
+10
-0
enum.ts
src/config/enum.ts
+9
-0
No files found.
src/biz/member/homePage.ts
View file @
49e4b283
...
...
@@ -262,8 +262,18 @@ export async function downInvoice({id}) {
}
/**
* 上传转账截图
* @param param0
*/
export
async
function
upTransferImg
({
id
,
weChartPR
,
offlinePaymentUrl
})
{
let
oldInfo
=
await
findOnce
(
TABLEENUM
.
订单表
,
{
id
});
if
(
!
oldInfo
||
!
oldInfo
.
id
)
throw
new
BizError
(
ERRORENUM
.
目标数据不存在
);
await
updateOneData
(
TABLEENUM
.
订单表
,
{
id
},
{
weChartPR
,
offlinePaymentUrl
});
return
successResult
();
}
...
...
src/config/enum.ts
View file @
49e4b283
...
...
@@ -421,6 +421,15 @@ export enum INVOICESTATUSCLIENT{
}
/**
* 审核状态 前端用
*/
export
enum
AUDITINGCLIENT
{
审核通过
=
2
,
后台审批中
=
3
,
审核失败
=
4
}
/*
* 短信类型
...
...
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