• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • js
  • home
  • grade-new
  • model.js
  • 开发完成
    37b0506b
    by lijing
    2017-05-09 10:03:57 +0800  
    Browse Files
model.js 204 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
'use strict';

import {
    http
} from 'yoho-mvc';

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

export {
    globalSearch
};