viewYxcs.js 407 B

12345678910111213141516171819202122232425262728
  1. $(function(){
  2. selectDw(1);
  3. });
  4. /**
  5. * 返回
  6. */
  7. function cancelHkyxcs() {
  8. loadHjkzYxcsList();
  9. }
  10. /**
  11. * 档位切换
  12. * @param id
  13. */
  14. function selectDw(id) {
  15. $(".dw").hide();
  16. $("#en > button").attr("disabled", "");
  17. $("#dw" + id).show();
  18. $("#en > button").eq(id - 1).attr("disabled", "disabled");
  19. }
  20. function editHjkzYxcs(id) {
  21. huimv.loadPage("hjkzRight", "editHjkzYxcs.htm", {
  22. "id" : id,
  23. });
  24. }