micro_mall_xcx/pages/order/order-confirm/getNotes.wxs
2023-05-30 20:21:16 +08:00

12 lines
254 B
XML

var getNotes = function (storeInfoList, storeIndex) {
if (!storeInfoList) {
return '';
}
var storeInfo = storeInfoList[storeIndex];
if (!storeInfo) {
return '';
}
return storeInfoList[storeIndex].remark;
};
module.exports = getNotes;