configure.js
575 Bytes
module.exports = {
'/configure/list': function (req, res) {
var JSON = {
supplier: [
{ text: '心飞扬有限公司', id: 1257 },
{ text: '芘芘國際有限公司', id: 1241 }
],
supplierstatus:[
{text:'暂存',id:1},
{text:'审核中',id:2},
{text:'审核驳回',id:3}
],
suppliersort:[
{text:'正序',id:1},
{text:'倒序',id:2}
]
};
res.json(JSON);
}
}