诺胜海运整柜内装服务介绍

我司专业提供海运整柜内装及仓库集运服务,支持多家工厂货物统一集货、集中装箱后再统一出运。

如贵司有多家工厂供货,可将货物统一发送至我司口岸附近仓库(以南沙仓库为例),待所有货物到齐后,我司即可安排装柜出运。

贵司确认报价后,我司将提供正式入仓单,贵司可安排各工厂通过物流或货拉拉等方式送货入仓。货物到齐后,我司安排提柜至仓库完成装箱,并提供装柜照片;如有特殊装柜要求,可按贵司指令严格执行。

深圳鑫诺胜国际物流,专注提供专业、高效、可靠的国际物流运输服务。

Our company provides professional warehouse consolidation and container loading services for sea freight FCL. If you have goods from multiple factories, you can deliver them to our warehouse near the port. We can arrange container loading only after all goods have arrived, taking our Nansha warehouse as an example.

After you confirm the quotation, we will issue a warehouse receiving order. Your factories can deliver goods to our warehouse by logistics or Huolala. Once all goods arrive, we will arrange to pick up the container and complete loading at the warehouse, with loading photos provided. Any special loading requirements will be strictly followed as per your instructions.

Shenzhen Rosen Logistics – Professional International Logistics and Transportation Services.

// 仅添加这段代码到你现有页面的JS末尾,不改动其他代码 // 适配你现有页面的选择器(请替换成你实际的输入框/按钮/表格ID) jQuery(document).ready(function($) { // 定义查询函数,复用你现有页面的DOM结构 function loadFreightRates() { // 获取你现有输入框的值(用你实际的选择器,比如#origin、#dest) var origin = $('#pol').val(); var dest = $('#pod').val(); var carrier = $('#line').val(); // 调用接口获取数据,不改动你现有页面的样式 $.ajax({ url: '', type: 'GET', data: { action: 'get_freight_rates', origin: origin, dest: dest, carrier: carrier }, dataType: 'json', success: function(data) { // 清空你现有表格的内容(用你实际的表格tbody选择器) var $tbody = $('#your-freight-table-tbody').empty(); // 填充数据,完全复用你现有表格的HTML结构 if (data.length === 0) { $tbody.html('暂无数据'); } else { $.each(data, function(i, item) { // 复用你现有表格的行结构,仅替换数据 var tr = '' + '' + item.origin_port + '' + '' + item.dest_port + '' + '' + item.carrier + '' + '' + item.price_20gp + '' + '' + item.price_40gp + '' + '' + item.price_40hq + '' + '' + item.valid_from + ' 至 ' + item.valid_to + '' + '' + (item.remark || '') + '' + ''; $tbody.append(tr); }); } } }); } // 绑定你现有查询按钮的点击事件(用你实际的按钮ID) $('#your-search-button').click(loadFreightRates); // 页面加载时自动查询(保持你现有逻辑) loadFreightRates(); });
滚动至顶部