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