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

@@ -168,7 +168,8 @@
</template>
</el-table-column>
</el-table>
<div class="block" style="margin-top: 10px;">
<span style="font-size: 5px">{{ totalnumber }}条信息选择{{ gouxuan }}</span>
<div class="block" style="margin-top: 0px;">
<el-pagination
v-show="false"
:current-page="currentPage"
@@ -516,7 +517,9 @@ export default {
pageList3: 1, // 后台获取页
currentPage3: 1, // 显示当前页
listLoading: false,
listLoading1: false
listLoading1: false,
gouxuan: 0,
totalnumber: 0
}
},
computed: {
@@ -683,6 +686,7 @@ export default {
getTable(this.NumValue, this.pageList, this.pageSize).then(response => {
this.total = parseInt(response.data.total)
this.tableData = []
this.totalnumber = response.data.rows.length
for (let i = 0; i < response.data.rows.length; i++) {
this.tableData.push({
零件图号: response.data.rows[i].零件图号,
@@ -741,6 +745,7 @@ export default {
},
handleSelectionChange(val) {
this.multipleSelection = val
this.gouxuan = val.length
},
handleEditNumber(index, row) {
this.dialogFormVisible3 = true