| | |
| | | <el-table-column label="不含税总价(元)" |
| | | prop="taxExclusiveTotalPrice" |
| | | :formatter="formattedNumber" /> |
| | | <el-table-column label="是否质检" |
| | | prop="isChecked" |
| | | width="100" |
| | | align="center"> |
| | | <template #default="scope"> |
| | | <el-tag v-if="scope.row.isChecked === true || scope.row.isChecked === '是'" type="success">是</el-tag> |
| | | <el-tag v-else type="info">否</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <!--操作--> |
| | | <el-table-column Width="60px" |
| | | label="操作" |
| | |
| | | prop="entryPersonName" |
| | | width="100" |
| | | show-overflow-tooltip /> |
| | | <el-table-column label="发货车牌" |
| | | prop="shippingCarNumber" |
| | | width="120" |
| | | show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <div> |
| | | <div v-if="scope.row.shippingCarNumber">{{ scope.row.shippingCarNumber }}</div> |
| | | <el-tag v-else |
| | | type="warning">未发货</el-tag> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="发货日期" |
| | | prop="shippingDate" |
| | | width="120" |
| | | show-overflow-tooltip /> |
| | | <!-- <el-table-column label="发货车牌"--> |
| | | <!-- prop="shippingCarNumber"--> |
| | | <!-- width="120"--> |
| | | <!-- show-overflow-tooltip>--> |
| | | <!-- <template #default="scope">--> |
| | | <!-- <div>--> |
| | | <!-- <div v-if="scope.row.shippingCarNumber">{{ scope.row.shippingCarNumber }}</div>--> |
| | | <!-- <el-tag v-else--> |
| | | <!-- type="warning">未发货</el-tag>--> |
| | | <!-- </div>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <!-- <el-table-column label="发货日期"--> |
| | | <!-- prop="shippingDate"--> |
| | | <!-- width="120"--> |
| | | <!-- show-overflow-tooltip />--> |
| | | <el-table-column label="录入日期" |
| | | prop="entryDate" |
| | | width="120" |