提交
Showing
1 changed file
with
7 additions
and
7 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment