Browse Source

1

pull/8/head^2
zhaoguoqiang 3 years ago
parent
commit
bdfb7e51e4
  1. 14
      src/views/dataOverview/index.vue
  2. 2
      src/views/teamList/index.vue
  3. 14
      src/views/teamPerformance/index.vue

14
src/views/dataOverview/index.vue

@ -160,13 +160,13 @@
})
},
toTeamPerformance(){
this.$router.push({
path: '/teamPerformance',
query: {
// type: type,
// level_id: id,
}
})
// this.$router.push({
// path: '/teamPerformance',
// query: {
// // type: type,
// // level_id: id,
// }
// })
},
}
}

2
src/views/teamList/index.vue

@ -1,7 +1,7 @@
<template>
<div class="teamList">
<div v-if="list.data.length>0" class="moneyRanking">
<p class="title">{{this.$route.query.level_id | capitalize2}}</p>
<!-- <p class="title">{{this.$route.query.level_id | capitalize2}}</p> -->
<div class="list">
<van-list v-model="list.loading" :finished="list.finished" :error.sync="error" error-text="请求失败点击重新加载"
finished-text="没有更多了" @load="onLoad">

14
src/views/teamPerformance/index.vue

@ -151,13 +151,13 @@
console.log(this.list, '---this.list');
},
toTeamList(type, id) {
this.$router.push({
path: '/teamList',
query: {
type: type,
level_id: id,
}
})
// this.$router.push({
// path: '/teamList',
// query: {
// type: type,
// level_id: id,
// }
// })
},
}
}

Loading…
Cancel
Save