增加房间类型
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user