|
@@ -161,7 +161,7 @@
|
|
|
|
|
|
<script>
|
|
|
export default {
|
|
|
- props: ["userid", "oid", "type"],
|
|
|
+ props: ["userid", "oid","org", "type"],
|
|
|
data() {
|
|
|
return {
|
|
|
isLoading: false,
|
|
@@ -178,7 +178,8 @@ export default {
|
|
|
let params = {
|
|
|
uid: this.userid,
|
|
|
t: this.type,
|
|
|
- oid: this.oid
|
|
|
+ oid: this.oid,
|
|
|
+ org: this.org
|
|
|
};
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "selectRaceList1", params)
|
|
@@ -547,13 +548,20 @@ export default {
|
|
|
link.click();
|
|
|
document.body.removeChild(link);
|
|
|
},
|
|
|
+ goTo(path) {
|
|
|
+ this.$router.push(path);
|
|
|
+ },
|
|
|
lookDetail(aid) {
|
|
|
- window.open(
|
|
|
- window.location.origin +
|
|
|
- window.location.pathname +
|
|
|
- "/#/anliDetail?aid=" +
|
|
|
+ this.goTo(
|
|
|
+ "/anliDetail?aid=" +
|
|
|
aid
|
|
|
- );
|
|
|
+ );
|
|
|
+ // window.open(
|
|
|
+ // window.location.origin +
|
|
|
+ // window.location.pathname +
|
|
|
+ // "/#/anliDetail?aid=" +
|
|
|
+ // aid
|
|
|
+ // );
|
|
|
},
|
|
|
selectJj(i, type) {
|
|
|
if (type == 1) {
|