| | |
| | | gap: 10px; |
| | | " |
| | | > |
| | | <span class="search_title">关键字:</span> |
| | | <span class="search_title">关键字查询:</span> |
| | | <el-input |
| | | v-model="searchForm.keyword" |
| | | style="width: 240px" |
| | |
| | | <el-table-column |
| | | label="承运订单号" |
| | | prop="orderCode" |
| | | width="160" |
| | | min-width="160" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | label="承运商" |
| | | prop="carrierName" |
| | | width="180" |
| | | min-width="180" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | label="发货地" |
| | | prop="origin" |
| | | width="160" |
| | | min-width="160" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | label="收货地" |
| | | prop="destination" |
| | | width="160" |
| | | min-width="160" |
| | | show-overflow-tooltip |
| | | /> |
| | | <el-table-column |
| | | label="重量(kg)" |
| | | prop="weight" |
| | | width="110" |
| | | min-width="110" |
| | | align="right" |
| | | /> |
| | | <el-table-column |
| | | label="体积(m³)" |
| | | prop="volume" |
| | | width="110" |
| | | min-width="110" |
| | | align="right" |
| | | /> |
| | | <el-table-column |
| | | label="预计费用(元)" |
| | | prop="estimatedFee" |
| | | width="140" |
| | | min-width="140" |
| | | align="right" |
| | | > |
| | | <template #default="{ row }">{{ toMoney(row.estimatedFee) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="状态" prop="orderStatus" width="110"> |
| | | <el-table-column label="状态" prop="orderStatus" min-width="110"> |
| | | <template #default="{ row }"> |
| | | <el-tag :type="statusTagType(row.orderStatus)"> |
| | | {{ statusText(row.orderStatus) }} |
| | | </el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="更新时间" prop="updateTime" width="170" /> |
| | | <el-table-column label="更新时间" prop="updateTime" min-width="170" /> |
| | | |
| | | <el-table-column fixed="right" label="操作" width="260" align="center"> |
| | | <el-table-column fixed="right" label="操作" min-width="260" align="center"> |
| | | <template #default="scope"> |
| | | <el-button |
| | | link |