소스 검색

【修改】提货管理

howie 2 년 전
부모
커밋
2e39c36246
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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)"