Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
corporateCulture-qd
Overview
Overview
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
王立鹏
corporateCulture-qd
Commits
6902c1be
Commit
6902c1be
authored
Mar 05, 2026
by
lijiabin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【需求 20331】 styles: 优化样式
parent
d5d48e53
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
10 deletions
+7
-10
App.vue
src/App.vue
+2
-4
index.vue
src/components/common/CommentListDialog/index.vue
+2
-0
index.vue
src/components/common/PublishBox/index.vue
+1
-4
lotteryConfigDialog.vue
...enu/dailyLotteryManage/components/lotteryConfigDialog.vue
+2
-0
index.vue
src/views/backend/settingsMenu/dailyLotteryManage/index.vue
+0
-1
index.vue
src/views/homePage/askTab/index.vue
+0
-1
No files found.
src/App.vue
View file @
6902c1be
<
template
>
<Notivue
v-slot=
"item"
>
<NotivueSwipe
:item=
"item"
>
<Notification
:item=
"item"
>
<NotificationProgress
:item=
"item"
/>
</Notification>
<Notification
:item=
"item"
:theme=
"pastelTheme"
>
</Notification>
</NotivueSwipe>
</Notivue>
<el-config-provider
:locale=
"locale"
>
...
...
@@ -15,7 +13,7 @@
<
script
setup
lang=
"ts"
>
import
zhCn
from
'element-plus/es/locale/lang/zh-cn'
import
{
initWxConfig
}
from
'@/utils/wxUtil/initWXConfig'
import
{
Notivue
,
NotivueSwipe
,
Notification
,
NotificationProgress
}
from
'notivue'
import
{
Notivue
,
NotivueSwipe
,
Notification
,
pastelTheme
}
from
'notivue'
const
locale
=
ref
(
zhCn
)
...
...
src/components/common/CommentListDialog/index.vue
View file @
6902c1be
...
...
@@ -374,9 +374,11 @@ const handleLike = async (item: CommentItemDto) => {
if
(
item
.
hasPraise
===
BooleanFlag
.
YES
)
{
item
.
hasPraise
=
BooleanFlag
.
NO
item
.
postPriseCount
--
push
.
success
(
'取消点赞成功'
)
}
else
{
item
.
hasPraise
=
BooleanFlag
.
YES
item
.
postPriseCount
++
push
.
success
(
'点赞成功'
)
}
}
catch
(
error
)
{
console
.
error
(
error
)
...
...
src/components/common/PublishBox/index.vue
View file @
6902c1be
...
...
@@ -238,10 +238,7 @@ const handleAddTag = () => {
const
validateForm
=
()
=>
{
if
(
!
form
.
value
.
mainTagId
)
{
push
.
warning
({
message
:
'请选择主标签'
,
offset
:
200
,
})
push
.
warning
(
'请选择主标签'
)
play
()
visibleTagTooltip
.
value
=
true
...
...
src/views/backend/settingsMenu/dailyLotteryManage/components/lotteryConfigDialog.vue
View file @
6902c1be
...
...
@@ -66,6 +66,7 @@ import { useResetData } from '@/hooks'
import
type
{
FormInstance
,
FormRules
}
from
'element-plus'
import
{
BooleanFlag
}
from
'@/constants'
import
{
formatSeconds
}
from
'@/utils'
import
{
push
}
from
'notivue'
const
formRules
:
FormRules
=
{
openRangeTime
:
[{
required
:
true
,
message
:
'请选择开放时间'
,
trigger
:
'change'
}],
...
...
@@ -122,6 +123,7 @@ const handleSubmit = async () => {
loading
.
value
=
true
try
{
await
setLotteryConfig
(
data
)
push
.
success
(
'保存成功'
)
visible
.
value
=
false
}
catch
(
error
)
{
console
.
error
(
error
)
...
...
src/views/backend/settingsMenu/dailyLotteryManage/index.vue
View file @
6902c1be
...
...
@@ -203,7 +203,6 @@ const handleSubmit = async () => {
}
else
{
await
addOrUpdateLotteryPrize
(
form
.
value
)
}
push
.
success
(
form
.
value
.
id
?
'编辑成功'
:
'新增成功'
)
dialogVisible
.
value
=
false
if
(
form
.
value
.
id
)
{
...
...
src/views/homePage/askTab/index.vue
View file @
6902c1be
...
...
@@ -250,7 +250,6 @@ const handleCollect = async (item: ArticleItemDto) => {
item
.
hasCollect
=
!
item
.
hasCollect
item
.
collectionCount
=
item
.
hasCollect
?
item
.
collectionCount
+
1
:
item
.
collectionCount
-
1
push
.
success
(
item
.
hasCollect
?
'收藏成功'
:
'取消收藏'
)
refresh
()
}
// 一个是直接写这个问题的首评论 一个是直接给最热评论写评论
...
...
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