|
|
|
@ -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() {
|
|
|
|
|