You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<template>
|
|
|
|
|
<div><span>单行文本</span>
|
|
|
|
|
<el-input v-model="pageForm['input-7f3ceb4e-9aaf-42ff-95f7-86c9205748d8']"
|
|
|
|
|
type="text" autocomplete="new-password" />
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="pageForm['form-faa5bd9b-5d6b-4549-9646-2bc9f238c43d']" label-width="120px">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary">提交</el-button>
|
|
|
|
|
<el-button>重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="pageForm['form-207b81de-b83d-4e60-be3b-1b8d4d9ad442']" label-width="120px">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary">提交</el-button>
|
|
|
|
|
<el-button>重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
const pageForm = ref({
|
|
|
|
|
'input-7f3ceb4e-9aaf-42ff-95f7-86c9205748d8': '',
|
|
|
|
|
'form-faa5bd9b-5d6b-4549-9646-2bc9f238c43d': {},
|
|
|
|
|
'form-207b81de-b83d-4e60-be3b-1b8d4d9ad442': {}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|