Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xxx_phase2_web
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
夏敏伟
xxx_phase2_web
Commits
a1cab035
Commit
a1cab035
authored
Nov 08, 2023
by
以墨为白
🎧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
成员
parent
2424c045
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
10 deletions
+27
-10
src/view/ddkz/components/chatRoomInfo.vue
src/view/ddkz/components/chatRoomInfo.vue
+7
-6
src/view/ddkz/components/chatRoomMemberDialog.vue
src/view/ddkz/components/chatRoomMemberDialog.vue
+20
-4
No files found.
src/view/ddkz/components/chatRoomInfo.vue
View file @
a1cab035
...
...
@@ -44,7 +44,7 @@
<span
v-text=
"item1.time"
></span>
 
</div>
<div
class=
"everyDayNewCardInfo"
>
来自于组:
<span
class=
"newsSource"
v-text=
"item1.teamInfo.teamName"
></span>
,
来自于组:
<span
class=
"newsSource"
v-text=
"item1.teamInfo.teamName"
></span>
;
成员:
<span
class=
"newsSource"
v-text=
"item1.from"
></span>
</div>
<div
class=
"everyDayNewCardText"
v-text=
"item1.content"
></div>
...
...
@@ -93,7 +93,7 @@
<NoticeDialog
ref=
"myNotice"
:stompClient=
"stompClient"
:currentChatRoomInfo=
"currentChatRoomInfo"
></NoticeDialog>
<ChatRoomDialog
ref=
"myChatRoom"
:currentChatRoomInfo=
"currentChatRoomInfo"
:stompClient=
"stompClient"
>
</ChatRoomDialog>
<
ChatRoomPeople
ref=
"myChatRoomPeople"
:currentTeamInfo=
"currentChatRoomInfo"
></ChatRoomPeople
>
<
chatRoomMemberDialog
ref=
"mychatRoomMemberDialog"
:currentTeamInfo=
"currentChatRoomInfo"
></chatRoomMemberDialog
>
</div>
</template>
...
...
@@ -103,7 +103,7 @@ import { getRecordsByPaging, updateStatus } from '@/api/chat/chatRecords';
import
{
getTime_extent
}
from
'
@/util/http_util.js
'
;
import
NoticeDialog
from
'
@/view/ddkz/components/noticeDialog.vue
'
;
import
ChatRoomDialog
from
"
@/view/ddkz/components/chatRoomDialog.vue
"
;
import
ChatRoomPeople
from
"
@/view/ddkz/components/chatRoomPeople
.vue
"
;
import
chatRoomMemberDialog
from
"
@/view/ddkz/components/chatRoomMemberDialog
.vue
"
;
import
textImg
from
'
@/assets/img/ddkz/tool1.png
'
;
import
excelImg
from
'
@/assets/img/ddkz/tool5.png
'
;
import
{
MAIL_ADDRESS
}
from
"
@/constant/user
"
...
...
@@ -131,7 +131,7 @@ export default {
components
:
{
NoticeDialog
:
NoticeDialog
,
ChatRoomDialog
:
ChatRoomDialog
,
ChatRoomPeople
:
ChatRoomPeople
chatRoomMemberDialog
:
chatRoomMemberDialog
},
methods
:
{
goBackFn
()
{
...
...
@@ -230,7 +230,7 @@ export default {
},
showPeopleList
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
.
my
ChatRoomPeople
.
showDialog
();
this
.
$refs
.
my
chatRoomMemberDialog
.
showDialog
();
})
},
sendEmail
()
{
...
...
@@ -492,7 +492,8 @@ export default {
color
:
white
;
.newsSource
{
color
:
red
;
// color: red;
color
:
white
;
}
}
...
...
src/view/ddkz/components/chatRoom
People
.vue
→
src/view/ddkz/components/chatRoom
MemberDialog
.vue
View file @
a1cab035
...
...
@@ -9,7 +9,8 @@
<!--
<span>
角色:
<span>
{{
item
.
teamType
}}
</span></span>
-->
</div>
<div
class=
"peopleInfo"
>
<div
v-for=
"item1 in item.teamMemberStateBOList"
class=
"everyPersonList"
>
<div
v-for=
"item1 in item.teamMemberStateBOList"
:class=
"['everyPersonList', 'cardType' + item.id % 3]"
>
<span
class=
"isOnline"
:style=
"
{ backgroundColor: item1.online ? 'green' : 'gray' }">
</span>
<span
class=
"username"
:style=
"
{ color: item1.online ? 'green' : 'white' }"
v-text="item1.userId">
</span>
...
...
@@ -156,17 +157,32 @@ export default {
}
}
&
>
div
:nth-child
(
3n
)
{
// &>div:nth-child(3n) {
// background-image: url(@/assets/img/ddkz/12.png);
// background-size: 100% 100%;
// }
// &>div:nth-child(3n+1) {
// background-image: url(@/assets/img/ddkz/13.png);
// background-size: 100% 100%;
// }
// &>div:nth-child(3n+2) {
// background-image: url(@/assets/img/ddkz/14.png);
// background-size: 100% 100%;
// }
.cardType0
{
background-image
:
url(@/assets/img/ddkz/12.png)
;
background-size
:
100%
100%
;
}
&
>
div
:nth-child
(
3n
+
1
)
{
.cardType1
{
background-image
:
url(@/assets/img/ddkz/13.png)
;
background-size
:
100%
100%
;
}
&
>
div
:nth-child
(
3n
+
2
)
{
.cardType2
{
background-image
:
url(@/assets/img/ddkz/14.png)
;
background-size
:
100%
100%
;
}
...
...
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