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
2ac02146
Commit
2ac02146
authored
Jun 27, 2023
by
zhangyi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
bc5257e2
bd22eb47
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
7 deletions
+14
-7
BusinessInfo.java
.../java/com/dsk/common/core/domain/entity/BusinessInfo.java
+1
-1
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+3
-3
resetPwd.vue
dsk-operate-ui/src/views/system/user/profile/resetPwd.vue
+4
-2
userAvatar.vue
dsk-operate-ui/src/views/system/user/profile/userAvatar.vue
+1
-1
BusinessBrowseVo.java
.../main/java/com/dsk/system/domain/vo/BusinessBrowseVo.java
+5
-0
No files found.
dsk-common/src/main/java/com/dsk/common/core/domain/entity/BusinessInfo.java
View file @
2ac02146
...
@@ -114,7 +114,7 @@ public class BusinessInfo extends BaseEntity
...
@@ -114,7 +114,7 @@ public class BusinessInfo extends BaseEntity
private
String
customerId
;
private
String
customerId
;
/** 项目状态 */
/** 项目状态 */
@Excel
(
name
=
"项目状态"
)
@Excel
(
name
=
"项目状态
(0.储备中1.跟进中2.已合作)
"
)
private
Integer
status
;
private
Integer
status
;
/** 评标办法 */
/** 评标办法 */
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
2ac02146
...
@@ -144,12 +144,12 @@
...
@@ -144,12 +144,12 @@
</div>
</div>
<div
class=
" table-item-jf"
v-if=
"tableData.length>0"
>
<div
class=
" table-item-jf"
v-if=
"tableData.length>0"
>
<el-table
:data=
"tableData"
:header-cell-style=
"
{ background:'#F0F3FA'}" element-loading-text="Loading" border highlight-current-row>
<el-table
:data=
"tableData"
:header-cell-style=
"
{ background:'#F0F3FA'}" element-loading-text="Loading" border highlight-current-row>
<el-table-column
type=
"index"
label=
"序号"
width=
"60"
>
<el-table-column
type=
"index"
label=
"序号"
fixed
width=
"60"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<span>
{{
(
pageNum
-
1
)
*
20
+
scope
.
$index
+
1
}}
</span>
<span>
{{
(
pageNum
-
1
)
*
20
+
scope
.
$index
+
1
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"公司名称"
width=
"430"
>
<el-table-column
label=
"公司名称"
fixed
width=
"430"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
class=
"renling"
>
<div
class=
"renling"
>
<router-link
:to=
"`/enterprise/$
{encodeStr(scope.row.companyId)}`" tag="a" class="list-titel-a" v-html="scope.row.companyName" >
</router-link>
<router-link
:to=
"`/enterprise/$
{encodeStr(scope.row.companyId)}`" tag="a" class="list-titel-a" v-html="scope.row.companyName" >
</router-link>
...
@@ -825,7 +825,7 @@ export default {
...
@@ -825,7 +825,7 @@ export default {
delete
params
.
provinceIds
delete
params
.
provinceIds
}
}
if
(
data
.
cityIds
.
length
>
0
){
if
(
data
.
cityIds
.
length
>
0
){
params
[
'cityIds'
]
=
data
.
province
Ids
;
params
[
'cityIds'
]
=
data
.
city
Ids
;
}
else
{
}
else
{
delete
params
.
cityIds
delete
params
.
cityIds
}
}
...
...
dsk-operate-ui/src/views/system/user/profile/resetPwd.vue
View file @
2ac02146
...
@@ -57,12 +57,14 @@ export default {
...
@@ -57,12 +57,14 @@ export default {
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
valid
)
{
updateUserPwd
(
this
.
user
.
oldPassword
,
this
.
user
.
newPassword
).
then
(
response
=>
{
updateUserPwd
(
this
.
user
.
oldPassword
,
this
.
user
.
newPassword
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
)
;
this
.
$modal
.
msgSuccess
(
"修改成功"
)
store
.
commit
(
'SET_TOKEN'
,
''
)
store
.
commit
(
'SET_TOKEN'
,
''
)
store
.
commit
(
'SET_ROLES'
,
[])
store
.
commit
(
'SET_ROLES'
,
[])
store
.
commit
(
'SET_PERMISSIONS'
,
[])
store
.
commit
(
'SET_PERMISSIONS'
,
[])
removeToken
()
removeToken
()
location
.
href
=
'/index'
setTimeout
(
function
()
{
location
.
href
=
'/index'
},
2000
)
});
});
}
}
});
});
...
...
dsk-operate-ui/src/views/system/user/profile/userAvatar.vue
View file @
2ac02146
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div>
<div>
<div
class=
"user-info-head"
@
click=
"editCropper()"
>
<div
class=
"user-info-head"
@
click=
"editCropper()"
>
<img
v-bind:src=
"options.img"
title=
"点击上传头像"
class=
"img-circle img-lg"
v-if=
"options.img"
/>
<img
v-bind:src=
"options.img"
title=
"点击上传头像"
class=
"img-circle img-lg"
v-if=
"options.img"
/>
<span
v-else
class=
"userInfo-avatar"
v-else
>
{{
options
.
name
&&
options
.
name
.
slice
(
0
,
1
).
toUpperCase
()
}}
</span>
<span
class=
"userInfo-avatar"
v-else
>
{{
options
.
name
&&
options
.
name
.
slice
(
0
,
1
).
toUpperCase
()
}}
</span>
</div>
</div>
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
opened=
"modalOpened"
@
close=
"closeDialog"
>
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
opened=
"modalOpened"
@
close=
"closeDialog"
>
<el-row>
<el-row>
...
...
dsk-system/src/main/java/com/dsk/system/domain/vo/BusinessBrowseVo.java
View file @
2ac02146
...
@@ -32,6 +32,11 @@ public class BusinessBrowseVo {
...
@@ -32,6 +32,11 @@ public class BusinessBrowseVo {
*/
*/
private
String
projectCategory
;
private
String
projectCategory
;
/**
* 项目状态(0.储备中1.跟进中2.已合作)
*/
private
Integer
status
;
/**
/**
* 投资估算
* 投资估算
*/
*/
...
...
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