| | |
| | | <pagination |
| | | v-show="total>0" |
| | | :total="total" |
| | | :page.sync="queryParams.pageIndex" |
| | | :page.sync="queryParams.pageNum" |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | <form-dialog ref="formDialog"></form-dialog> |
| | | <el-dialog title="新增信息" :visible.sync="addForm" width="75%" append-to-body> |
| | | <form-fill ref="formFill"></form-fill> |
| | | <form-fill ref="formFill" @closeDialog="closeAdd()"></form-fill> |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | |
| | | expertTypes: [], |
| | | expertList: [], |
| | | queryParams: { |
| | | pageIndex: 1, |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | bigClassify: null, |
| | | smallClassify: null, |
| | |
| | | return null; |
| | | }, |
| | | handleQuery() { |
| | | this.queryParams.pageIndex = 1 |
| | | this.queryParams.pageNum = 1 |
| | | if(this.classiFy.length>0){ |
| | | this.queryParams.bigClassify = this.classiFy[0] |
| | | this.queryParams.smallClassify = this.classiFy[1] |
| | |
| | | this.$refs.formFill.changeSource(2) |
| | | },1000) |
| | | }, |
| | | closeAdd(){ |
| | | this.addForm = false |
| | | this.getList() |
| | | }, |
| | | /** 修改按钮操作 */ |
| | | handleUpdate(row) { |
| | | getInfo(row.expertId).then((res)=>{ |