turnoverrateConfigEdit.js 439 B

123456789101112131415161718
  1. $(function(){
  2. // 货主
  3. $('#customerId').combobox({
  4. url : WEBROOT + "/loadData.action?entity=customer",
  5. idField : 'customerId',
  6. textField : 'customerName',
  7. valueField:'customerId',
  8. mode : 'remote'
  9. });
  10. // 货主
  11. $('#warehouseId').combobox({
  12. url : WEBROOT + "/loadData.action?entity=warehouse",
  13. idField : 'warehouseId',
  14. textField : 'warehouseName',
  15. valueField:'warehouseId',
  16. mode : 'remote'
  17. });
  18. });