Commit 7c965bad authored by 黄奎's avatar 黄奎

新增页面

parent ccb36cf9
...@@ -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;
......
...@@ -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;
......
This diff is collapsed.
...@@ -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: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment