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

@@ -80,6 +80,7 @@
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<span style="font-size: 5px">{{ totalnumber }}条信息选择{{ gouxuan }}</span>
<div class="block" style="margin-top: 10px;">
<el-pagination
:current-page="pageCurrent"
@@ -158,7 +159,9 @@ export default {
keyichuku: 1,
outgoingQuantity: [],
departments: [], // 部门
leaders: [] // 领料人
leaders: [], // 领料人
gouxuan: 0,
totalnumber: 0
}
},
created() {
@@ -173,6 +176,7 @@ export default {
const groupNumberValue_check = this.groupNumberValue === '' ? 0 : 1
const partNumber_check = this.partNumber === '' || this.partNumber === null ? 0 : 1
searchdata(entryNameValue_check, this.entryNameValue, machineToolValue_check, this.machineToolValue, groupNumberValue_check, this.groupNumberValue, partNumber_check, this.partNumber, this.pageCurrent, this.pageSize).then(response => {
this.totalnumber = response.data.rows.length
if (response.data.rows.length !== 0) {
for (let i = 0; i < response.data.rows.length; i++) {
this.tableData.push({
@@ -267,6 +271,7 @@ export default {
handleSelectionChange(val) {
this.shuzu = []
this.shuzu = val
this.gouxuan = val.length
// val.map(v => {
// this.multipleSelection.push(v.工艺计划流水号)
// this.outgoingQuantity.push(v.出库数量)