修改排序

szh_zidingyibiaoti
sunzehua 2 years ago
parent ffca658cb6
commit 86c6fa1f45

@ -106,9 +106,6 @@
<a-menu-item> <a-menu-item>
<a @click="handleDownByBc(2)" href="javascript:;">DRAFT下载</a> <a @click="handleDownByBc(2)" href="javascript:;">DRAFT下载</a>
</a-menu-item> </a-menu-item>
<a-menu-item>
<a @click="handleDownByBc(3)" href="javascript:;">到港时间更新</a>
</a-menu-item>
<a-menu-item> <a-menu-item>
<a @click="handleDownByBc(4)" href="javascript:;">舱位分配查询</a> <a @click="handleDownByBc(4)" href="javascript:;">舱位分配查询</a>
</a-menu-item> </a-menu-item>
@ -951,20 +948,6 @@ export default {
console.log(err) console.log(err)
}) })
} }
if (type === 3) {
checkUpdateETA(pkIdArr)
.then((res) => {
if (res.success) {
this.bcFileFlag = true
this.bcFile = res.data
} else {
this.$message.error(res.message)
}
})
.catch((err) => {
console.log(err)
})
}
if (type === 4) { if (type === 4) {
checkUpdateManifestNo(pkIdArr) checkUpdateManifestNo(pkIdArr)
.then((res) => { .then((res) => {

@ -173,8 +173,7 @@ export default {
columns: [ columns: [
{ {
title: '账号', title: '账号',
dataIndex: 'account', dataIndex: 'account'
sorter: true
}, },
{ {
title: '姓名', title: '姓名',
@ -183,29 +182,26 @@ export default {
}, },
{ {
title: '部门', title: '部门',
dataIndex: 'sysEmpInfo', dataIndex: 'orgName',
sorter: true, sorter: true,
scopedSlots: { scopedSlots: {
customRender: 'sysEmpInfo' customRender: 'orgName'
} }
}, },
{ {
title: '性别', title: '性别',
dataIndex: 'sex', dataIndex: 'sex',
sorter: true,
scopedSlots: { scopedSlots: {
customRender: 'sex' customRender: 'sex'
} }
}, },
{ {
title: '手机', title: '手机',
dataIndex: 'phone', dataIndex: 'phone'
sorter: true
}, },
{ {
title: '状态', title: '状态',
dataIndex: 'status', dataIndex: 'status',
sorter: true,
scopedSlots: { scopedSlots: {
customRender: 'status' customRender: 'status'
} }

Loading…
Cancel
Save