File tree Expand file tree Collapse file tree 3 files changed +21
-7
lines changed
components/ContentWrap/src
views/mall/promotion/kefu/components Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const prefixCls = getPrefixCls('content-wrap')
11
11
defineProps ({
12
12
title: propTypes .string .def (' ' ),
13
13
message: propTypes .string .def (' ' ),
14
- bodyStyle: propTypes .object .def ({ padding: ' 20px ' })
14
+ bodyStyle: propTypes .object .def ({ padding: ' 10px ' })
15
15
})
16
16
</script >
17
17
Original file line number Diff line number Diff line change 22
22
<div class =" ml-10px w-100%" >
23
23
<div class =" flex justify-between items-center w-100%" >
24
24
<span class =" username" >{{ item.userNickname }}</span >
25
- <span class =" color-[var(--left-menu-text-color)]" style =" font-size : 13px ; " >
25
+ <span class =" color-[var(--left-menu-text-color)]" style =" font-size : 13px " >
26
26
{{ formatPast(item.lastMessageTime, 'YYYY-MM-DD') }}
27
27
</span >
28
28
</div >
29
29
<!-- 最后聊天内容 -->
30
30
<div
31
- v-dompurify-html =" getConversationDisplayText(item.lastMessageContentType, item.lastMessageContent)"
31
+ v-dompurify-html ="
32
+ getConversationDisplayText(item.lastMessageContentType, item.lastMessageContent)
33
+ "
32
34
class =" last-message flex items-center color-[var(--left-menu-text-color)]"
33
35
>
34
36
</div >
@@ -205,7 +207,7 @@ watch(showRightMenu, (val) => {
205
207
206
208
.active {
207
209
border-left : 5px #3271ff solid ;
208
- background-color : var (--left-menu-bg-active -color );
210
+ background-color : var (--login-bg -color );
209
211
}
210
212
211
213
.pinned {
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div v-if =" isObject(getMessageContent)" @click = " openDetail(getMessageContent.id) " style = " cursor : pointer ; " >
2
+ <div v-if =" isObject(getMessageContent)" >
3
3
<div :key =" getMessageContent.id" class =" order-list-card-box mt-14px" >
4
4
<div class =" order-card-header flex items-center justify-between p-x-5px" >
5
- <div class =" order-no" >订单号:{{ getMessageContent.no }}</div >
5
+ <div class =" order-no" >
6
+ 订单号:
7
+ <span style =" cursor : pointer " @click =" openDetail(getMessageContent.id)" >
8
+ {{ getMessageContent.no }}
9
+ </span >
10
+ </div >
6
11
<div :class =" formatOrderColor(getMessageContent)" class =" order-state font-16" >
7
12
{{ formatOrderStatus(getMessageContent) }}
8
13
</div >
@@ -113,8 +118,15 @@ function formatOrderStatus(order: any) {
113
118
height : 28px ;
114
119
115
120
.order-no {
116
- font-size : 10 px ;
121
+ font-size : 12 px ;
117
122
font-weight : 500 ;
123
+
124
+ span {
125
+ & :hover {
126
+ text-decoration : underline ;
127
+ color : var (--left-menu-bg-active-color );
128
+ }
129
+ }
118
130
}
119
131
}
120
132
You can’t perform that action at this time.
0 commit comments