23 lines
706 B
Vue
23 lines
706 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { ref } from "vue";
|
||
|
|
const props = defineProps(["rowData"]);
|
||
|
|
const detailData = ref({ record_lists: [] })
|
||
|
|
console.log(props.rowData)
|
||
|
|
detailData.value = { ...props.rowData }
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<el-table :data="detailData.record_lists" border style="width: 100%">
|
||
|
|
<el-table-column prop="user_code" label="领取用户ID">
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="nickname" label="领取用户昵称">
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="createtime_text" label="抢红包时间">
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="amount" label="获得金额">
|
||
|
|
</el-table-column>
|
||
|
|
</el-table>
|
||
|
|
</div>
|
||
|
|
</template>
|