增加房间类型

This commit is contained in:
yziiy
2026-01-20 10:05:04 +08:00
parent 7f0c9b83b3
commit f8e4acda08
2 changed files with 23 additions and 2 deletions

View File

@@ -37,6 +37,7 @@ defineExpose({ getRef });
<el-radio-group v-model="newFormInline.type">
<el-radio :label="1">真爱拍</el-radio>
<el-radio :label="2">亲密拍</el-radio>
<el-radio :label="3">互娱房</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="电影房" prop="is_open_movie">

View File

@@ -14,10 +14,30 @@ export function useData() {
const tableList = ref([]);
const isShow = ref(false);
const searchForm = ref({
search_name: ""
search_name: "",
search_type: ""
});
const searchLabel = ref([
{ label: "关系名称", prop: "search_name", type: "input" }
{ label: "关系名称", prop: "search_name", type: "input" },
{
label: "关系分类",
prop: "search_type",
type: "select",
optionList: [
{
value: 1,
label: "真爱拍"
},
{
value: 2,
label: "亲密拍"
},
{
value: 3,
label: "互娱房"
}
]
},
]);
const pagination = ref({
total: 0,