Przeglądaj źródła

fix(details): 更新收货按钮显示逻辑,允许在发货状态为8时显示

xieyong 6 dni temu
rodzic
commit
a53bdc92ad
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/views/beEntrusted/index.vue

+ 1 - 1
src/views/beEntrusted/index.vue

@@ -122,7 +122,7 @@
             type="primary"
             :underline="false"
             @click="receiveGoos(row, 'add')"
-            v-if="row.approvalStatus == 2 && row.sendStatus == 1"
+            v-if="row.approvalStatus == 2 && (row.sendStatus == 1 || row.sendStatus == 8)"
           >
             收货
           </el-link>