Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
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
Administrator
dsk-cr20g
Commits
e1798884
Commit
e1798884
authored
May 19, 2023
by
MyName
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://192.168.60.201/root/dsk-operate-sys
parents
7f1ebd51
b2741975
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
224 additions
and
42 deletions
+224
-42
EnterpriseController.java
...java/com/dsk/web/controller/dsk/EnterpriseController.java
+24
-0
EnterpriseBestStockPageBody.java
...common/core/domain/model/EnterpriseBestStockPageBody.java
+25
-0
EnterpriseBidNoticeDetailBody.java
...mmon/core/domain/model/EnterpriseBidNoticeDetailBody.java
+22
-0
EnterpriseBidNoticePageBody.java
...common/core/domain/model/EnterpriseBidNoticePageBody.java
+11
-0
EnterpriseBidNoticeProvinceBody.java
...on/core/domain/model/EnterpriseBidNoticeProvinceBody.java
+22
-0
EnterpriseBidNoticeTenderStageBody.java
...core/domain/model/EnterpriseBidNoticeTenderStageBody.java
+22
-0
sidebar.scss
dsk-operate-ui/src/assets/styles/sidebar.scss
+8
-0
SidebarItem.vue
dsk-operate-ui/src/layout/components/Sidebar/SidebarItem.vue
+41
-42
index.vue
dsk-operate-ui/src/views/detail/party-a/financial/index.vue
+23
-0
EnterpriseService.java
...ain/java/com/dsk/system/dskService/EnterpriseService.java
+26
-0
No files found.
dsk-admin/src/main/java/com/dsk/web/controller/dsk/EnterpriseController.java
View file @
e1798884
...
@@ -81,6 +81,24 @@ public class EnterpriseController {
...
@@ -81,6 +81,24 @@ public class EnterpriseController {
return
enterpriseService
.
bidNoticePage
(
vo
);
return
enterpriseService
.
bidNoticePage
(
vo
);
}
}
@ApiOperation
(
value
=
"招标公告省份(建设库)"
)
@PostMapping
(
value
=
"bidNoticeProvince"
)
public
R
bidNoticeProvince
(
@RequestBody
@Valid
EnterpriseBidNoticePageBody
vo
)
throws
Exception
{
return
enterpriseService
.
bidNoticeProvince
(
vo
);
}
@ApiOperation
(
value
=
"招标公告信息类型(建设库)"
)
@PostMapping
(
value
=
"bidNoticeTenderStage"
)
public
R
bidNoticeTenderStage
(
@RequestBody
@Valid
EnterpriseBidNoticePageBody
vo
)
throws
Exception
{
return
enterpriseService
.
bidNoticeTenderStage
(
vo
);
}
@ApiOperation
(
value
=
"招标公告详情(建设库)"
)
@PostMapping
(
value
=
"bidNoticeDeatil"
)
public
R
bidNoticeDeatil
(
@RequestBody
@Valid
EnterpriseBidNoticeDetailBody
vo
)
throws
Exception
{
return
enterpriseService
.
bidNoticeDeatil
(
vo
);
}
@ApiOperation
(
value
=
"企业动态列表(建设库)"
)
@ApiOperation
(
value
=
"企业动态列表(建设库)"
)
@PostMapping
(
value
=
"dynamicPage"
)
@PostMapping
(
value
=
"dynamicPage"
)
public
R
dynamicPage
(
@RequestBody
@Valid
EnterpriseDynamicPageBody
vo
)
throws
Exception
{
public
R
dynamicPage
(
@RequestBody
@Valid
EnterpriseDynamicPageBody
vo
)
throws
Exception
{
...
@@ -105,4 +123,10 @@ public class EnterpriseController {
...
@@ -105,4 +123,10 @@ public class EnterpriseController {
return
enterpriseService
.
keymembers
(
vo
);
return
enterpriseService
.
keymembers
(
vo
);
}
}
@ApiOperation
(
value
=
"工商股东信息(openApi)"
)
@PostMapping
(
value
=
"bestStockPage"
)
public
R
bestStockPage
(
@RequestBody
@Valid
EnterpriseKeymembersBody
vo
)
throws
Exception
{
return
enterpriseService
.
bestStockPage
(
vo
);
}
}
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseBestStockPageBody.java
0 → 100644
View file @
e1798884
package
com
.
dsk
.
common
.
core
.
domain
.
model
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.NoArgsConstructor
;
import
lombok.ToString
;
import
javax.validation.constraints.NotNull
;
@Data
@ToString
@NoArgsConstructor
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
EnterpriseBestStockPageBody
extends
BasePage
{
/**
* 企业id
*/
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
cid
;
//是否历史 0 否 1 是
private
Integer
isHistory
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseBidNoticeDetailBody.java
0 → 100644
View file @
e1798884
package
com
.
dsk
.
common
.
core
.
domain
.
model
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.NoArgsConstructor
;
import
lombok.ToString
;
import
javax.validation.constraints.NotNull
;
@Data
@ToString
@NoArgsConstructor
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
EnterpriseBidNoticeDetailBody
{
/**
* id
*/
@NotNull
(
message
=
"id不能为空"
)
private
Integer
id
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseBidNoticePageBody.java
View file @
e1798884
...
@@ -19,4 +19,15 @@ public class EnterpriseBidNoticePageBody extends BasePage
...
@@ -19,4 +19,15 @@ public class EnterpriseBidNoticePageBody extends BasePage
@NotNull
(
message
=
"企业id不能为空"
)
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
companyId
;
private
Integer
companyId
;
//信息类型
private
String
tenderStage
;
//项目名称
private
String
projectName
;
/**
* provinceId
*/
private
Integer
provinceId
;
}
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseBidNoticeProvinceBody.java
0 → 100644
View file @
e1798884
package
com
.
dsk
.
common
.
core
.
domain
.
model
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.NoArgsConstructor
;
import
lombok.ToString
;
import
javax.validation.constraints.NotNull
;
@Data
@ToString
@NoArgsConstructor
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
EnterpriseBidNoticeProvinceBody
{
/**
* 企业id
*/
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
companyId
;
}
dsk-common/src/main/java/com/dsk/common/core/domain/model/EnterpriseBidNoticeTenderStageBody.java
0 → 100644
View file @
e1798884
package
com
.
dsk
.
common
.
core
.
domain
.
model
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.NoArgsConstructor
;
import
lombok.ToString
;
import
javax.validation.constraints.NotNull
;
@Data
@ToString
@NoArgsConstructor
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
EnterpriseBidNoticeTenderStageBody
{
/**
* 企业id
*/
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
companyId
;
}
dsk-operate-ui/src/assets/styles/sidebar.scss
View file @
e1798884
...
@@ -359,6 +359,14 @@
...
@@ -359,6 +359,14 @@
}
}
.svg-icon
{
.svg-icon
{
margin-right
:
0
!
important
;
margin-right
:
0
!
important
;
width
:
1em
;
height
:
1em
;
font-size
:
16px
;
margin-bottom
:
-2px
;
vertical-align
:
-0
.15em
;
fill
:
currentColor
;
overflow
:
hidden
;
margin-left
:
0px
;
}
}
}
}
.side-one-popover
{
.side-one-popover
{
...
...
dsk-operate-ui/src/layout/components/Sidebar/SidebarItem.vue
View file @
e1798884
...
@@ -118,8 +118,7 @@ export default {
...
@@ -118,8 +118,7 @@ export default {
let
tempPath
=
''
let
tempPath
=
''
if
(
onlyOneChild
.
path
)
{
if
(
onlyOneChild
.
path
)
{
tempPath
=
this
.
resolvePath
(
onlyOneChild
.
path
)
tempPath
=
this
.
resolvePath
(
onlyOneChild
.
path
)
console
.
log
(
tempPath
);
console
.
log
(
this
.
activeMenu
);
if
(
this
.
activeMenu
===
tempPath
&&
onlyOneChild
.
meta
.
icon
!=
'#'
)
{
if
(
this
.
activeMenu
===
tempPath
&&
onlyOneChild
.
meta
.
icon
!=
'#'
)
{
icon
=
onlyOneChild
.
meta
.
icon
+
's'
icon
=
onlyOneChild
.
meta
.
icon
+
's'
}
}
...
@@ -138,7 +137,7 @@ export default {
...
@@ -138,7 +137,7 @@ export default {
icon
=
item
.
meta
.
icon
+
's'
icon
=
item
.
meta
.
icon
+
's'
}
}
}
}
console
.
log
(
icon
);
return
icon
return
icon
}
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/financial/index.vue
0 → 100644
View file @
e1798884
<
template
>
<div
class=
"app-container"
>
财务简析
</div>
</
template
>
<
script
>
export
default
{
name
:
'Financial'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
dsk-system/src/main/java/com/dsk/system/dskService/EnterpriseService.java
View file @
e1798884
...
@@ -77,6 +77,27 @@ public class EnterpriseService {
...
@@ -77,6 +77,27 @@ public class EnterpriseService {
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
}
public
R
bidNoticeProvince
(
EnterpriseBidNoticePageBody
body
)
throws
Exception
{
Map
<
String
,
String
>
headerMap
=
new
HashMap
<>();
headerMap
.
put
(
"Api-Version"
,
"1.0"
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBodyWithHeader
(
"/api/jsk/enterpriseBusiness/selectBidProvinceByCompanyId"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
),
headerMap
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
R
bidNoticeTenderStage
(
EnterpriseBidNoticePageBody
body
)
throws
Exception
{
Map
<
String
,
String
>
headerMap
=
new
HashMap
<>();
headerMap
.
put
(
"Api-Version"
,
"1.0"
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBodyWithHeader
(
"/api/jsk/enterpriseBusiness/selectTenderStageByCompanyId"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
),
headerMap
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
R
bidNoticeDeatil
(
EnterpriseBidNoticeDetailBody
body
)
throws
Exception
{
Map
<
String
,
String
>
headerMap
=
new
HashMap
<>();
headerMap
.
put
(
"Api-Version"
,
"1.0"
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBodyWithHeader
(
"/api/jsk/enterpriseBusiness/bid/detail"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
),
headerMap
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
R
dynamicPage
(
EnterpriseDynamicPageBody
body
)
throws
Exception
{
public
R
dynamicPage
(
EnterpriseDynamicPageBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/api/jsk/enterprise/dynamic"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/api/jsk/enterprise/dynamic"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
...
@@ -96,4 +117,9 @@ public class EnterpriseService {
...
@@ -96,4 +117,9 @@ public class EnterpriseService {
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/keymembers"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/keymembers"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
}
public
R
bestStockPage
(
EnterpriseKeymembersBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterprise/bestStockPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
}
}
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