| | |
| | | :data="tableData" |
| | | style="width: 100%" |
| | | :row-class-name="tableRowClassName" |
| | | @selection-change="tableChange" |
| | | > |
| | | <el-table-column type="selection" min-width="5"> </el-table-column> |
| | | <el-table-column prop="storeNumber" label="店铺编号" min-width="10"> |
| | |
| | | } |
| | | }; |
| | | return { |
| | | tempList: [], |
| | | myIdx: 0, |
| | | all: false, |
| | | unsame: false, |
| | | storeCode: null, |
| | | storeStatus: null, |
| | | options: [ |
| | |
| | | }, |
| | | |
| | | methods: { |
| | | // 监听表格选中状态 |
| | | tableChange(list) { |
| | | this.tempList = list; |
| | | this.all = list.length === this.tableData.length; |
| | | }, |
| | | // 批量删除 |
| | | mulDelete(idArr) { |
| | | this.$axios({ |