From 7602a824e39e19260ae32bb45e799e6ce43300ac Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期五, 14 七月 2023 21:15:29 +0800
Subject: [PATCH] 参照配置组件修改
---
Source/UBCS-WEB/dist/src/views/util/form.vue | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/Source/UBCS-WEB/dist/src/views/util/form.vue b/Source/UBCS-WEB/dist/src/views/util/form.vue
new file mode 100644
index 0000000..244895b
--- /dev/null
+++ b/Source/UBCS-WEB/dist/src/views/util/form.vue
@@ -0,0 +1,55 @@
+<template>
+ <basic-container>
+ <h3>琛ㄥ崟渚嬪瓙</h3>
+ <avue-form :option="option"
+ v-model="form"></avue-form>
+ </basic-container>
+</template>
+
+<script>
+ export default {
+ data() {
+ return {
+ form: {},
+ option: {
+ labelWidth: 110,
+ column: [
+ {
+ label: "鐢ㄦ埛鍚�",
+ prop: "username",
+ row: true
+ },
+ {
+ label: "瀵嗙爜",
+ prop: "password",
+ type: "password",
+ row: true
+ },
+ {
+ label: "鍐嶆杈撳叆瀵嗙爜",
+ prop: "password",
+ type: "newpassword",
+ row: true
+ },
+ {
+ label: "鐢宠鏃ユ湡",
+ prop: "date",
+ type: "date",
+ row: true
+ },
+ {
+ label: "涓�х鍚�",
+ prop: "textarea",
+ type: "textarea",
+ minRows: 8,
+ row: true
+ }
+ ]
+ }
+ };
+ }
+ };
+</script>
+
+<style>
+</style>
--
Gitblit v1.9.3