You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
361 B
11 lines
361 B
7 months ago
|
const cloud = require('wx-server-sdk');
|
||
|
cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV });
|
||
|
exports.main = async (event, context) => {
|
||
|
return {
|
||
|
dataList: [
|
||
|
{ _id: '1', title: '微信气泡徽章', price: 1800 },
|
||
|
{ _id: '2', title: '微信地球鼠标垫', price: 5800 },
|
||
|
{ _id: '3', title: '微信黄脸大贴纸', price: 500 }
|
||
|
],
|
||
|
}
|
||
|
};
|