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

10 lines
308 B
JavaScript

$(function()
{
// 库存批量设置
$('.inventory-all-submit').on('click', 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');
});
});