sunzehua 2 days ago
commit 31b5241f4b

@ -263,7 +263,6 @@ export const searchFormSchema: FormSchema[] = [
label: '是否上线', label: '是否上线',
component: 'ApiSelect', component: 'ApiSelect',
colProps: { span: 4 }, colProps: { span: 4 },
defaultValue: '1',
componentProps: () => { componentProps: () => {
return { return {
api: () => { api: () => {

@ -2,7 +2,7 @@
<div> <div>
<BasicTable class="ds-table" @register="registerTable"> <BasicTable class="ds-table" @register="registerTable">
<template #tableTitle> <template #tableTitle>
<a-button type="link" class="pl0" @click="derivedExcel"> <a-button type="link" @click="derivedExcel">
<span class="iconfont icon-Excel"></span> <span class="iconfont icon-Excel"></span>
导出待上线 导出待上线
</a-button> </a-button>

@ -2,11 +2,16 @@ import { BasicColumn, FormSchema } from '/@/components/Table'
import { Tag } from 'ant-design-vue' import { Tag } from 'ant-design-vue'
export const columns: BasicColumn[] = [ export const columns: BasicColumn[] = [
{ {
title: '系统业务号', title: '全部箱号',
dataIndex: 'billno', dataIndex: 'cntrnoAll',
sorter: true, sorter: true,
width: 150, width: 200,
align: 'center', },
{
title: '箱型',
dataIndex: 'ctntotal',
sorter: true,
width: 200,
}, },
{ {
title: '执行状态', title: '执行状态',
@ -27,24 +32,6 @@ export const columns: BasicColumn[] = [
} }
}, },
}, },
{
title: '业务日期',
dataIndex: 'bsdate',
sorter: true,
width: 200,
},
{
title: '租买箱客户',
dataIndex: 'rentCustomerName',
sorter: true,
width: 200,
},
// {
// title: '原箱主',
// dataIndex: 'OldContainerOwner',
// sorter: true,
// width: 200,
// },
{ {
title: '箱业务', title: '箱业务',
dataIndex: 'ctnBizStateId', dataIndex: 'ctnBizStateId',
@ -63,17 +50,30 @@ export const columns: BasicColumn[] = [
}, },
}, },
{ {
title: '全部箱号', title: '系统业务号',
dataIndex: 'cntrnoAll', dataIndex: 'billno',
sorter: true,
width: 150,
align: 'center',
},
{
title: '业务日期',
dataIndex: 'bsdate',
sorter: true, sorter: true,
width: 200, width: 200,
}, },
{ {
title: '箱型', title: '租买箱客户',
dataIndex: 'ctntotal', dataIndex: 'rentCustomerName',
sorter: true, sorter: true,
width: 200, width: 200,
}, },
// {
// title: '原箱主',
// dataIndex: 'OldContainerOwner',
// sorter: true,
// width: 200,
// },
] ]
export const searchFormSchema: FormSchema[] = [ export const searchFormSchema: FormSchema[] = [

@ -106,7 +106,7 @@
pagination: true, pagination: true,
striped: true, striped: true,
useSearchForm: true, useSearchForm: true,
showTableSetting: false, showTableSetting: true,
bordered: true, bordered: true,
showIndexColumn: true, showIndexColumn: true,
indexColumnProps: { indexColumnProps: {

Loading…
Cancel
Save