只有主平台审批通过的才可以下架
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -157,7 +157,7 @@ const tableInfo = ref({ | ... | @@ -157,7 +157,7 @@ const tableInfo = ref({ |
| 157 | if (approveVO && approveVO.approveState == 'A' && staffGuid == currentStaffGuid) { | 157 | if (approveVO && approveVO.approveState == 'A' && staffGuid == currentStaffGuid) { |
| 158 | isShowCancel = true; | 158 | isShowCancel = true; |
| 159 | } | 159 | } |
| 160 | if (bizApproveState === 'Y' && staffGuid == currentStaffGuid) { | 160 | if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) { |
| 161 | if (row.listingStatus === 'Y') { | 161 | if (row.listingStatus === 'Y') { |
| 162 | list.push({ label: "下架", value: "down" }); | 162 | list.push({ label: "下架", value: "down" }); |
| 163 | } | 163 | } | ... | ... |
-
Please register or sign in to post a comment