Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-ui
Project
Project
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
ui
mongo-ui
Commits
e5b99baa
Commit
e5b99baa
authored
Aug 04, 2020
by
郭志伟
Committed by
郝聪敏
Aug 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 顾问调整
parent
48762101
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
18 deletions
+6
-18
index.js
src/router/index.js
+0
-15
index.vue
src/views/Consultant/Buy/index.vue
+1
-1
index.vue
src/views/Consultant/Plan/index.vue
+3
-1
index.vue
src/views/Consultant/Question/index.vue
+1
-1
index.vue
src/views/Consultant/index.vue
+1
-0
No files found.
src/router/index.js
View file @
e5b99baa
...
...
@@ -44,21 +44,6 @@ const routes = [
name
:
"
Consultant
"
,
component
:
()
=>
import
(
"
../views/Consultant/index.vue
"
)
},
{
path
:
"
/consultant/success
"
,
name
:
"
ConsultantSuccess
"
,
component
:
()
=>
import
(
"
../views/Consultant/Success/index.vue
"
)
},
{
path
:
"
/consultant/question
"
,
name
:
"
ConsultantQuestion
"
,
component
:
()
=>
import
(
"
../views/Consultant/Question/index.vue
"
)
},
{
path
:
"
/consultant/exclusive
"
,
name
:
"
ConsultantExclusive
"
,
component
:
()
=>
import
(
"
../views/Consultant/Exclusive/index.vue
"
)
},
{
path
:
"
/consultant/plan
"
,
name
:
"
ConsultantPlan
"
,
...
...
src/views/Consultant/Buy/index.vue
View file @
e5b99baa
...
...
@@ -222,7 +222,7 @@ export default {
async
goPay
()
{
const
res
=
await
goPay
({
consultantOrderNo
:
this
.
consultantOrderNo
});
if
(
res
)
{
this
.
$notify
(
"
支付成功
"
);
this
.
$notify
(
{
type
:
"
success
"
,
message
:
"
支付成功
"
}
);
setTimeout
(()
=>
{
// this.$router.push("/consultant/success");
this
.
$parent
.
getOrderInfo
();
...
...
src/views/Consultant/Plan/index.vue
View file @
e5b99baa
...
...
@@ -175,7 +175,9 @@ export default {
]
};
},
mounted
()
{},
mounted
()
{
this
.
getSuggestion
();
},
methods
:
{
tagFilter
(
type
)
{
let
_type
=
""
;
...
...
src/views/Consultant/Question/index.vue
View file @
e5b99baa
...
...
@@ -282,7 +282,7 @@ export default {
return
;
}
if
(
!
formData
[
stepTips
[
currentStep
].
tag
]
||
currentStep
===
7
)
{
this
.
$notify
(
stepTips
[
currentStep
].
rule
);
this
.
$notify
(
{
type
:
"
warning
"
,
message
:
stepTips
[
currentStep
].
rule
}
);
return
;
}
this
.
currentStep
++
;
...
...
src/views/Consultant/index.vue
View file @
e5b99baa
...
...
@@ -61,6 +61,7 @@ export default {
methods
:
{
async
getOrderInfo
()
{
if
(
!
this
.
isLogin
)
return
;
this
.
showQuestion
=
false
;
const
res
=
await
getCulOrder
();
if
(
res
)
{
this
.
orderInfo
=
res
;
...
...
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