You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
536 B
27 lines
536 B
<template>
|
|
<el-table :data="tableData" class="sm:py-2 w-full">
|
|
<el-table-column prop="date" label="下单日期" width="180" />
|
|
<el-table-column prop="name" label="产品名称" width="180" />
|
|
<el-table-column prop="address" label="订单信息" />
|
|
</el-table>
|
|
</template>
|
|
<script setup lang="ts">
|
|
|
|
import {ref} from "vue";
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
form?: any;
|
|
title?: string;
|
|
desc?: string;
|
|
}>(),
|
|
{}
|
|
);
|
|
|
|
const tableData = ref<any[]>();
|
|
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
|
|
</style>
|