vr-shopxo-source/public/static/admin/default/js/warehousegoods.inventoryinf...

10 lines
318 B
JavaScript

$(function()
{
// 库存批量设置
$(document).on('click', '.inventory-all-submit', function()
{
var value = $('table.am-table thead tr th input').val() || '';
$('table.am-table tbody tr td input[type="number"]').val(value);
$('#inventory-dropdown').dropdown('close');
});
});