d19ca042 by lihua

提交

1 parent 04932d63
...@@ -696,13 +696,13 @@ const productData: any = ref([]); ...@@ -696,13 +696,13 @@ const productData: any = ref([]);
696 const apiList: any = ref([]); 696 const apiList: any = ref([]);
697 697
698 const getAPIOptions = (scope) => { 698 const getAPIOptions = (scope) => {
699 // apiList.value.forEach(a => { 699 apiList.value.forEach(a => {
700 // if (a.guid != scope.row.guid && productData.value.some(p => p.apiGuid == a.guid)) { 700 if (a.guid != scope.row.guid && productData.value.some(p => p.apiGuid == a.guid)) {
701 // a.disabled = true; 701 a.disabled = true;
702 // } else { 702 } else {
703 // a.disabled = false; 703 a.disabled = false;
704 // } 704 }
705 // }) 705 })
706 return apiList.value; 706 return apiList.value;
707 } 707 }
708 708
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!