mode_rjz_car_apply.js 512 B

123456789101112131415
  1. //流程模块【rjz_car_apply.任家庄用车申请】下录入页面自定义js页面,初始函数
  2. function initbodys() {
  3. c.onselectdata['car_type'] = function (d) {
  4. console.log(d);
  5. js.ajax(geturlact('getFreeCarCon'), {car_type: d.name}, function (res) {
  6. var data = JSON.parse(res);
  7. if (data.success) {
  8. form('surplus').value = data.data.car_free_con;
  9. }
  10. }, 'get, json');
  11. }
  12. // $(c.onselectdata['car_type'])
  13. }