This commit is contained in:
yziiy
2025-09-17 19:04:05 +08:00
parent 903f2004aa
commit ed8a1d368d
3 changed files with 4 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ function handleBgSuccess(list) {
} }
const getTypeList = async () => { const getTypeList = async () => {
const { data, code } = await queryCharmPropList() const { data, code } = await queryCharmPropList()
typeList.value = code ? data.data : [] typeList.value = code ? [{ id: 0, title: '无' }, ...data.data] : []
console.log(typeList.value) console.log(typeList.value)
} }
onMounted(() => { onMounted(() => {

View File

@@ -68,7 +68,7 @@ const dynamicflowColumns = ref([
}, },
{ {
label: "支付价格", label: "支付价格",
prop: "gift_price" prop: "bag_price"
}, },
{ {
label: "礼物ID", label: "礼物ID",

View File

@@ -9,7 +9,7 @@ import {
queryTurntableRecord queryTurntableRecord
} from "@/api/modules/room"; } from "@/api/modules/room";
const searchLabel = ref([ const searchLabel = ref([
{ label: "用户ID", prop: "gift_id", type: "input" }, { label: "用户ID", prop: "user_id", type: "input" },
{ label: "开奖期数", prop: "periods", type: "input" }, { label: "开奖期数", prop: "periods", type: "input" },
{ label: "礼物ID", prop: "gift_id", type: "input" }, { label: "礼物ID", prop: "gift_id", type: "input" },
{ label: "房间ID", prop: "room_id", type: "input" } { label: "房间ID", prop: "room_id", type: "input" }
@@ -17,6 +17,7 @@ const searchLabel = ref([
const props = defineProps(["roomId"]); const props = defineProps(["roomId"]);
const searchForm = ref({ const searchForm = ref({
gift_bag_id: 13, gift_bag_id: 13,
user_id: '',
gift_id: "", gift_id: "",
gift_name: "" gift_name: ""
}); });