Blame view

public/js/3party/material/model.js 198 Bytes
李靖 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
'use strict';

import {
    http
} from 'yoho-mvc';

function moreGoods(url, data) {
    return http({
        url: location.protocol + url,
        data: data,
    });
}

export {
    moreGoods
};