合约策略只有协商时再请求
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -1060,7 +1060,7 @@ onBeforeMount(() => { | ... | @@ -1060,7 +1060,7 @@ onBeforeMount(() => { |
| 1060 | extendTableInfo.value.data = detailInfo.value.contractExpansions || []; | 1060 | extendTableInfo.value.data = detailInfo.value.contractExpansions || []; |
| 1061 | productTableInfo.value.data = detailInfo.value.contractSubjects || []; | 1061 | productTableInfo.value.data = detailInfo.value.contractSubjects || []; |
| 1062 | let productGuid = productTableInfo.value.data?.[0]?.dataProductGuid; | 1062 | let productGuid = productTableInfo.value.data?.[0]?.dataProductGuid; |
| 1063 | if (productGuid) { | 1063 | if (productGuid && detailType.value == 'consult') { |
| 1064 | getDamFieldsByProductGuid(productGuid).then((res: any) => { | 1064 | getDamFieldsByProductGuid(productGuid).then((res: any) => { |
| 1065 | if (res?.code == proxy.$passCode) { | 1065 | if (res?.code == proxy.$passCode) { |
| 1066 | productFieldList.value = res.data || initProductFieldValue.value; | 1066 | productFieldList.value = res.data || initProductFieldValue.value; | ... | ... |
-
Please register or sign in to post a comment