diff --git a/src/views/Activities/newcomer/index.vue b/src/views/Activities/newcomer/index.vue
index 52a2216..c0a40ee 100644
--- a/src/views/Activities/newcomer/index.vue
+++ b/src/views/Activities/newcomer/index.vue
@@ -38,9 +38,9 @@ onMounted(() => {
发放记录
-
+
+// 开奖记录
+import { ref, onMounted, nextTick } from "vue";
+import SearchForm from "@/components/SearchForm/index.vue";
+import {
+ queryBoxTypeList
+} from "@/api/modules/blindBox";
+import {
+ queryLockRecord
+} from "@/api/modules/room";
+const searchLabel = ref([
+ { label: "用户ID", prop: "user_id", type: "input" },
+ { label: "开奖期数", prop: "periods", type: "input" },
+ { label: "礼物ID", prop: "gift_id", type: "input" },
+]);
+const props = defineProps(["roomId"]);
+const typeList = ref([])
+const searchForm = ref({
+ user_id: "",
+ gift_id: "",
+ periods: ""
+});
+const pagination = ref({
+ total: 0,
+ pageSize: 10,
+ currentPage: 1,
+ background: true
+});
+const statisticsData = ref()
+const tableList = ref([])
+const statisticsList = ref([
+ { label: "今日锁定次数", prop: "locking_num" }
+])
+const dynamicflowColumns = ref([
+ {
+ label: "ID",
+ prop: "id"
+ },
+ {
+ label: "期数",
+ prop: "periods"
+ },
+ {
+ label: "锁定ID",
+ prop: "user"
+ },
+ {
+ label: "支付价格",
+ prop: "pay_price"
+ },
+ {
+ label: "礼物ID",
+ prop: "gift_id"
+ },
+ {
+ label: "礼物名称",
+ prop: "gift_name"
+ },
+ {
+ label: "礼物价格",
+ prop: "gift_price"
+ },
+ {
+ label: "锁定数量",
+ prop: "locking_num"
+ },
+ {
+ label: "是否收入背包",
+ prop: "is_send_str"
+ },
+ {
+ label: "创建时间",
+ prop: "createtime"
+ }
+])
+const getData = async (formData) => {
+ searchForm.value = { ...formData }
+ const { data, code } = await queryLockRecord({
+ ...formData,
+ page: pagination.value.currentPage,
+ page_limit: pagination.value.pageSize,
+ room_id: props.roomId
+ })
+ if (code) {
+ tableList.value = data.lists
+ statisticsData.value = {
+ locking_num: data.locking_num
+ }
+ pagination.value.total = data.count;
+ pagination.value.currentPage = data.page;
+ }
+}
+const handleSizeChange = (val: number) => {
+ pagination.value.pageSize = val;
+ getData(searchForm.value)
+};
+const handleCurrentChange = (val: number) => {
+ pagination.value.currentPage = val;
+ getData(searchForm.value)
+};
+onMounted(() => {
+ getData(searchForm.value)
+ // getType()
+})
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/paradise/drawOrlockList/index.vue b/src/views/paradise/drawOrlockList/index.vue
new file mode 100644
index 0000000..03cd159
--- /dev/null
+++ b/src/views/paradise/drawOrlockList/index.vue
@@ -0,0 +1,26 @@
+
+
+
+
+ {{
+ ele.name }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/paradise/drawOrlockList/statistics.vue b/src/views/paradise/drawOrlockList/statistics.vue
new file mode 100644
index 0000000..bf90d43
--- /dev/null
+++ b/src/views/paradise/drawOrlockList/statistics.vue
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+ 重置数量
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/room/roomList/index.vue b/src/views/room/roomList/index.vue
index 2348a72..526d4f8 100644
--- a/src/views/room/roomList/index.vue
+++ b/src/views/room/roomList/index.vue
@@ -58,10 +58,10 @@ onMounted(() => {
@click="viewTurntableData(row)">
转盘统计
-
巡乐会统计
-
+ -->
查看