| | |
| | | </el-table-column> |
| | | <el-table-column width="250" prop="address" label="收件人地址" align="center"> |
| | | </el-table-column> |
| | | <el-table-column width="200" prop="estinatedArrival" label="预计到达时间" align="center"> |
| | | <el-table-column width="200" prop="estinatedArrival" label="预计到港" align="center"> |
| | | </el-table-column> |
| | | <el-table-column width="200" prop="pickupDate" label="提柜日期" align="center"> |
| | | </el-table-column> |
| | | <el-table-column width="200" prop="deliverySchedule" label="预计送柜日期" align="center"> |
| | | <el-table-column width="200" prop="deliverySchedule" label="计划送柜日期" align="center"> |
| | | </el-table-column> |
| | | <el-table-column width="200" prop="cargoType" label="柜型" align="center"> |
| | | </el-table-column> |
| | |
| | | </el-table-column> |
| | | <el-table-column width="150" prop="status" label="订单状态" align="center"> |
| | | <template slot-scope="scope"> |
| | | <div v-if="scope.row.status == '收货⼈已确认' || scope.row.status == '待卡⻋确认' || scope.row.status == '待收货⼈确认'">预约中</div> |
| | | <div v-else-if="scope.row.status == '卡⻋和收货⼈均确认'">预约完成</div> |
| | | |
| | | <div v-if="scope.row.status == '收货⼈已确认' || scope.row.status == '待卡车确认' || scope.row.status == '待收货⼈确认'">预约中</div> |
| | | <div v-else-if="scope.row.status == '卡车和收货⼈均确认'">预约完成</div> |
| | | <div v-else>{{ scope.row.status }}</div> |
| | | </template> |
| | | </el-table-column> |