邃芒慧语、照片说话(PC) https://photo.metavatar.cc/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 line
871 B

  1. <template>
  2. <div class="page flex">
  3. <el-form
  4. :label-position="labelPosition"
  5. label-width="100px"
  6. :model="formLabelAlign"
  7. style="max-width: 460px"
  8. >
  9. <el-form-item label="Name">
  10. <el-input v-model="formLabelAlign.name" />
  11. </el-form-item>
  12. <el-form-item label="Activity zone">
  13. <el-input v-model="formLabelAlign.region" />
  14. </el-form-item>
  15. <el-form-item label="Activity form">
  16. <el-input v-model="formLabelAlign.type" />
  17. </el-form-item>
  18. </el-form>
  19. </div>
  20. </template>
  21. <script setup>
  22. const labelPosition = ref("right");
  23. const formLabelAlign = reactive({
  24. name: "",
  25. region: "",
  26. type: "",
  27. });
  28. </script>
  29. <style lang="scss" scoped>
  30. .page {
  31. height: 887px;
  32. padding: 20px 0 0 20px;
  33. // height: calc(100vh - 84px);
  34. background-color: #fff;
  35. border-radius: 25px 0 0;
  36. }
  37. </style>