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

@@ -93,6 +93,7 @@
<!--</template>-->
<!--</el-table-column>-->
</el-table>
<span style="font-size: 5px">{{ totalnumber }}条信息选择{{ gouxuan }}</span>
<div class="block">
<el-pagination
v-if="!loading"
@@ -162,7 +163,10 @@ export default {
pageSize: 30, // 每页显示条数
pageCurrent: 1, // 后台获取页
ordername: '',
order: ''
order: '',
gouxuan: 0,
totalnumber: 0
}
},
created() {
@@ -224,6 +228,7 @@ export default {
// this.tableData.push({
// 重量: response.data.rows[0].重量
// })
this.totalnumber = response.data.rows.length
this.tableData = response.data.rows
this.total = response.data.total
this.loading = false
@@ -233,6 +238,7 @@ export default {
handleSelectionChange(val) {
this.tableData2 = []
this.tableData2 = val
this.gouxuan = val.length
},
edit() {
this.edit_loading = true