通知班组绑定优化

yangwl
shaoyong 4 months ago
parent 2b2e40c336
commit 78bb38fd6c

@ -76,7 +76,7 @@
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
@pagination="getTeamList"
/>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleBindTeam"> </el-button>
@ -147,8 +147,11 @@ export default {
},
//
getTeamList(){
listTeam().then(response => {
this.teamLoading = true;
listTeam(this.queryParams).then(response => {
this.teamList = response.rows;
this.total = response.total;
this.teamLoading = false;
});
},
cancel() {

Loading…
Cancel
Save