getNotes.wxs 254 B

1234567891011
  1. var getNotes = function (storeInfoList, storeIndex) {
  2. if (!storeInfoList) {
  3. return '';
  4. }
  5. var storeInfo = storeInfoList[storeIndex];
  6. if (!storeInfo) {
  7. return '';
  8. }
  9. return storeInfoList[storeIndex].remark;
  10. };
  11. module.exports = getNotes;