Commit 54293c97 authored by zhengke's avatar zhengke

增加页面

parent aec8cdac
import request from '../../utils/request'
/**
* 获取收支明细数据
*
*/
export function GetClassBalanceSheet(data) {
return request({
url: '/Finance/GetClassBalanceSheet',
method: 'post',
data
})
}
\ No newline at end of file
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
<q-td :props="props"> <q-td :props="props">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="订单中心" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="订单中心"
@click="gotoOrder(props.row)"></q-btn> @click="gotoOrder(props.row)"></q-btn>
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="收支明细"></q-btn> <q-btn flat size="xs" icon="edit" color="accent" @click="goPayment(props.row)" style="font-weight:400" label="收支明细"></q-btn>
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑"
@click="EditCourse(props.row)" /> @click="EditCourse(props.row)" />
</q-td> </q-td>
...@@ -198,6 +198,17 @@ ...@@ -198,6 +198,17 @@
path: tempStr path: tempStr
}); });
}, },
//跳转到收支明细
goPayment(item){
this.$router.push({
path:'paymentDetail',
query:{
ClassId:item.ClassId,
School_Id:item.School_Id,
blank:'y'
}
})
},
//获取校区列表 //获取校区列表
getSchool() { getSchool() {
getSchoolDropdown({}).then(res => { getSchoolDropdown({}).then(res => {
......
This diff is collapsed.
...@@ -107,6 +107,11 @@ const routes = [{ ...@@ -107,6 +107,11 @@ const routes = [{
component: () => component: () =>
import("pages/course/baseSet.vue") import("pages/course/baseSet.vue")
}, },
{
path: "/course/paymentDetail", //收支明细
component: () =>
import("pages/course/paymentDetail.vue")
},
{ {
path: "/course/classorder", //班级订单 path: "/course/classorder", //班级订单
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