123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <div class="p-4">
- <BasicTable @register="registerTable">
- <template #toolbar> </template>
- <template #cover="{ record }">
- <TableImg :size="150" :simpleShow="true" :imgList="[record.cover]" />
- </template>
- <template #orderType="{ record }"> {{ renderOrderTypeLabel(record.orderType) }} </template>
- <template #orderStatus="{ record }">
- {{ renderOrderStatusLabel(record.orderStatus) }}
- </template>
- <template #shipingStatus="{ record }">
- {{ renderShipingStatusLabel(record.shipingStatus) }}
- </template>
- <template #paymentStatus="{ record }">
- {{ renderPaymentStatusLabel(record.paymentStatus) }}
- </template>
- <template #action="{ record }">
- <TableAction
- :actions="[
- {
- icon: 'mdi:information-outline',
- label: '详情',
- onClick: () => {
- go(`/order/list/detail/${record.orderNo}`);
- },
- },
- {
- icon: 'mdi:printer-outline',
- label: '打印',
- color: 'error',
- onClick: () => {
- createMessage.info(`暂未接入`);
- },
- },
- ]"
- />
- </template>
- </BasicTable>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue';
- import {
- BasicTable,
- useTable,
- BasicColumn,
- FormProps,
- TableAction,
- TableImg,
- } from '/@/components/Table';
- import { useMessage } from '/@/hooks/web/useMessage';
- import { uploadApi } from '/@/api/sys/upload';
- // import { Switch } from 'ant-design-vue';
- // import { h } from 'vue';
- import { ListApi } from '/@/api/order/list';
- import { useI18n } from '/@/hooks/web/useI18n';
- // import { useCopyToClipboard } from '/@/hooks/web/useCopyToClipboard';
- import { useGo } from '/@/hooks/web/usePage';
- export default defineComponent({
- components: { BasicTable, TableAction, TableImg },
- setup() {
- const { createMessage } = useMessage();
- const go = useGo();
- const { t } = useI18n();
- const columns: BasicColumn[] = [
- {
- title: 'ID',
- dataIndex: 'id',
- fixed: 'left',
- width: 60,
- },
- {
- title: '订单号',
- dataIndex: 'orderNo',
- width: 160,
- },
- {
- title: '会员昵称',
- dataIndex: 'name',
- width: 80,
- },
- {
- title: 'VR场景',
- dataIndex: 'scene.name',
- width: 80,
- },
- {
- title: '订单类型',
- dataIndex: 'orderType',
- slots: { customRender: 'orderType' },
- sorter: true,
- width: 80,
- },
- {
- title: '订单状态',
- dataIndex: 'orderStatus',
- sorter: true,
- slots: { customRender: 'orderStatus' },
- width: 80,
- },
- {
- title: '发货状态',
- dataIndex: 'shipingStatus',
- sorter: true,
- slots: { customRender: 'shipingStatus' },
- width: 80,
- },
- {
- title: '付款状态',
- dataIndex: 'paymentStatus',
- slots: { customRender: 'paymentStatus' },
- width: 60,
- },
- {
- title: '快递公司',
- dataIndex: 'shipingCompany',
- width: 60,
- },
- {
- title: '快递单号',
- dataIndex: 'shipingNo',
- width: 80,
- },
- {
- title: '实际支付金额',
- dataIndex: 'shipingAmount',
- width: 80,
- },
- {
- title: '下单时间',
- dataIndex: 'createTime',
- width: 120,
- },
- {
- title: '操作',
- dataIndex: '',
- slots: { customRender: 'action' },
- fixed: 'right',
- width: 140,
- },
- ];
- const searchForm: Partial<FormProps> = {
- labelWidth: 100,
- schemas: [
- {
- field: 'orderNo',
- label: '订单号',
- component: 'Input',
- colProps: {
- xl: 5,
- xxl: 5,
- },
- },
- ],
- };
- const [registerTable] = useTable({
- title: '订单列表',
- api: ListApi,
- columns: columns,
- useSearchForm: true,
- formConfig: searchForm,
- showTableSetting: true,
- tableSetting: { fullScreen: true },
- showIndexColumn: false,
- rowKey: 'id',
- pagination: { pageSize: 20 },
- bordered: true,
- });
- function renderOrderTypeLabel(type: number): string {
- switch (type) {
- case 0:
- return '立即购买';
- case 1:
- return '延后购买';
- default:
- return '立即购买';
- }
- }
- function renderOrderStatusLabel(type: number): string {
- switch (type) {
- case 0:
- return '已取消';
- case 1:
- return '待付款';
- case 2:
- return '已付款';
- case 3:
- return '已发货';
- case 4:
- return '已收货';
- default:
- return '';
- }
- }
- function renderShipingStatusLabel(type: number): string {
- switch (type) {
- case 0:
- return '未发货';
- case 1:
- return '已发货';
- default:
- return '';
- }
- }
- function renderPaymentStatusLabel(type: number): string {
- switch (type) {
- case 0:
- return '未付款';
- case 1:
- return '已付款';
- default:
- return '';
- }
- }
- return {
- registerTable,
- createMessage,
- t,
- go,
- renderOrderTypeLabel,
- renderOrderStatusLabel,
- renderShipingStatusLabel,
- renderPaymentStatusLabel,
- uploadApi: uploadApi as any,
- };
- },
- });
- </script>
|