This commit is contained in:
liushuai
2020-05-14 18:17:03 +08:00
parent e1d611f964
commit 990052a70e
17 changed files with 200 additions and 45 deletions

View File

@@ -67,6 +67,7 @@
</template>
</el-table-column>
</el-table>
<span style="font-size: 5px">{{ totalnumber }}条信息选择{{ gouxuan }}</span>
<div class="block" style="margin-top: 10px;">
<el-pagination
v-show="!loading0"
@@ -134,7 +135,9 @@ export default {
工艺计划流水号组: [],
通用件图号: [],
通用件规格: [],
工艺员: []
工艺员: [],
gouxuan: 0,
totalnumber: 0
}
},
created() {
@@ -195,6 +198,7 @@ export default {
this.tableData = []
getTable(this.PageCurrent, this.PageSize, this.GroupNumValue).then(response => {
this.total = response.data.total
this.totalnumber = response.data.rows.length
for (let i = 0; i < response.data.rows.length; i++) {
this.tableData.push({
零件图号: response.data.rows[i].零件图号,
@@ -226,6 +230,7 @@ export default {
},
handleSelectionChange(val) {
this.multipleSelection = val
this.gouxuan = val.length
},
// 全选
selectAll(rows) {