lijingjia 3 weeks ago
commit 7d9574efa7

@ -126,6 +126,13 @@
}}</span> }}</span>
<span v-else class="ds-purple-tag">{{ record.statusText }}</span> <span v-else class="ds-purple-tag">{{ record.statusText }}</span>
</template> </template>
<template v-if="column.dataIndex == 'etd'">
<span>{{ record.etd ? record.etd.substring(0, 11) : '' }}</span>
</template>
<template v-if="column.dataIndex == 'stlDate'">
<span>{{ record.stlDate ? record.stlDate.substring(0, 11) : '' }}</span>
</template>
</template> </template>
</BasicTable> </BasicTable>
</div> </div>
@ -342,11 +349,13 @@ const [registerTable5, { setTableData: setTableDataFile }] = useTable({
function exportExcel() { function exportExcel() {
const list = [] as any const list = [] as any
getColumns().forEach((item) => { getColumns().forEach((item) => {
if (item.dataIndex) {
list.push({ list.push({
dataIndex: item.dataIndex, dataIndex: item.dataIndex,
title: item.title, title: item.title,
width: item.width, width: item.width,
}) })
}
}) })
const postData = { const postData = {
url: 'http://118.190.144.189:3008/opApi/BLIssueManage/GetExportList', url: 'http://118.190.144.189:3008/opApi/BLIssueManage/GetExportList',
@ -543,10 +552,10 @@ function checkIn(type) {
const idList = ref([]) const idList = ref([])
function checkClick() { function checkClick() {
let ids = [] as any let ids = [] as any
getSelectRows().forEach(item=>{ getSelectRows().forEach(item => {
ids.push({ ids.push({
bookid:item.bookingId, bookid: item.bookingId,
MHBillType:item.masterHBill MHBillType: item.masterHBill
}) })
}) })
idList.value = ids idList.value = ids
@ -637,11 +646,7 @@ function cancelCheckIn(type) {
padding-bottom: 10px; padding-bottom: 10px;
} }
.main { .main {}
}
.left { .left {
width: 29%; width: 29%;

Loading…
Cancel
Save