|
|
|
@ -260,23 +260,18 @@
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts" setup name="订单管理">
|
|
|
|
|
import TableActionBar from './components/tableActionBar.vue'
|
|
|
|
|
import { CheckCircleFilled, CloseCircleFilled,RedoOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
import { CheckCircleFilled, CloseCircleFilled, RedoOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
import tableActionBarRight from './components/tableActionBarRight.vue'
|
|
|
|
|
import { onMounted, ref } from 'vue'
|
|
|
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table'
|
|
|
|
|
import { PageDataByBooking, SeaExportCopy } from './api/BookingLedger.js'
|
|
|
|
|
import { getColumnsByClient } from '/@/views/baseinfo/formcopy/api'
|
|
|
|
|
import { useModal } from '/@/components/Modal'
|
|
|
|
|
import { columns, searchFormSchema, FeeStatus } from './columns'
|
|
|
|
|
import { columns, searchFormSchema } from './columns'
|
|
|
|
|
import { useGo } from '/@/hooks/web/usePage'
|
|
|
|
|
import { useMessage } from '/@/hooks/web/useMessage'
|
|
|
|
|
import { formatTableData } from '/@/hooks/web/common'
|
|
|
|
|
import { Field } from '/@/components/Render/interface'
|
|
|
|
|
import { useOptionsStore } from '/@/store/modules/options'
|
|
|
|
|
import lstDraftCompareRlt from '../../../components/lstDraftCompareRlt/index.vue'
|
|
|
|
|
import { RefreshYGT } from './api/BookingLedger.js'
|
|
|
|
|
const optionsStore = useOptionsStore()
|
|
|
|
|
import { usePermissionStore } from '/@/store/modules/permission'
|
|
|
|
|
import { useI18n } from '/@/hooks/web/useI18n'
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|