diff --git a/src/views/Level/wealthGrade/form.vue b/src/views/Level/wealthGrade/form.vue index 738a741..23a19a6 100644 --- a/src/views/Level/wealthGrade/form.vue +++ b/src/views/Level/wealthGrade/form.vue @@ -42,7 +42,7 @@ function handleBgSuccess(list) { } const getTypeList = async () => { const { data, code } = await queryCharmPropList() - typeList.value = code ? data.data : [] + typeList.value = code ? [{ id: 0, title: '无' }, ...data.data] : [] console.log(typeList.value) } onMounted(() => { diff --git a/src/views/room/roomList/Turntable/lotteryResults.vue b/src/views/room/roomList/Turntable/lotteryResults.vue index dbf7346..3eef536 100644 --- a/src/views/room/roomList/Turntable/lotteryResults.vue +++ b/src/views/room/roomList/Turntable/lotteryResults.vue @@ -68,7 +68,7 @@ const dynamicflowColumns = ref([ }, { label: "支付价格", - prop: "gift_price" + prop: "bag_price" }, { label: "礼物ID", diff --git a/src/views/room/roomList/XunLeHui/statistics.vue b/src/views/room/roomList/XunLeHui/statistics.vue index f477288..446f531 100644 --- a/src/views/room/roomList/XunLeHui/statistics.vue +++ b/src/views/room/roomList/XunLeHui/statistics.vue @@ -9,7 +9,7 @@ import { queryTurntableRecord } from "@/api/modules/room"; const searchLabel = ref([ - { label: "用户ID", prop: "gift_id", type: "input" }, + { label: "用户ID", prop: "user_id", type: "input" }, { label: "开奖期数", prop: "periods", type: "input" }, { label: "礼物ID", prop: "gift_id", type: "input" }, { label: "房间ID", prop: "room_id", type: "input" } @@ -17,6 +17,7 @@ const searchLabel = ref([ const props = defineProps(["roomId"]); const searchForm = ref({ gift_bag_id: 13, + user_id: '', gift_id: "", gift_name: "" });