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