Commit c8dac2d7 authored by Mac's avatar Mac

1

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