| | |
| | | class="lims-table" |
| | | > |
| | | <el-table-column align="center" label="序号" type="index" width="60" /> |
| | | <el-table-column label="结算单号" prop="settleNo" width="180" show-overflow-tooltip /> |
| | | <el-table-column label="承运商" prop="carrierName" width="200" show-overflow-tooltip /> |
| | | <el-table-column label="发票号码" prop="invoiceNo" width="160" show-overflow-tooltip /> |
| | | <el-table-column label="发票金额(元)" prop="invoiceAmt" width="140" align="right"> |
| | | <el-table-column label="结算单号" prop="settleNo" min-width="180" show-overflow-tooltip /> |
| | | <el-table-column label="承运商" prop="carrierName" min-width="200" show-overflow-tooltip /> |
| | | <el-table-column label="发票号码" prop="invoiceNo" min-width="160" show-overflow-tooltip /> |
| | | <el-table-column label="发票金额(元)" prop="invoiceAmt" min-width="140" align="right"> |
| | | <template #default="{ row }">{{ toMoney(row.invoiceAmt) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="开票日期" prop="invoiceDate" width="120" /> |
| | | <el-table-column label="更新时间" prop="updateTime" width="170" /> |
| | | <el-table-column label="开票日期" prop="invoiceDate" min-width="120" /> |
| | | <el-table-column label="更新时间" prop="updateTime" min-width="170" /> |
| | | |
| | | <el-table-column fixed="right" label="操作" width="200" align="center"> |
| | | <el-table-column fixed="right" label="操作" min-width="200" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" size="small" @click.stop="openView(scope.row)">查看</el-button> |
| | | <el-button link type="primary" size="small" @click.stop="openEdit(scope.row)">编辑</el-button> |