更新
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user