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
8a694af1
Commit
8a694af1
authored
Jul 15, 2025
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
ed155042
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
7 deletions
+17
-7
apply.ts
src/biz/member/apply.ts
+0
-0
enum.ts
src/config/enum.ts
+8
-1
model.ts
src/data/models/model.ts
+4
-0
main.ts
src/main.ts
+0
-2
router.ts
src/routers/apply/router.ts
+1
-0
router.ts
src/routers/member/router.ts
+4
-4
No files found.
src/biz/member/apply.ts
View file @
8a694af1
This diff is collapsed.
Click to expand it.
src/config/enum.ts
View file @
8a694af1
...
...
@@ -916,4 +916,10 @@ export enum ISRECEIVEMONEY {
/**
* 职务生效类型
*/
export
enum
ZHIWUSHENGXIAOTYPE
{
上半年
=
1
,
下半年
=
2
}
\ No newline at end of file
src/data/models/model.ts
View file @
8a694af1
...
...
@@ -458,6 +458,9 @@ const ModelArray = [
applyReviewTime
:
'Number'
,
//变更理事审核时间
rejectRemarks
:
'String'
,
//变更理事驳回理由
applyId
:{
type
:
'String'
,
index
:
true
},
takeeffectType
:
'Number'
,
//生效类型 上半年/下半年 ZHIWUSHENGXIAOTYPE
infoChangeId
:{
type
:
"String"
,
index
:
true
},
//资料更新关联id
infoChangeMs
:{
type
:
"Number"
},
//资料更新申请时间
infoChangeOptionType
:{
type
:
"Number"
},
//INFOCHANGEAPPLYTYPE
...
...
@@ -662,6 +665,7 @@ const ModelArray = [
applyPhone
:
'String'
,
//变更理事负责人电话
/**-------------------end */
applyStr
:
'String'
,
//变更理事申请理由
takeeffectType
:
'Number'
,
//生效类型 上半年/下半年 ZHIWUSHENGXIAOTYPE
}
},
{
...
...
src/main.ts
View file @
8a694af1
...
...
@@ -35,8 +35,6 @@ async function lanuch() {
// await getData();
// await outPutMember();
// await test();
console
.
log
(
getEdition
(
2018
,
1
));
}
lanuch
();
...
...
src/routers/apply/router.ts
View file @
8a694af1
...
...
@@ -31,6 +31,7 @@ export const Config = {
subUrl
:
'/applydb/applyadopt'
,
param
:[
{
key
:
"id"
,
type
:
"String"
,
desc
:
"用户id"
},
{
key
:
"takeeffectType"
,
type
:
"Number"
,
desc
:
"生效类型"
},
],
bindBiz
:
applyBiz
.
applyAdopt
},
...
...
src/routers/member/router.ts
View file @
8a694af1
...
...
@@ -239,8 +239,8 @@ export const Config = {
legalPersonPhone
:{
type
:
'String'
,
desc
:
'法人联系电话'
,
notMustHave
:
true
},
legalPersonMail
:{
type
:
'String'
,
desc
:
'法人邮箱'
,
notMustHave
:
true
},
// unitMail:{type:'String', desc:'单位电子邮箱', notMustHave:false}, 2024.4.22日的需求 去掉
//
contactPerson:{type:'String', desc:'日常联系人', notMustHave:true},
//
contactPersonDuties:{type:'String', desc:'日常联系人职务', notMustHave:true},
contactPerson
:{
type
:
'String'
,
desc
:
'日常联系人'
,
notMustHave
:
true
},
contactPersonDuties
:{
type
:
'String'
,
desc
:
'日常联系人职务'
,
notMustHave
:
true
},
phone
:{
type
:
'String'
,
desc
:
'日常联系人手机'
,
notMustHave
:
true
},
mail
:{
type
:
'String'
,
desc
:
'日常联系人邮箱'
,
notMustHave
:
true
},
uusinessLicenseUrl
:{
type
:
'String'
,
desc
:
'营业执照复印件'
,
notMustHave
:
true
},
...
...
@@ -1318,8 +1318,8 @@ export const Config = {
legalPersonPhone
:{
type
:
'String'
,
desc
:
'法人联系电话'
,
notMustHave
:
false
},
legalPersonMail
:{
type
:
'String'
,
desc
:
'法人邮箱'
,
notMustHave
:
false
},
// unitMail:{type:'String', desc:'单位电子邮箱', notMustHave:false}, 2024.4.22日的需求 去掉
//
contactPerson:{type:'String', desc:'日常联系人', notMustHave:false},
//
contactPersonDuties:{type:'String', desc:'日常联系人职务', notMustHave:false},
contactPerson
:{
type
:
'String'
,
desc
:
'日常联系人'
,
notMustHave
:
false
},
contactPersonDuties
:{
type
:
'String'
,
desc
:
'日常联系人职务'
,
notMustHave
:
false
},
phone
:{
type
:
'String'
,
desc
:
'日常联系人手机'
,
notMustHave
:
false
},
mail
:{
type
:
'String'
,
desc
:
'日常联系人邮箱'
,
notMustHave
:
false
},
uusinessLicenseUrl
:{
type
:
'String'
,
desc
:
'营业执照复印件'
,
notMustHave
:
false
},
...
...
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