更新
This commit is contained in:
@@ -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(() => {
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ const dynamicflowColumns = ref([
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "支付价格",
|
label: "支付价格",
|
||||||
prop: "gift_price"
|
prop: "bag_price"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "礼物ID",
|
label: "礼物ID",
|
||||||
|
|||||||
@@ -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: ""
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user