Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
marketing-web
marketing
Commits
fd745278
Commit
fd745278
authored
Aug 10, 2021
by
黑潮
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 样式
parent
f3ade024
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
form.vue
src/views/message/form.vue
+5
-1
importSendForm.vue
src/views/message/importSendForm.vue
+10
-2
No files found.
src/views/message/form.vue
View file @
fd745278
...
...
@@ -210,7 +210,11 @@ export default {
this
.
$router
.
push
(
'/message/record'
);
this
.
$tips
({
type
:
'success'
,
message
:
res
.
message
||
'提交成功'
});
}
else
{
this
.
$tips
({
type
:
'error'
,
message
:
'提交失败'
});
if
(
res
.
message
.
indexOf
(
'抱歉'
)
>=
0
)
{
this
.
$alert
(
res
.
message
,
'提示'
);
}
else
{
this
.
$tips
({
type
:
'error'
,
message
:
'提交失败'
});
}
}
})
.
catch
(
err
=>
{
...
...
src/views/message/importSendForm.vue
View file @
fd745278
...
...
@@ -107,8 +107,16 @@ export default {
saveImportSmsPlan
(
params
)
.
then
(
res
=>
{
this
.
loading
=
false
;
this
.
$message
({
message
:
res
.
message
||
`新增成功`
,
type
:
'success'
});
this
.
$router
.
push
(
'/message/import-send'
);
if
(
res
.
errorCode
==
0
)
{
this
.
$message
({
message
:
res
.
message
||
`新增成功`
,
type
:
'success'
});
this
.
$router
.
push
(
'/message/import-send'
);
}
else
{
if
(
res
.
message
.
indexOf
(
'抱歉'
)
>=
0
)
{
this
.
$alert
(
res
.
message
,
'提示'
);
}
else
{
this
.
$tips
({
type
:
'error'
,
message
:
'新增失败'
});
}
}
})
.
catch
(()
=>
{
this
.
loading
=
false
;
...
...
黑潮
@luojie
mentioned in commit
9417fd03
Aug 11, 2021
mentioned in commit
9417fd03
mentioned in commit 9417fd036c5f67ed0cb5ada2a49e7555563b6048
Toggle commit list
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