Commit 779b9d09 by lixinming

no message

parent 488d2d17
...@@ -96,8 +96,8 @@ export const EnterpriseFinancingUpdateConfig = { ...@@ -96,8 +96,8 @@ export const EnterpriseFinancingUpdateConfig = {
financingAmount:{key:"Number"},//融资金额(万元) financingAmount:{key:"Number"},//融资金额(万元)
financingRounds:{key:"Number"},//融资轮次【枚举】 financingRounds:{key:"Number"},//融资轮次【枚举】
fuHuaQiInvestment:{key:"Number"},//孵化器是否参与投资【枚举】 fuHuaQiInvestment:{key:"Number"},//孵化器是否参与投资【枚举】
fuHuaQiInvestmentStyle:{key:"String"},//孵化器投资方式 fuHuaQiInvestmentStyle:{key:"String", notMustHave:true},//孵化器投资方式
fuHuaQiInvestmentAmount:{key:"Number"},//孵化器投资金额 fuHuaQiInvestmentAmount:{key:"Number", notMustHave:true},//孵化器投资金额
investmentDate:{key:"Number"},//获得投资时间 investmentDate:{key:"Number"},//获得投资时间
investmentInstitutionsName:{key:"String"},//投资机构名称 investmentInstitutionsName:{key:"String"},//投资机构名称
valuation:{key:"String"},//估值 valuation:{key:"String"},//估值
......
...@@ -133,3 +133,14 @@ export enum FINANCINGROUNDS { ...@@ -133,3 +133,14 @@ export enum FINANCINGROUNDS {
C, C,
C轮以上, C轮以上,
} }
export enum STATE {
= 0,
= 1
}
export enum OUTCOME {
未解决 = 0,
已解决
}
\ No newline at end of file
...@@ -25,7 +25,8 @@ export enum ERRORENUM { ...@@ -25,7 +25,8 @@ export enum ERRORENUM {
账号或密码错误, 账号或密码错误,
不可重复添加同一年度数据, 不可重复添加同一年度数据,
数据不存在, 数据不存在,
不可重复提交 不可重复提交,
存在重复的年份数据
} }
export enum ERRORCODEENUM { export enum ERRORCODEENUM {
......
...@@ -456,8 +456,8 @@ async function patentList(req, res) { ...@@ -456,8 +456,8 @@ async function patentList(req, res) {
*/ */
async function patentUpdate(req, res) { async function patentUpdate(req, res) {
const UserInfo = req.userInfo; const UserInfo = req.userInfo;
let {param, tId } = req.body let {param, pId } = req.body
let result = await enterpriseInfoBiz.updateEnterprisePatentInfo(UserInfo.eId, tId, param); let result = await enterpriseInfoBiz.updateEnterprisePatentInfo(UserInfo.eId, pId, param);
res.success(result); res.success(result);
} }
...@@ -763,8 +763,8 @@ async function homePageTask(req, res) { ...@@ -763,8 +763,8 @@ async function homePageTask(req, res) {
async function homePageYear(req, res) { async function homePageYear(req, res) {
let result = { let result = {
dataList:[ dataList:[
{year:2023},
{year:2024}, {year:2024},
{year:2025},
] ]
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment