yusheng 1 anno fa
parent
commit
2bb7f39475

+ 6 - 6
src/views/bpm/handleTask/components/saleOrder/returnGoods/addReturnGoodsDialog.vue

@@ -48,10 +48,10 @@
             style="margin-bottom: 22px"
             :rules="{
               required:
-                ['30', '50'].includes(form.type) && form.returnSourceType == 1
+                ['30', '50'].includes(form.type)
             }"
             v-show="
-              ['30', '50'].includes(form.type) && form.returnSourceType == 1
+              ['30', '50'].includes(form.type)
             "
           >
             <el-input
@@ -117,10 +117,10 @@
       <headerTitle
         title="退货产品明细"
         style="margin-top: 30px"
-        v-show="!['40', '50'].includes(form.type) || form.returnSourceType != 1"
+        v-show="!['40', '50'].includes(form.type)"
       ></headerTitle>
       <inventoryTable
-        v-show="!['40', '50'].includes(form.type) || form.returnSourceType != 1"
+        v-show="!['40', '50'].includes(form.type)"
         ref="inventoryTableref"
         :entrustedCode="form.sendNo"
         :sendId="form.sendId"
@@ -130,11 +130,11 @@
       ></inventoryTable>
       <headerTitle
         title="实物赔偿清单"
-        v-show="['20', '40'].includes(form.type) && form.returnSourceType == 1"
+        v-show="['20', '40'].includes(form.type)"
         style="margin-top: 30px"
       ></headerTitle>
       <inventoryTable1
-        v-show="['20', '40'].includes(form.type) && form.returnSourceType == 1"
+        v-show="['20', '40'].includes(form.type)"
         ref="inventoryTableref1"
         :customerMark="customerMark"
         :isDiscount="false"