Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
7c965bad
Commit
7c965bad
authored
Mar 30, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
ccb36cf9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
556 additions
and
1 deletion
+556
-1
employment.vue
src/pages/studyAbroad/employment.vue
+16
-1
studyabroad.vue
src/pages/studyAbroad/studyabroad.vue
+15
-0
studypayment.vue
src/pages/studyAbroad/studypayment.vue
+520
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/pages/studyAbroad/employment.vue
View file @
7c965bad
...
@@ -168,6 +168,11 @@
...
@@ -168,6 +168,11 @@
<q-item-label>
订单中心
</q-item-label>
<q-item-label>
订单中心
</q-item-label>
</q-item-section>
</q-item-section>
</q-item>
</q-item>
<q-item
clickable
v-close-popup
@
click=
"GoToPayment(props.row)"
>
<q-item-section>
<q-item-label>
收支明细
</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-list>
</q-btn-dropdown>
</q-btn-dropdown>
</q-td>
</q-td>
...
@@ -357,13 +362,23 @@
...
@@ -357,13 +362,23 @@
}
}
},
},
methods
:
{
methods
:
{
//跳转到留学就业订单中心
//跳转到留学就业订单中心
GoToOrder
(
item
)
{
GoToOrder
(
item
)
{
var
tempStr
=
'/studyAbroad/studyemploymentorder?SourceId='
+
item
.
Id
;
var
tempStr
=
'/studyAbroad/studyemploymentorder?SourceId='
+
item
.
Id
;
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
tempStr
path
:
tempStr
});
});
},
},
//跳转到收支明细
GoToPayment
(
item
)
{
this
.
$router
.
push
({
path
:
'/studyAbroad/studypayment'
,
query
:
{
SourceId
:
item
.
Id
,
blank
:
'y'
}
})
},
//显示详情
//显示详情
ShowInfo
(
item
)
{
ShowInfo
(
item
)
{
this
.
studyObj
=
item
;
this
.
studyObj
=
item
;
...
...
src/pages/studyAbroad/studyabroad.vue
View file @
7c965bad
...
@@ -168,6 +168,11 @@
...
@@ -168,6 +168,11 @@
<q-item-label>
订单中心
</q-item-label>
<q-item-label>
订单中心
</q-item-label>
</q-item-section>
</q-item-section>
</q-item>
</q-item>
<q-item
clickable
v-close-popup
@
click=
"GoToPayment(props.row)"
>
<q-item-section>
<q-item-label>
收支明细
</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-list>
</q-btn-dropdown>
</q-btn-dropdown>
</q-td>
</q-td>
...
@@ -365,6 +370,16 @@
...
@@ -365,6 +370,16 @@
path
:
tempStr
path
:
tempStr
});
});
},
},
//跳转到收支明细
GoToPayment
(
item
)
{
this
.
$router
.
push
({
path
:
'/studyAbroad/studypayment'
,
query
:
{
SourceId
:
item
.
Id
,
blank
:
'y'
}
})
},
//显示详情
//显示详情
ShowInfo
(
item
)
{
ShowInfo
(
item
)
{
this
.
studyObj
=
item
;
this
.
studyObj
=
item
;
...
...
src/pages/studyAbroad/studypayment.vue
0 → 100644
View file @
7c965bad
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
7c965bad
...
@@ -556,6 +556,11 @@ const routes = [{
...
@@ -556,6 +556,11 @@ const routes = [{
component
:
()
=>
component
:
()
=>
import
(
"pages/studyAbroad/studyemploymentorder.vue"
)
import
(
"pages/studyAbroad/studyemploymentorder.vue"
)
},
},
{
path
:
"/studyAbroad/studypayment"
,
//留学就业收支明细
component
:
()
=>
import
(
"pages/studyAbroad/studypayment.vue"
)
},
{
{
path
:
"/studyAbroad/supplier"
,
//供应商
path
:
"/studyAbroad/supplier"
,
//供应商
component
:
()
=>
component
:
()
=>
...
...
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