Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
Z
zxn-adputin
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lijin
zxn-adputin
Commits
26b28e97
Commit
26b28e97
authored
Jul 08, 2025
by
huangzhenglong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 处理任务提示
parent
9b91b1e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
CampaignTaskManage.vue
src/views/campaignTask/CampaignTaskManage.vue
+8
-8
No files found.
src/views/campaignTask/CampaignTaskManage.vue
View file @
26b28e97
...
@@ -79,8 +79,8 @@
...
@@ -79,8 +79,8 @@
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-tag
<el-tag
:type=
"getStatusType(scope.row.status)"
:type=
"getStatusType(scope.row.status)"
:class=
"
{'clickable-tag': scope.row.status === 4}"
:class=
"
{'clickable-tag': scope.row.status ===
3 || scope.row.status ===
4}"
@click="
scope.row.status === 4
&&
showErrorMessage(scope.row)">
@click="
(scope.row.status === 3 || scope.row.status === 4)
&&
showErrorMessage(scope.row)">
{{
getStatusText
(
scope
.
row
.
status
)
}}
{{
getStatusText
(
scope
.
row
.
status
)
}}
</el-tag>
</el-tag>
</
template
>
</
template
>
...
@@ -204,7 +204,7 @@
...
@@ -204,7 +204,7 @@
<el-table
:data=
"appListData"
size=
"mini"
border
style=
"width: 100%"
>
<el-table
:data=
"appListData"
size=
"mini"
border
style=
"width: 100%"
>
<el-table-column
prop=
"name"
label=
"应用名称"
></el-table-column>
<el-table-column
prop=
"name"
label=
"应用名称"
></el-table-column>
<el-table-column
prop=
"appId"
label=
"包名"
></el-table-column>
<el-table-column
prop=
"appId"
label=
"包名"
></el-table-column>
<el-table-column
label=
"计划数"
width=
"200"
align=
"center"
>
<el-table-column
label=
"计划数"
width=
"200"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-input-number
v-model=
"scope.row.campaignCount"
:min=
"1"
@
change=
"updateAppCampaignCount(scope.row, $event)"
size=
"mini"
></el-input-number>
<el-input-number
v-model=
"scope.row.campaignCount"
:min=
"1"
@
change=
"updateAppCampaignCount(scope.row, $event)"
size=
"mini"
></el-input-number>
...
@@ -379,8 +379,8 @@
...
@@ -379,8 +379,8 @@
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-tag
<el-tag
:type=
"getStatusType(scope.row.status)"
:type=
"getStatusType(scope.row.status)"
:class=
"
{'clickable-tag': scope.row.status === 4}"
:class=
"
{'clickable-tag': scope.row.status ===
3 || scope.row.status ===
4}"
@click="
scope.row.status === 4
&&
showErrorMessage(scope.row)">
@click="
(scope.row.status === 3 || scope.row.status === 4)
&&
showErrorMessage(scope.row)">
{{
getStatusText
(
scope
.
row
.
status
)
}}
{{
getStatusText
(
scope
.
row
.
status
)
}}
</el-tag>
</el-tag>
</
template
>
</
template
>
...
@@ -954,7 +954,7 @@ export default {
...
@@ -954,7 +954,7 @@ export default {
})
})
},
},
showErrorReason
()
{
showErrorReason
()
{
this
.
errorReasonVisible
=
true
;
this
.
errorReasonVisible
=
true
;
...
@@ -1338,7 +1338,7 @@ export default {
...
@@ -1338,7 +1338,7 @@ export default {
async
fetchAppsForSelector
()
{
async
fetchAppsForSelector
()
{
try
{
try
{
this
.
appsLoading
=
true
;
// 显示加载状态
this
.
appsLoading
=
true
;
// 显示加载状态
const
params
=
{
const
params
=
{
platformId
:
5
,
platformId
:
5
,
menuCode
:
"game.Overview,android"
,
menuCode
:
"game.Overview,android"
,
...
@@ -1358,7 +1358,7 @@ export default {
...
@@ -1358,7 +1358,7 @@ export default {
}
}
},
},
removeApp
(
app
)
{
removeApp
(
app
)
{
this
.
$confirm
(
`确定要移除应用 "
${
app
.
name
}
" 吗?`
,
'提示'
,
{
this
.
$confirm
(
`确定要移除应用 "
${
app
.
name
}
" 吗?`
,
'提示'
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
...
...
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