mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
15 lines
230 B
JavaScript
15 lines
230 B
JavaScript
|
|
|
|
|
|
define(function(require, exports, module) {
|
|
var urlConfig = require('server/config');
|
|
exports.getImg = function(data){
|
|
_.each(data, function(item){
|
|
item.fengmianUrl = urlConfig.img + item.fengmianUrl;
|
|
});
|
|
};
|
|
|
|
|
|
});
|
|
|