Browse Source

【修改】提货管理

howie 2 năm trước cách đây
mục cha
commit
2e39c36246
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      src/views/supply/pickup/components/pickup_form.vue

+ 3 - 3
src/views/supply/pickup/components/pickup_form.vue

@@ -134,7 +134,7 @@
             <el-table-column align="left" label="收货客户" prop="orderTime" min-width="100" show-overflow-tooltip>
               <template slot-scope="scope">
                 <el-input
-                  v-if="!(scope.row.enginOrderType === 'TRADE' || scope.row.enginOrderType === 'HOME')"
+                  v-if="!(scope.row.orderType === 'TRADE' || scope.row.orderType === 'HOME')"
                   v-model="scope.row.receivingName"
                   size="mini"
                   @input="handleInput($event, scope.row.invoiceId, 1)"
@@ -145,7 +145,7 @@
             <el-table-column align="left" label="电话" prop="orderTime" min-width="150" show-overflow-tooltip>
               <template slot-scope="scope">
                 <el-input
-                  v-if="!(scope.row.enginOrderType === 'TRADE' || scope.row.enginOrderType === 'HOME')"
+                  v-if="!(scope.row.orderType === 'TRADE' || scope.row.orderType === 'HOME')"
                   v-model="scope.row.phone"
                   size="mini"
                   @input="handleInput($event, scope.row.invoiceId, 2)"
@@ -156,7 +156,7 @@
             <el-table-column align="left" label="收货地址" prop="orderTime" min-width="200" show-overflow-tooltip>
               <template slot-scope="scope">
                 <el-input
-                  v-if="!(scope.row.enginOrderType === 'TRADE' || scope.row.enginOrderType === 'HOME')"
+                  v-if="!(scope.row.orderType === 'TRADE' || scope.row.orderType === 'HOME')"
                   v-model="scope.row.address"
                   size="mini"
                   @input="handleInput($event, scope.row.invoiceId, 3)"