init-logistics.js 674 B

1234567891011121314151617181920212223242526272829
  1. import Vue from 'vue';
  2. export const setAttribute = function(data) {
  3. if (Array.isArray(data) && data.length > 0) {
  4. return data.map((item, index) => {
  5. Vue.set(item, 'isFirstNode', false)
  6. return item
  7. })
  8. } else {
  9. return []
  10. }
  11. }
  12. export const changeAttribute = function(testStrList, targetList) {
  13. let cacheData = targetList;
  14. testStrList.forEach((item, index) => {
  15. let result_Index = targetList.findIndex(function(f_item, f_index) {
  16. return String(f_item.state) == item
  17. })
  18. if (result_Index != -1) {
  19. cacheData[result_Index].isFirstNode = true;
  20. }
  21. })
  22. return cacheData;
  23. }
  24. export default {
  25. setAttribute,
  26. changeAttribute
  27. }