netsale-batch.js 1.05 KB
'use strict';
var $ = require('jquery'),
    common = require('../common/common');

$('input[type="file"]').after('<div class="file-name btn btn-default">请选择文件</div>');

function batchExport(el, type) {
    var loadModal = null;

    return {
        params: {
            type: type,
            __type: "batch-import"
        },
        onStart: function() {
            loadModal = common.dialog.load();

            $(el).parents('td').find('.file-name').text($(el).val().replace("C:\\fakepath\\", ""));
        },
        onComplete: function(response) {
            console.log(response);
            if (loadModal) {
                loadModal.close();
            }
            if (response.code == 200) {
                common.util.__tip(response.message, 'success');
            } else {
                common.util.__tip(response.message, 'warning');
            }
        }
    }
}

common.edit.ajaxfileupload('#sort-file', batchExport('#sort-file', 'searchSort'));
common.edit.ajaxfileupload('#brand-file', batchExport('#brand-file', 'brandProperty'));