Commit c8dac2d7 authored by Mac's avatar Mac

1

parent 70796dd0
......@@ -405,7 +405,7 @@
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: row.OrderId,
EnterID:row.UserId
// EnterID:row.UserId
});
},
},
......
......@@ -172,6 +172,10 @@
if (this.$route.query && this.$route.query.OrderId) {
this.msg.OrderId = this.$route.query.OrderId
}
if (this.$route.query && this.$route.query.UserId) {
this.msg.UserId = this.$route.query.UserId
}
this.getList()
// this.setClass()
......@@ -305,7 +309,7 @@
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: row.OrderId,
EnterID:row.UserId
// EnterID:row.UserId
});
},
......
......@@ -89,7 +89,7 @@
</el-table-column>
<el-table-column prop="IssueNum" label="发放次数" width='94'>
<template slot-scope="scope">
<div v-if="scope.row.IssueNum" style="cursor: pointer;text-decoration: underline;" @click='goorderUrl(scope.row.OrderId)'>
<div v-if="scope.row.IssueNum" style="cursor: pointer;text-decoration: underline;" @click='goorderUrl(scope.row)'>
发放第{{scope.row.IssueNum}}
</div>
......@@ -291,11 +291,12 @@
StudentCount(a, b) {
return a.StudentCount - b.StudentCount;
},
goorderUrl(id) {
goorderUrl(row) {
this.$router.push({
path: '/financial/cycleOrderList',
query: {
OrderId: id,
OrderId: row.OrderId,
UserId:row.UserId,
blank: 'y',
}
})
......@@ -306,7 +307,7 @@
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: row.OrderId,
EnterID:row.UserId
// EnterID:row.UserId
});
},
goUrlclass(path,Names){//班级
......
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