前端调整
This commit is contained in:
parent
6eea784f7a
commit
8569f6e1a7
|
@ -284,7 +284,7 @@ class PickmCard extends Component {
|
|||
let rowids = [];
|
||||
let hids = [];
|
||||
let hid;
|
||||
let rows = this.props.cardTable.getCheckedRows(AREA.borrowMaterialDialog);
|
||||
let rows = this.props.table.getCheckedRows(AREA.borrowMaterialDialog);
|
||||
hid = this.props.form.getFormItemsValue(AREA.formArea, FIELD.hid).value;
|
||||
hids.push(hid);
|
||||
// 如果没有选中行,则提示并返回,不进行任何操作
|
||||
|
@ -293,7 +293,7 @@ class PickmCard extends Component {
|
|||
return;
|
||||
}
|
||||
for (let i = 0; i < rows.length; i++){
|
||||
rowids.push(rows[0].data.values.cpickm_bid.value);
|
||||
rowids.push(rows[i].data.values.cpickm_bid.value);
|
||||
}
|
||||
let data = {
|
||||
cpickmids: hids,
|
||||
|
|
Loading…
Reference in New Issue