Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
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
fulixin
dsk-operate-sys-cscec
Commits
f8f0b5ad
Commit
f8f0b5ad
authored
Nov 21, 2023
by
liuChang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'V20230915' of 192.168.60.201:root/dsk-operate-sys into V20230915
parents
97a38414
4fa07649
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
55 additions
and
83 deletions
+55
-83
user.js
dsk-operate-ui/src/api/system/user.js
+25
-22
index.js
dsk-operate-ui/src/router/index.js
+1
-1
members.vue
...te-ui/src/views/detail/groupAccount/component/members.vue
+4
-5
performance.vue
...i/src/views/detail/groupAccount/component/performance.vue
+3
-4
zbxmmx.vue
...ate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
+4
-31
zhaobiao.vue
...e-ui/src/views/detail/groupAccount/component/zhaobiao.vue
+5
-4
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+2
-3
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+2
-3
index.vue
dsk-operate-ui/src/views/index.vue
+2
-2
index.vue
dsk-operate-ui/src/views/macro/urban/index.vue
+2
-3
index.vue
...rate-ui/src/views/radar/components/MajorProject/index.vue
+2
-3
index.vue
dsk-operate-ui/src/views/system/user/profile/index.vue
+2
-1
SysDeptServiceImpl.java
.../java/com/dsk/system/service/impl/SysDeptServiceImpl.java
+1
-1
No files found.
dsk-operate-ui/src/api/system/user.js
View file @
f8f0b5ad
import
request
from
'@/utils/request'
import
request
from
'@/utils/request'
;
import
{
parseStrEmpty
}
from
"@/utils/ruoyi"
;
// 查询用户列表
...
...
@@ -7,7 +7,7 @@ export function listUser(query) {
url
:
'/system/user/list'
,
method
:
'get'
,
params
:
query
})
})
;
}
// 查询用户详细
...
...
@@ -15,7 +15,7 @@ export function getUser(userId) {
return
request
({
url
:
'/system/user/'
+
parseStrEmpty
(
userId
),
method
:
'get'
})
})
;
}
// 新增用户
...
...
@@ -24,7 +24,7 @@ export function addUser(data) {
url
:
'/system/user'
,
method
:
'post'
,
data
:
data
})
})
;
}
// 修改用户
...
...
@@ -33,7 +33,7 @@ export function updateUser(data) {
url
:
'/system/user'
,
method
:
'put'
,
data
:
data
})
})
;
}
// 删除用户
...
...
@@ -41,7 +41,7 @@ export function delUser(userId) {
return
request
({
url
:
'/system/user/'
+
userId
,
method
:
'delete'
})
})
;
}
// 用户密码重置
...
...
@@ -49,12 +49,12 @@ export function resetUserPwd(userId, password) {
const
data
=
{
userId
,
password
}
}
;
return
request
({
url
:
'/system/user/resetPwd'
,
method
:
'put'
,
data
:
data
})
})
;
}
// 用户状态修改
...
...
@@ -62,12 +62,12 @@ export function changeUserStatus(userId, status) {
const
data
=
{
userId
,
status
}
}
;
return
request
({
url
:
'/system/user/changeStatus'
,
method
:
'put'
,
data
:
data
})
})
;
}
// 查询用户个人信息
...
...
@@ -75,7 +75,7 @@ export function getUserProfile() {
return
request
({
url
:
'/system/user/profile'
,
method
:
'get'
})
})
;
}
// 修改用户个人信息
...
...
@@ -84,7 +84,7 @@ export function updateUserProfile(data) {
url
:
'/system/user/profile'
,
method
:
'put'
,
data
:
data
})
})
;
}
// 用户密码重置
...
...
@@ -92,12 +92,12 @@ export function updateUserPwd(oldPassword, newPassword) {
const
data
=
{
oldPassword
,
newPassword
}
}
;
return
request
({
url
:
'/system/user/profile/updatePwd'
,
method
:
'put'
,
params
:
data
})
})
;
}
// 用户头像上传
...
...
@@ -106,7 +106,7 @@ export function uploadAvatar(data) {
url
:
'/system/user/profile/avatar'
,
method
:
'post'
,
data
:
data
})
})
;
}
// 查询授权角色
...
...
@@ -114,7 +114,7 @@ export function getAuthRole(userId) {
return
request
({
url
:
'/system/user/authRole/'
+
userId
,
method
:
'get'
})
})
;
}
// 保存授权角色
...
...
@@ -123,15 +123,18 @@ export function updateAuthRole(data) {
url
:
'/system/user/authRole'
,
method
:
'put'
,
params
:
data
})
})
;
}
// 查询部门下拉树结构
export
function
deptTreeSelect
()
{
return
request
({
url
:
'/system/user/deptTree'
,
method
:
'get'
})
url
:
`/system/user/deptTree`
,
method
:
'get'
,
params
:
{
status
:
0
}
});
}
// 用户文件记录列表
...
...
@@ -139,6 +142,6 @@ export function fileList(data) {
return
request
({
url
:
'/user/file/record/list'
,
method
:
'get'
,
params
:
data
})
params
:
data
})
;
}
dsk-operate-ui/src/router/index.js
View file @
f8f0b5ad
...
...
@@ -127,7 +127,7 @@ export const constantRoutes = [
path
:
'profile'
,
component
:
()
=>
import
(
'@/views/system/user/profile/index'
),
name
:
'Profile'
,
meta
:
{
title
:
'个人中心'
,
icon
:
'user'
}
meta
:
{
title
:
'个人中心'
,
icon
:
'user'
,
noCache
:
true
}
}
]
},
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/members.vue
View file @
f8f0b5ad
...
...
@@ -82,7 +82,7 @@
import
ExportDialog
from
"../../../component/export-dialog"
export
default
{
name
:
'members'
,
props
:
[
'customerId'
],
props
:
[
'customerId'
,
'combineName'
],
mixins
:
[
mixin
],
components
:{
ExportDialog
},
data
(){
...
...
@@ -484,13 +484,12 @@
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
this
.
dataEXCEL
.
exportExeclName
=
this
.
combineName
+
'-'
+
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
memberListExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/performance.vue
View file @
f8f0b5ad
...
...
@@ -318,13 +318,12 @@
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
this
.
dataEXCEL
.
exportExeclName
=
this
.
combineName
+
'-'
+
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
exportWinBid
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
View file @
f8f0b5ad
...
...
@@ -60,7 +60,7 @@
import
ExportDialog
from
"../../../component/export-dialog"
export
default
{
name
:
'qualifications'
,
props
:
[
'customerId'
],
props
:
[
'customerId'
,
'combineName'
],
mixins
:
[
mixin
],
components
:{
CustomTimeSelect
,
CustomMoneySelect
,
ExportDialog
},
data
(){
...
...
@@ -113,32 +113,6 @@
timeList
:
[
'近三天'
,
'近七天'
,
'近半月'
,
'自定义'
],
moneyList
:
[
'5000万以下'
,
'5000万-1亿'
,
'1亿-5亿'
,
'5亿-10亿'
,
'10亿以上'
,
'自定义'
],
dataEXCEL
:{},
exportTableData
:[
{
"address"
:
"四川省-成都市"
,
"stockPercent"
:
"18.43%"
,
"agency"
:
'鞍钢股份有限公司'
,
"issueTime"
:
"2023-09-22"
,
"subjectMatter"
:
"其他"
,
"memberLevel"
:
"二级企业"
,
"tenderee"
:
"鞍钢冷轧钢板(莆田)有限公司综合部"
,
"projectType"
:
"其他"
,
"bidAmount"
:
"202万元"
,
"projectName"
:
"2023年中铁一局集团第二工程有限公司江浙区域项目自购物资集中招标采购文件(一)(钢材)招标公告"
,
},
{
"address"
:
"四川省-成都市"
,
"stockPercent"
:
"18.43%"
,
"agency"
:
'鞍钢股份有限公司'
,
"issueTime"
:
"2023-09-22"
,
"subjectMatter"
:
"其他"
,
"memberLevel"
:
"二级企业"
,
"tenderee"
:
"鞍钢股份有限公司"
,
"projectType"
:
"其他"
,
"bidAmount"
:
"202万元"
,
"projectName"
:
"太极集团四川太极制药有限公司转让持有的成都市4套住宅-高新区玉虹巷2号1栋6单元7层13号"
,
},
],
value
:
''
,
exportData
:{
title
:
'集团招标'
,
...
...
@@ -320,13 +294,12 @@
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
this
.
dataEXCEL
.
exportExeclName
=
this
.
combineName
+
'-'
+
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
exportBid
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/zhaobiao.vue
View file @
f8f0b5ad
...
...
@@ -8,8 +8,8 @@
</el-tabs>
</div>
</div>
<Zbxmfx
v-if=
"activeName === 'first'"
:customer-id=
"id"
></Zbxmfx>
<Zbxmmx
v-if=
"activeName === 'second'"
:customer-id=
"id"
></Zbxmmx>
<Zbxmfx
v-if=
"activeName === 'first'"
:customer-id=
"id"
:combineName=
"name"
></Zbxmfx>
<Zbxmmx
v-if=
"activeName === 'second'"
:customer-id=
"id"
:combineName=
"name"
></Zbxmmx>
</div>
</
template
>
...
...
@@ -18,12 +18,13 @@
import
Zbxmmx
from
'./zbxmmx'
export
default
{
name
:
'qualifications'
,
props
:
[
'customerId'
],
props
:
[
'customerId'
,
'combineName'
],
components
:{
Zbxmfx
,
Zbxmmx
},
data
(){
return
{
activeName
:
'first'
,
id
:
this
.
customerId
id
:
this
.
customerId
,
name
:
this
.
combineName
}
},
created
()
{
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
f8f0b5ad
...
...
@@ -1006,11 +1006,10 @@ export default {
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
api
.
uipSerachExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
f8f0b5ad
...
...
@@ -3046,11 +3046,10 @@ export default {
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
if
(
this
.
exportData
.
title
===
'企业资质'
){
api
.
aptitudeExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
...
...
dsk-operate-ui/src/views/index.vue
View file @
f8f0b5ad
...
...
@@ -114,7 +114,7 @@
</el-select>
</el-form-item>
<el-form-item
prop=
"type"
>
<el-select
v-model=
"queryParams1.type"
multiple
collapse-tags
@
change=
"iptAdaptive(inputID6,
''
,'changeSelect2')"
:class=
"[`select-adaptive-${inputID6}`,queryParams1.type.length > 1 ? 'selectTag' : '']"
clearable
placeholder=
"项目类型"
>
<el-select
v-model=
"queryParams1.type"
multiple
collapse-tags
@
change=
"iptAdaptive(inputID6,
true
,'changeSelect2')"
:class=
"[`select-adaptive-${inputID6}`,queryParams1.type.length > 1 ? 'selectTag' : '']"
clearable
placeholder=
"项目类型"
>
<el-option
v-for=
"(item,index) in projectType"
:key=
"index"
:label=
"item"
:value=
"item"
></el-option>
</el-select>
</el-form-item>
...
...
@@ -253,7 +253,7 @@
</el-select>
</el-form-item>
<el-form-item
prop=
"projects"
>
<el-select
v-model=
"queryParams2.projects"
@
change=
"iptAdaptive(inputID10,
''
,'changeSelect3')"
multiple
collapse-tags
clearable
placeholder=
"项目类型"
:class=
"[`select-adaptive-${inputID10}`,queryParams2.projects.length > 1 ? 'selectTag' : '']"
>
<el-select
v-model=
"queryParams2.projects"
@
change=
"iptAdaptive(inputID10,
true
,'changeSelect3')"
multiple
collapse-tags
clearable
placeholder=
"项目类型"
:class=
"[`select-adaptive-${inputID10}`,queryParams2.projects.length > 1 ? 'selectTag' : '']"
>
<el-option
v-for=
"(item,index) in projectType"
:key=
"index"
:label=
"item"
:value=
"item"
></el-option>
</el-select>
</el-form-item>
...
...
dsk-operate-ui/src/views/macro/urban/index.vue
View file @
f8f0b5ad
...
...
@@ -853,11 +853,10 @@ export default {
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
urbanInvestmentExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/radar/components/MajorProject/index.vue
View file @
f8f0b5ad
...
...
@@ -691,11 +691,10 @@ export default {
}
this
.
dataEXCEL
.
exportExeclName
=
this
.
exportData
.
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
pageSize
=
2000
;
this
.
dataEXCEL
.
exportCount
=
2000
;
}
delete
this
.
dataEXCEL
.
pageNum
api
.
radarExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/system/user/profile/index.vue
View file @
f8f0b5ad
...
...
@@ -76,7 +76,8 @@
<el-table-column
label=
"导出时间"
align=
"left"
prop=
"createTime"
></el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
align=
"left"
>
<div
class=
"wordprimary"
style=
"text-align: left"
@
click=
"getFile(scope.row.url)"
>
下载表格
</div>
<div
v-if=
"scope.row.status === 0"
class=
"wordprimary"
style=
"text-align: left"
@
click=
"getFile(scope.row.url)"
>
下载表格
</div>
<div
v-if=
"scope.row.status === 2"
class=
"wordprimary"
style=
"text-align: left"
>
生成中...
</div>
</
template
>
</el-table-column>
</el-table>
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/SysDeptServiceImpl.java
View file @
f8f0b5ad
...
...
@@ -59,7 +59,7 @@ public class SysDeptServiceImpl implements ISysDeptService, DeptService {
.
eq
(
ObjectUtil
.
isNotNull
(
dept
.
getDeptId
()),
SysDept:
:
getDeptId
,
dept
.
getDeptId
())
.
eq
(
ObjectUtil
.
isNotNull
(
dept
.
getParentId
()),
SysDept:
:
getParentId
,
dept
.
getParentId
())
.
like
(
StringUtils
.
isNotBlank
(
dept
.
getDeptName
()),
SysDept:
:
getDeptName
,
dept
.
getDeptName
())
.
eq
(
S
ysDept:
:
getStatus
,
0
)
.
eq
(
S
tringUtils
.
isNotBlank
(
dept
.
getStatus
()),
SysDept:
:
getStatus
,
dept
.
getStatus
()
)
.
orderByAsc
(
SysDept:
:
getParentId
)
.
orderByAsc
(
SysDept:
:
getOrderNum
);
return
baseMapper
.
selectDeptList
(
lqw
);
...
...
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