| | |
| | | //获取客户下拉框信息 |
| | | function getCustomerList() { |
| | | sendData(IP + "/Basis/GetCustomerSelect", {}, 'get', function(res) { |
| | | if (res.code == 200) { //成功 |
| | | if (res.code == 0) { //成功 |
| | | $("#CustomerNo").empty(); |
| | | $("#CustomerNo").append('<option value =""></option>'); |
| | | for (var i = 0; i < res.data.length; i++) { |
| | |
| | | //获取物流承运商下拉框信息 |
| | | function getLogisticsInfoList() { |
| | | sendData(IP + "/Basis/GetLogisticsInfoSelect", {}, 'get', function(res) { |
| | | if (res.code == 200) { //成功 |
| | | if (res.code == 0) { //成功 |
| | | $("#LogisticsId").empty(); |
| | | $("#LogisticsId").append('<option value =""></option>'); |
| | | for (var i = 0; i < res.data.length; i++) { |